﻿:root {
  --primary: #0176b6;
  --accent: #00b96f;
  --text: #0f2b46;
  --bg-soft: #edf8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'SolaimanLipi', sans-serif;
  color: var(--text);
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 66;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(5, 72, 42, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1fc05a;
  box-shadow: 0 22px 40px rgba(5, 72, 42, 0.3);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-float span {
  line-height: 1;
  white-space: nowrap;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(6, 32, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-wrap {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.05;
  flex-shrink: 0;
}

.brand.brand-image {
  display: inline-flex;
  width: auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 98px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-title {
  font-family: 'Montserrat', 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  letter-spacing: 0.6px;
  font-size: clamp(1.15rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #00434f;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  font-family: 'Montserrat', 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 5px;
  color: #3b5766;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.main-nav a {
  text-decoration: none;
  color: #1f3553;
  font-size: 0.92rem;
  padding: 8px 9px;
  border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(1, 118, 182, 0.1);
}

.main-nav a.nav-login {
  margin-left: 6px;
  background: linear-gradient(135deg, #08a97a 0%, #0176b6 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(1, 118, 182, 0.16);
}

.main-nav a.nav-login:hover,
.main-nav a.nav-login.active {
  color: #ffffff;
  background: linear-gradient(135deg, #089b70 0%, #026a9f 100%);
}

.header-login {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #eaf4fb;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #23405d;
  margin: 5px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.45s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5, 155, 210, 0.82), rgba(5, 155, 210, 0.82));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #052947;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3.3rem);
  line-height: 1.2;
}

.hero p {
  margin: 14px 0 22px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 95, 140, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.slider-dots button.active {
  width: 22px;
  border-radius: 99px;
  background: #fff;
}

.leadership-section {
  background: #efefef;
  padding: 64px 0 50px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.leader-card {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde5ed;
  box-shadow: 0 8px 20px rgba(20, 45, 79, 0.08);
}

.leader-image {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
  display: block;
}

.leader-body {
  padding: 14px 16px 16px;
  text-align: center;
}

.leader-committee {
  margin: 0;
  font-size: 0.88rem;
  color: #5f6f81;
}

.leader-id {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #1f3553;
  background: #e9eef4;
}

.leader-body h3 {
  margin: 10px 0 2px;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #1b2a3c;
}

.leader-role {
  margin: 0;
  color: #6b7f95;
  font-size: 0.95rem;
}

.leader-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip-btn {
  text-decoration: none;
  color: #24384f;
  background: #ffffff;
  border: 1px solid #d4dce4;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  min-width: 132px;
}

.leader-carousel-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.leader-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 43, 70, 0.35);
  padding: 0;
  cursor: pointer;
}

.leader-carousel-dots button.active {
  width: 22px;
  background: #0f2b46;
}


.news-section {
  background: #efefef;
  padding: 36px 0 54px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  border: 1px solid #d9e4ee;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fbff;
}

.news-card.has-media .news-media {
  height: 124px;
  background-size: cover;
  background-position: center;
}

.news-head {
  background: linear-gradient(180deg, #1fb5be 0%, #0e5068 100%);
  padding: 14px 14px 12px;
}

.news-head h3,
.news-card.has-media .news-body h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
  color: #ffffff;
}

.news-card.has-media .news-body {
  margin-top: -44px;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 91, 119, 0.76), #ffffff 32%);
}

.news-card.has-media .news-body h3 {
  padding-top: 6px;
}

.news-body {
  padding: 14px 14px 16px;
}

.news-body p {
  margin: 10px 0 14px;
  color: #4c647e;
  font-size: 0.96rem;
  line-height: 1.6;
}

.news-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #ccd8e5;
  border-radius: 10px;
  color: #163451;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 11px;
  background: #fff;
}

.product-types {
  padding: 70px 0 84px;
  background: #f7fafc;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.eyebrow {
  margin: 0;
  color: #0096d7;
  font-size: 0.95rem;
  font-weight: 700;
}

.section-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  color: #0f2e50;
}

.section-sub {
  margin: 0;
  color: #6b8097;
  font-size: 1.04rem;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.type-card {
  border: 1px solid #dde5ee;
  border-radius: 14px;
  background: #fff;
  padding: 20px 16px;
}

.type-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
}

.capsule-icon {
  background: #5f56df;
}

.capsule-icon::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 12px;
  background: linear-gradient(90deg, #f9a826 0 50%, #ff4f76 50% 100%);
  border-radius: 999px;
  left: 14px;
  top: 22px;
  transform: rotate(45deg);
}

.syrup-icon {
  background: #13b9b9;
}

.syrup-icon::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 28px;
  left: 19px;
  top: 14px;
  border-radius: 16px 16px 18px 18px;
  background: #39a2ff;
}

.tablet-icon {
  background: #ff9c36;
}

.tablet-icon::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 17px;
  top: 17px;
  border-radius: 7px;
  background: #46a4ff;
}

.powder-icon {
  background: #5ca6ff;
}

.powder-icon::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 18px;
  left: 21px;
  top: 18px;
  border-radius: 2px;
  background: #f4f8ff;
}

.powder-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  left: 23px;
  top: 17px;
  background: #889bb2;
}

.type-card h3 {
  margin: 0 0 6px;
  color: #0d2a48;
  font-size: 1.52rem;
}

.type-card p {
  margin: 0 0 10px;
  color: #71869d;
}

.type-card a {
  color: #00a5ef;
  text-decoration: none;
  font-weight: 700;
}
.inner-page {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f7fcff, #eef7fc);
  padding: 40px 0;
}

.inner-page h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.inner-page p {
  margin: 10px 0 0;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-wrap {
    flex-wrap: wrap;
    padding: 12px 0;
    min-height: auto;
  }

  .brand-logo {
    width: auto;
    height: 90px;
    max-width: calc(100vw - 190px);
  }

  .header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-left: auto;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #08a97a 0%, #0176b6 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(1, 118, 182, 0.16);
  }

  .header-login:hover,
  .header-login.active {
    color: #ffffff;
    background: linear-gradient(135deg, #089b70 0%, #026a9f 100%);
  }

  .js-enabled .menu-toggle {
    display: inline-block;
    margin-left: 0;
  }

  .main-nav a.nav-login {
    display: none;
  }

  .main-nav {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border-top: 1px solid #e5eef6;
    padding: 10px 0 4px;
  }

  .js-enabled .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    border-radius: 10px;
  }

  .hero {
    min-height: calc(100vh - 90px);
    padding: 40px 0 60px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .js-enabled .leadership-section--carousel .container {
    overflow: hidden;
  }

  .js-enabled .leadership-section--carousel .leadership-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    transition: transform 0.45s ease;
    will-change: transform;
  }

  .js-enabled .leadership-section--carousel .leader-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .js-enabled .leadership-section--carousel .leader-carousel-dots {
    display: flex;
  }

  .leader-image {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 82px;
    width: 58px;
    min-height: 58px;
    padding: 12px;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .news-section {
    padding: 24px 0 40px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.has-media .news-body {
    margin-top: -36px;
  }

  .product-types {
    padding: 46px 0 54px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .type-card {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .type-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .capsule-icon::before {
    width: 22px;
    height: 10px;
    left: 11px;
    top: 17px;
  }

  .syrup-icon::before {
    width: 14px;
    height: 22px;
    left: 15px;
    top: 11px;
  }

  .tablet-icon::before {
    width: 18px;
    height: 18px;
    left: 13px;
    top: 13px;
    border-radius: 6px;
  }

  .powder-icon::before {
    width: 12px;
    height: 15px;
    left: 16px;
    top: 13px;
  }

  .powder-icon::after {
    width: 8px;
    left: 18px;
    top: 12px;
  }

  .type-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .type-card p {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .type-card a {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: auto;
    height: 84px;
    max-width: calc(100vw - 190px);
  }

  .hero {
    min-height: 72vh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .leadership-section {
    padding: 44px 0 54px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .js-enabled .leadership-section--carousel .leadership-grid {
    gap: 0;
  }

  .leader-image {
    height: 260px;
  }

  .leader-body h3 {
    font-size: 1.32rem;
  }

  .chip-btn {
    width: 100%;
    min-width: 0;
  }
}





/* Product Section */
.popular-products {
  background: #f0f3f7;
  padding: 64px 0 80px;
}

@media (max-width: 380px) {
  .brand-logo {
    height: 78px;
  }
}

.products-header {
  margin-bottom: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #d9e4ef;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(14, 42, 73, 0.07);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 14px;
}

.product-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8e8ff;
  color: #4d3eff;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-body h3 {
  margin: 10px 0 2px;
  font-size: 1.35rem;
  color: #102a48;
}

.product-body p {
  margin: 0;
  color: #617891;
  font-size: 0.92rem;
}

.product-body strong {
  display: block;
  margin-top: 10px;
  color: #0f2f50;
  font-size: 1.14rem;
}

.product-open {
  margin-top: 10px;
  width: 100%;
  border: 0;
  background: linear-gradient(90deg, #6345ff, #4d2ce5);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.product-order {
  margin-top: 8px;
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 14px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 18px rgba(37, 211, 102, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-order:hover {
  transform: translateY(-2px);
  background: #1fc05a;
  box-shadow: 0 14px 22px rgba(37, 211, 102, 0.24);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 39, 0.56);
}

.lightbox-panel {
  width: min(960px, calc(100% - 24px));
  max-height: calc(100vh - 30px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  position: relative;
  margin: 15px auto;
  z-index: 2;
}

.lightbox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  background: #edf3fb;
  font-size: 1.4rem;
  color: #193a5f;
}

.lightbox-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 440px;
}

.lightbox-media {
  background: #f6f8fc;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
}

.lightbox-content {
  padding: 24px 24px 26px;
}

.lightbox-type {
  margin: 0;
  display: inline-block;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f9ef;
  color: #0d8e53;
}

.lightbox-content h3 {
  margin: 10px 0 2px;
  font-size: 2rem;
  line-height: 1.2;
  color: #102b49;
}

.lightbox-subtitle {
  margin: 0;
  color: #5f7892;
  font-size: 1rem;
}

.lightbox-price {
  margin: 10px 0 0;
  color: #5236e9;
  font-weight: 700;
}

.lightbox-pack {
  margin: 4px 0 12px;
  color: #1f3e63;
  font-weight: 600;
}

.lightbox-details {
  white-space: pre-line;
  color: #38536f;
  line-height: 1.55;
  font-size: 0.95rem;
}

.lightbox-order {
  margin-top: 16px;
}

@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-media {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .popular-products {
    padding: 44px 0 56px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card img {
    height: 210px;
  }

  .lightbox-content h3 {
    font-size: 1.5rem;
  }

  .lightbox-content {
    padding: 18px;
  }
}

.all-products-cta-wrap {
  background: #f0f3f7;
  padding: 0 0 26px;
  text-align: center;
}

.all-products-cta {
  display: inline-flex;
  text-decoration: none;
  border: 1px solid #6a52ff;
  color: #563df0;
  background: #f8f6ff;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
}

.brand-highlights {
  background: linear-gradient(115deg, #6449d7 0%, #07a4d8 62%, #7fd7ce 100%);
  padding: 64px 0 48px;
}

.highlights-header {
  margin-bottom: 30px;
}

.eyebrow.dark {
  color: #d7f2ff;
}

.brand-highlights .section-header h2 {
  color: #08264a;
}

.section-sub.light {
  color: #e9f8ff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.highlight-card {
  border-radius: 14px;
  background: #ffffff;
  border-top: 4px solid #00c4c4;
  padding: 16px 18px 14px;
  box-shadow: 0 12px 24px rgba(4, 33, 68, 0.17);
}

.highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5f55e0, #2ca8ff);
}

.highlight-card h3 {
  margin: 10px 0 2px;
  font-size: 1.2rem;
  color: #132f4d;
}

.highlight-sub {
  margin: 0;
  color: #527091;
  font-size: 0.88rem;
  font-weight: 700;
}

.highlight-card p {
  margin: 10px 0 0;
  color: #4d6885;
  font-size: 0.93rem;
  line-height: 1.55;
}

.highlight-card a {
  margin-top: 10px;
  display: inline-flex;
  text-decoration: none;
  color: #00a95b;
  font-weight: 700;
}

.all-brands-cta-wrap {
  margin-top: 16px;
  text-align: center;
}

.all-brands-cta {
  text-decoration: none;
  display: inline-flex;
  border-radius: 999px;
  background: #ffffff;
  color: #173453;
  font-weight: 700;
  padding: 10px 18px;
}

@media (max-width: 991px) {
  .brand-highlights {
    padding: 50px 0 42px;
  }
}

@media (max-width: 640px) {
  .all-products-cta-wrap {
    padding-bottom: 18px;
  }

  .brand-highlights {
    padding: 42px 0 34px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.special-features {
  background: #eaf0f7;
  padding: 66px 0 56px;
}

.features-header {
  margin-bottom: 26px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  padding: 16px 14px;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #4e72ff, #21b4df);
  margin-bottom: 8px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0e2d4e;
}

.feature-card p {
  margin: 8px 0 0;
  color: #4c6785;
  font-size: 0.93rem;
  line-height: 1.52;
}

.latest-notice {
  background: #eaf0f7;
  padding: 22px 0 70px;
}

.notice-wrap {
  max-width: 900px;
}

.notice-header {
  margin-bottom: 20px;
}

.notice-list {
  display: grid;
  gap: 10px;
}

.notice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #d8e3ee;
  border-radius: 10px;
  padding: 12px 12px;
  color: inherit;
}

.notice-item strong {
  display: block;
  color: #102f50;
  font-size: 1rem;
}

.notice-item small {
  display: block;
  margin-top: 2px;
  color: #67819b;
  font-size: 0.8rem;
}

.notice-item b {
  color: #13a8e2;
  font-size: 1.15rem;
}

.notice-cta-wrap {
  margin-top: 14px;
  text-align: right;
}

.notice-cta {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #c9d7e6;
  background: #ffffff;
  color: #153553;
  padding: 8px 14px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .special-features {
    padding: 44px 0 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .latest-notice {
    padding: 14px 0 48px;
  }

  .notice-item {
    padding: 10px;
  }

  .notice-item strong {
    font-size: 0.94rem;
  }

  .notice-cta-wrap {
    text-align: center;
  }
}

.partner-cta {
  background: #eaf0f7;
  padding: 26px 0 54px;
}

.partner-cta-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(120deg, #0f9fd1 0%, #1ec28c 100%);
  box-shadow: 0 16px 28px rgba(18, 64, 93, 0.2);
}

.partner-cta-box h2 {
  margin: 0;
  color: #08345e;
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
}

.partner-cta-box p {
  margin: 12px auto 16px;
  max-width: 700px;
  color: #eaf8ff;
  line-height: 1.6;
}

.partner-cta-box a {
  display: inline-flex;
  text-decoration: none;
  background: #ffffff;
  color: #154268;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.site-footer {
  background: #050505;
  color: #d5d9df;
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.35fr;
  gap: 22px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.site-footer a {
  display: block;
  color: #d4d9e0;
  text-decoration: none;
  margin: 0 0 8px;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: #d4d9e0;
}

.footer-subscribe {
  display: flex;
  margin: 6px 0 12px;
}

.footer-subscribe input {
  flex: 1;
  min-width: 0;
  border: 1px solid #2f3945;
  background: #0e141a;
  color: #fff;
  height: 32px;
  border-radius: 4px 0 0 4px;
  padding: 0 10px;
}

.footer-subscribe button {
  border: 0;
  background: #f6a01a;
  color: #fff;
  width: 42px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-contact p {
  margin-bottom: 4px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid #1d232a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.76rem;
  color: #99a6b3;
}

.copyright-strip {
  text-align: center;
  background: #edf0f5;
  color: #3b4c5e;
  padding: 18px 12px;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partner-cta {
    padding: 16px 0 34px;
  }

  .partner-cta-box {
    padding: 20px 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright-strip {
    font-size: 0.88rem;
    padding: 14px 10px;
  }
}

/* About Page */
.about-page {
  background: #edf1f6;
}

.about-hero {
  background: linear-gradient(115deg, #2dc160 0%, #20b8b2 50%, #0f6aa1 100%);
  padding: 54px 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.about-kicker {
  margin: 0 0 10px;
  display: inline-block;
  color: #d7ffe7;
  background: rgba(8, 57, 74, 0.27);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #0b2e53;
  line-height: 1.18;
}

.about-hero p {
  margin: 14px 0 0;
  color: #e7f8ff;
  max-width: 640px;
}

.about-hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-hero-meta {
  margin-top: 14px;
  color: #d7f7ff;
  font-weight: 600;
}

.about-md-card {
  background: #0d2744;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(6, 38, 66, 0.35);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
}

.about-md-card img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
}

.about-md-card h3 {
  margin: 0;
  color: #ffffff;
}

.about-md-card p {
  margin: 2px 0 6px;
  color: #acd7ea;
}

.about-md-card small {
  color: #d5edf7;
  line-height: 1.45;
}

.about-story,
.about-md-message,
.about-milestones,
.about-bottom-cta {
  padding: 64px 0 0;
}

.about-story-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.about-story-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #1b2f48;
}

.about-story-grid p {
  color: #4b627b;
  line-height: 1.72;
}

.about-check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.about-check-list li::before {
  content: "✓ ";
  color: #19b45a;
  font-weight: 700;
}

.about-story-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(16, 44, 69, 0.12);
}

.about-mv-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  background: #f8fafc;
  border: 1px solid #d9e3ee;
  border-radius: 16px;
  padding: 18px 16px;
}

.about-card-tag {
  margin: 0;
  color: #2abf5f;
  font-size: 0.86rem;
  font-weight: 700;
}

.about-card h4 {
  margin: 8px 0 10px;
  font-size: 1.4rem;
  color: #1b2f46;
}

.about-card ul {
  margin: 0;
  padding-left: 18px;
  color: #526b84;
  line-height: 1.65;
}

.about-stats {
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.about-stats article {
  background: linear-gradient(120deg, #0f1f42 0%, #102853 100%);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
}

.about-stats strong {
  color: #fff;
  display: block;
  font-size: 1.8rem;
}

.about-stats span {
  color: #cddfff;
  font-size: 0.86rem;
}

.about-md-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.about-md-photo {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(11, 41, 67, 0.12);
}

.section-header.left {
  text-align: left;
  margin: 0 0 16px;
}

.md-label {
  color: #788594;
  letter-spacing: 0.6px;
  font-weight: 700;
  margin: 0;
}

.about-md-grid h3 {
  margin: 4px 0 10px;
  font-size: 2rem;
}

.about-md-grid p {
  color: #4b627b;
  line-height: 1.7;
}

.about-milestones .slim {
  max-width: 920px;
}

.about-milestones h2 {
  text-align: center;
  margin: 0 0 24px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #1e3047;
}

.timeline {
  border-left: 2px solid #34ba63;
  padding-left: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  margin-bottom: 18px;
}

.timeline article::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1fc462;
  position: absolute;
  left: -29px;
  top: 4px;
}

.timeline span {
  color: #18b757;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline h4 {
  margin: 2px 0;
  color: #1c2f46;
}

.timeline p {
  margin: 0;
  color: #586f86;
}

.about-bottom-cta {
  padding-bottom: 52px;
}

@media (max-width: 991px) {
  .about-hero-grid,
  .about-story-grid,
  .about-md-grid {
    grid-template-columns: 1fr;
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 38px 0;
  }

  .about-check-list {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-md-grid h3 {
    font-size: 1.5rem;
  }

  .about-story,
  .about-md-message,
  .about-milestones,
  .about-bottom-cta {
    padding-top: 40px;
  }
}

/* Products Page Hero */
.products-page {
  background: #eef2f7;
}

.products-hero {
  background: linear-gradient(115deg, #2bc260 0%, #1db8b6 52%, #0d6da0 100%);
  padding: 58px 0;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.products-kicker {
  margin: 0 0 10px;
  display: inline-block;
  background: rgba(10, 73, 78, 0.32);
  color: #d8ffe7;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.products-hero h1 {
  margin: 0;
  color: #0b2d53;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.18;
}

.products-hero p {
  margin: 12px 0 0;
  color: #e5f8ff;
  line-height: 1.7;
}

.products-hero-meta {
  margin-top: 14px;
  color: #d4f6ff;
  font-weight: 600;
}

.products-hero-card {
  background: #0b2744;
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 14px 28px rgba(7, 39, 68, 0.38);
}

.products-hero-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.4rem;
}

.products-hero-card p {
  margin: 10px 0 14px;
  color: #cde9f6;
}

.products-hero-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(33, 178, 118, 0.24);
  color: #d7ffea;
  padding: 6px 12px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .products-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .products-hero {
    padding: 40px 0;
  }

  .products-hero-card {
    border-radius: 14px;
    padding: 16px 14px;
  }
}

.products-category-section {
  padding: 48px 0 72px;
}

.products-cat-header {
  margin-bottom: 18px;
}

.product-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.filter-tab {
  border: 1px solid #b9c8d9;
  background: #f6f9fc;
  color: #1e3855;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
}

.filter-tab.active {
  border-color: #1dc75f;
  background: #e8faef;
  color: #128948;
}

.products-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  border: 1px solid #d5e0eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 39, 69, 0.07);
}

.catalog-card.hidden {
  display: none;
}

.catalog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.catalog-body {
  padding: 12px;
}

.catalog-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge.best {
  background: #e9fcef;
  color: #159b4a;
}

.badge.dark {
  background: #384256;
  color: #fff;
}

.badge.green {
  background: #dbf8e8;
  color: #15944b;
}

.badge.orange {
  background: #ffe9da;
  color: #d46b20;
}

.catalog-type {
  margin: 0;
  color: #6b8198;
  font-size: 0.84rem;
}

.catalog-body h3 {
  margin: 4px 0;
  color: #162f49;
  font-size: 1.24rem;
}

.catalog-desc {
  margin: 0;
  color: #4f6780;
  line-height: 1.5;
}

.catalog-meta {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5f748c;
}

@media (max-width: 991px) {
  .products-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-category-section {
    padding: 34px 0 48px;
  }

  .products-category-grid {
    grid-template-columns: 1fr;
  }
}

.order-steps-section {
  padding: 10px 0 30px;
}

.order-steps-header {
  margin-bottom: 18px;
}

.order-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.order-step-card {
  background: #f8fafc;
  border: 1px solid #d8e2ec;
  border-radius: 16px;
  padding: 14px 12px 12px;
}

.step-tag {
  margin: 0;
  color: #15a04d;
  font-weight: 800;
  font-size: 0.84rem;
}

.order-step-card h3 {
  margin: 4px 0 8px;
  color: #1a324c;
  font-size: 1.2rem;
}

.order-step-card p {
  margin: 0;
  color: #516b84;
  line-height: 1.55;
}

.step-btn {
  margin-top: 12px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 12px;
  color: #fff;
  font-weight: 700;
}

.step-btn.green {
  background: #1fc862;
}

.step-btn.blue {
  background: #1e9edd;
}

.step-btn.purple {
  background: #8f4ee7;
}

.products-bottom-cta {
  padding: 10px 0 54px;
}

.products-bottom-cta-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(120deg, #178b88 0%, #0f6ea1 100%);
  box-shadow: 0 14px 30px rgba(13, 45, 70, 0.2);
  text-align: center;
  padding: 34px 24px;
}

.products-bottom-cta-box h2 {
  margin: 0;
  color: #042a4d;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.products-bottom-cta-box p {
  margin: 10px auto 16px;
  color: #dcf5ff;
  max-width: 700px;
}

.products-bottom-cta-box a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  background: #22d36f;
  color: #053155;
  font-weight: 800;
  padding: 11px 20px;
}

.products-bottom-cta-box small {
  margin-top: 14px;
  display: block;
  color: #d5f0fb;
  font-weight: 600;
}

@media (max-width: 991px) {
  .order-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .order-steps-section {
    padding: 4px 0 22px;
  }

  .products-bottom-cta {
    padding: 8px 0 40px;
  }

  .products-bottom-cta-box {
    border-radius: 16px;
    padding: 22px 14px;
  }
}

/* Sales & Service Page */
.sales-page {
  background: #edf1f6;
}

.sales-hero {
  background: linear-gradient(115deg, #2bc160 0%, #1eaad2 52%, #102246 100%);
  padding: 58px 0;
}

.sales-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.sales-kicker {
  margin: 0 0 10px;
  display: inline-block;
  background: rgba(4, 63, 81, 0.34);
  color: #d8ffe9;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.sales-hero h1 {
  margin: 0;
  color: #092d52;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.sales-hero p {
  margin: 12px 0 0;
  color: #e4f8ff;
  line-height: 1.7;
}

.sales-hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sales-hero-meta {
  margin-top: 12px;
  color: #d6f5ff;
  font-weight: 600;
}

.sales-hero-card {
  background: #0d2642;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(6, 35, 63, 0.35);
}

.sales-hero-card h3 {
  margin: 0;
  color: #fff;
}

.sales-hero-card ul {
  margin: 10px 0;
  padding-left: 18px;
  color: #d3ebf8;
  line-height: 1.6;
}

.sales-hero-card p {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(68, 84, 111, 0.58);
  padding: 6px 10px;
  color: #e9f5ff;
  font-weight: 700;
}

.sales-solutions,
.sales-coverage,
.sales-partner-steps,
.sales-field-support,
.sales-faq-section,
.sales-bottom-cta {
  padding: 58px 0 0;
}

.sales-solution-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sales-solution-card {
  background: #f9fbfd;
  border: 1px solid #d6e0ea;
  border-radius: 14px;
  padding: 14px 12px;
}

.sales-solution-card h3 {
  margin: 0;
  color: #182f4a;
  font-size: 1.2rem;
}

.sales-solution-card p {
  margin: 8px 0;
  color: #587089;
}

.sales-solution-card small {
  color: #2b9854;
  font-weight: 700;
}

.sales-coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.sales-coverage h2 {
  margin: 0 0 8px;
  color: #1a2f48;
}

.sales-coverage p {
  margin: 0 0 10px;
  color: #546d85;
}

.sales-coverage ul {
  margin: 0;
  padding-left: 18px;
  color: #47617c;
  line-height: 1.7;
}

.sales-coverage-card {
  background: linear-gradient(120deg, #153b58 0%, #0f1b3c 100%);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 26px rgba(8, 34, 59, 0.3);
}

.sales-coverage-card h3 {
  margin: 0;
  color: #fff;
}

.sales-coverage-card p {
  margin: 8px 0 12px;
  color: #d4eaf8;
}

.sales-coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sales-coverage-stats div {
  background: rgba(17, 34, 64, 0.72);
  border-radius: 10px;
  text-align: center;
  padding: 12px 6px;
}

.sales-coverage-stats strong {
  color: #fff;
  display: block;
  font-size: 1.6rem;
}

.sales-coverage-stats span {
  color: #c7ddf0;
  font-size: 0.82rem;
}

.sales-step-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sales-step-grid article {
  background: #f8fafc;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  padding: 12px;
}

.sales-step-grid b {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #1ec55f;
  color: #0a233f;
}

.sales-step-grid h3 {
  margin: 8px 0 6px;
  color: #192f49;
  font-size: 1.12rem;
}

.sales-step-grid p {
  margin: 0;
  color: #526b84;
}

.sales-field-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.sales-field-box {
  background: linear-gradient(120deg, #0f8b96 0%, #0f6f99 100%);
  border-radius: 18px;
  padding: 18px 16px;
  color: #def5ff;
  box-shadow: 0 14px 24px rgba(9, 45, 69, 0.2);
}

.sales-field-box h3 {
  margin: 0 0 10px;
  color: #02284a;
}

.sales-field-box p {
  margin: 0;
  line-height: 1.65;
}

.sales-field-list {
  margin: 0;
  padding-left: 18px;
  color: #516a83;
  line-height: 1.85;
  column-count: 2;
  column-gap: 20px;
}

.sales-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sales-faq-grid h2 {
  margin: 0 0 8px;
  color: #1c3048;
}

.sales-faq-grid p {
  margin: 0;
  color: #5e758d;
  line-height: 1.7;
}

.faq-list details {
  border: 1px solid #cfd9e4;
  border-radius: 12px;
  background: #f7fafd;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #1e344f;
}

.faq-list details p {
  margin-top: 8px;
}

.sales-bottom-cta {
  padding-bottom: 56px;
}

.sales-bottom-cta-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(120deg, #2bc160 0%, #148470 100%);
  box-shadow: 0 16px 28px rgba(15, 66, 54, 0.22);
  padding: 32px 20px;
  text-align: center;
}

.sales-bottom-cta-box h2 {
  margin: 0;
  color: #0b2f52;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.sales-bottom-cta-box p {
  margin: 10px auto 16px;
  max-width: 700px;
  color: #def9ef;
}

.sales-bottom-cta-box a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  background: #22d36f;
  color: #053254;
  font-weight: 800;
  padding: 10px 18px;
}

.sales-bottom-cta-box small {
  margin-top: 14px;
  display: block;
  color: #dbf9ea;
  font-weight: 600;
}

@media (max-width: 991px) {
  .sales-hero-grid,
  .sales-coverage-grid,
  .sales-field-grid,
  .sales-faq-grid {
    grid-template-columns: 1fr;
  }

  .sales-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-field-list {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  .sales-hero {
    padding: 38px 0;
  }

  .sales-solution-grid,
  .sales-step-grid,
  .sales-coverage-stats {
    grid-template-columns: 1fr;
  }

  .sales-solutions,
  .sales-coverage,
  .sales-partner-steps,
  .sales-field-support,
  .sales-faq-section,
  .sales-bottom-cta {
    padding-top: 40px;
  }

  .sales-bottom-cta-box {
    border-radius: 16px;
    padding: 20px 14px;
  }
}

/* Notice Page Hero */
.notice-page {
  background: #eef2f7;
}

.notice-hero {
  background: linear-gradient(115deg, #27bc67 0%, #1eabd2 52%, #102246 100%);
  padding: 58px 0;
}

.notice-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.notice-kicker {
  margin: 0 0 10px;
  display: inline-block;
  background: rgba(6, 67, 85, 0.35);
  color: #d8ffe9;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.notice-hero h1 {
  margin: 0;
  color: #0a2d52;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.notice-hero p {
  margin: 12px 0 0;
  color: #e4f8ff;
  line-height: 1.7;
}

.notice-hero-meta {
  margin-top: 14px;
  color: #d5f4ff;
  font-weight: 600;
  line-height: 1.8;
}

.notice-hero-card {
  background: #0e2642;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(6, 35, 63, 0.35);
}

.notice-hero-card h3 {
  margin: 0;
  color: #ffffff;
}

.notice-hero-card ul {
  margin: 10px 0;
  padding-left: 18px;
  color: #d3ebf8;
  line-height: 1.65;
}

.notice-hero-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(59, 87, 112, 0.68);
  color: #eaf6ff;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 0.86rem;
}

@media (max-width: 991px) {
  .notice-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .notice-hero {
    padding: 40px 0;
  }

  .notice-hero-card {
    border-radius: 14px;
    padding: 14px;
  }
}

.notice-list-section {
  padding: 54px 0 64px;
}

.notice-list-wrap {
  max-width: 940px;
}

.notice-tools {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notice-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.notice-filter {
  border: 1px solid #b8c6d7;
  background: #f7f9fc;
  color: #223a56;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.notice-filter.active {
  border-color: #1ac35a;
  background: #e8f9ef;
  color: #138f47;
}

.notice-search {
  width: min(360px, 100%);
  border: 1px solid #c8d5e2;
  border-radius: 10px;
  background: #f8fbfe;
  height: 40px;
  padding: 0 12px;
}

.notice-items {
  display: grid;
  gap: 10px;
}

.notice-row {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 12px;
  align-items: start;
  border: 1px solid #d2dde9;
  background: #f8fbfd;
  border-radius: 14px;
  padding: 10px;
}

.notice-row.hidden {
  display: none;
}

.notice-date {
  background: #132949;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 9px 6px;
  line-height: 1.2;
  font-weight: 700;
}

.notice-date span {
  display: block;
  margin-top: 2px;
  color: #ccddf4;
  font-size: 0.74rem;
}

.notice-content h3 {
  margin: 0;
  color: #17304b;
  font-size: 1.16rem;
}

.notice-meta {
  margin: 7px 0 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.notice-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  background: #eaf2fb;
  color: #2d4764;
  font-size: 0.77rem;
  font-weight: 700;
}

.notice-content p {
  margin: 0;
  color: #557089;
}

.notice-action {
  text-decoration: none;
  color: #1d3b5d;
  border: 1px solid #becddd;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  white-space: nowrap;
}

.notice-archive-cta {
  margin-top: 30px;
  border-radius: 24px;
  background: linear-gradient(120deg, #178b88 0%, #0f6ea1 100%);
  box-shadow: 0 14px 30px rgba(13, 45, 70, 0.2);
  text-align: center;
  padding: 28px 20px;
}

.notice-archive-cta h3 {
  margin: 0;
  color: #082e52;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.notice-archive-cta p {
  margin: 10px auto 14px;
  max-width: 680px;
  color: #ddf6ff;
}

.notice-archive-cta a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  background: #23d26f;
  color: #073051;
  font-weight: 800;
  padding: 10px 16px;
}

.notice-archive-cta small {
  margin-top: 12px;
  display: block;
  color: #d2edf9;
  font-weight: 600;
}

@media (max-width: 991px) {
  .notice-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .notice-search {
    width: 100%;
  }

  .notice-row {
    grid-template-columns: 84px 1fr;
  }

  .notice-action {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .notice-list-section {
    padding: 40px 0 46px;
  }

  .notice-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notice-date {
    width: 88px;
  }

  .notice-archive-cta {
    border-radius: 16px;
    padding: 20px 14px;
  }
}

/* Contact Page (Top Sections) */
.contact-page {
  background: #eef2f7;
}

.contact-hero {
  background: linear-gradient(115deg, #27bc67 0%, #1eaad2 52%, #102246 100%);
  padding: 58px 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.contact-kicker {
  margin: 0 0 10px;
  display: inline-block;
  background: rgba(6, 67, 85, 0.35);
  color: #d8ffe9;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.contact-hero h1 {
  margin: 0;
  color: #0a2d52;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.contact-hero p {
  margin: 12px 0 0;
  color: #e4f8ff;
  line-height: 1.7;
}

.contact-hero-meta {
  margin-top: 14px;
  color: #d5f4ff;
  font-weight: 600;
}

.contact-hero-card {
  background: #0e2642;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(6, 35, 63, 0.35);
}

.contact-hero-card h3 {
  margin: 0;
  color: #ffffff;
}

.contact-hero-card p {
  margin: 8px 0;
  color: #d2ebf8;
}

.contact-hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: #e3f4ff;
  line-height: 1.7;
}

.contact-methods {
  padding: 52px 0 66px;
}

.contact-method-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-method-card {
  background: #f8fafc;
  border: 1px solid #d5e0ea;
  border-radius: 14px;
  padding: 14px 12px;
}

.contact-method-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #d8f2e2;
}

.contact-method-card h3 {
  margin: 8px 0 6px;
  color: #18324d;
  font-size: 1.18rem;
}

.contact-main {
  margin: 0;
  color: #243e5a;
  font-weight: 700;
}

.contact-buttons {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-buttons a {
  text-decoration: none;
  border-radius: 999px;
  background: #e8f7ee;
  color: #15894a;
  border: 1px solid #bfe8cf;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 0.82rem;
}

.contact-method-card small {
  margin-top: 10px;
  display: block;
  color: #637b94;
}

@media (max-width: 991px) {
  .contact-hero-grid,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 40px 0;
  }

  .contact-hero-card {
    border-radius: 14px;
    padding: 14px;
  }

  .contact-methods {
    padding: 40px 0 46px;
  }
}

.contact-form-section {
  padding: 8px 0 68px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.contact-form-card,
.contact-side-card {
  background: #f9fbfd;
  border: 1px solid #d5e0ea;
  border-radius: 16px;
  padding: 16px 14px;
}

.contact-form-card h2 {
  margin: 0;
  color: #1a314b;
}

.contact-form-card p {
  margin: 8px 0 12px;
  color: #5a728a;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.contact-form label {
  display: block;
  color: #1f3753;
  font-weight: 700;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 4px;
  width: 100%;
  border: 1px solid #c8d5e2;
  border-radius: 8px;
  background: #fff;
  color: #1e324c;
  padding: 10px 10px;
  font: inherit;
  font-size: 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form small {
  margin-top: 8px;
  display: block;
  color: #71859b;
}

.contact-form button {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: #20c964;
  color: #033050;
  font-weight: 800;
  padding: 10px 18px;
  cursor: pointer;
}

.contact-side-card h3 {
  margin: 0 0 8px;
  color: #19324e;
}

.contact-side-list p {
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  color: #556f88;
}

.contact-side-list strong {
  color: #132f4c;
}

.contact-side-note {
  margin: 6px 0 12px;
  display: inline-flex;
  border-radius: 999px;
  background: #e7f9ef;
  border: 1px solid #bdeacf;
  color: #168e49;
  padding: 7px 10px;
  font-weight: 700;
}

.contact-mini-box {
  background: #0f2441;
  border-radius: 12px;
  padding: 12px;
}

.contact-mini-box h4 {
  margin: 0 0 8px;
  color: #ffffff;
}

.contact-mini-box a {
  display: block;
  color: #d9f2ff;
  text-decoration: none;
  margin-bottom: 6px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-section {
    padding: 0 0 44px;
  }

  .contact-form .form-row,
  .contact-side-list p {
    grid-template-columns: 1fr;
  }
}

.contact-location-section {
  padding: 8px 0 36px;
}

.contact-map-wrap {
  margin: 14px auto 8px;
  max-width: 980px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d4deea;
  box-shadow: 0 10px 22px rgba(9, 38, 64, 0.09);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-map-note {
  text-align: center;
  color: #526c86;
  margin: 0;
}

.contact-bottom-cta {
  padding: 20px 0 54px;
}

.contact-bottom-cta-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(120deg, #178b88 0%, #0f6ea1 100%);
  box-shadow: 0 14px 30px rgba(13, 45, 70, 0.2);
  text-align: center;
  padding: 34px 24px;
}

.contact-bottom-cta-box h2 {
  margin: 0;
  color: #073053;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.contact-bottom-cta-box p {
  margin: 10px auto 16px;
  max-width: 680px;
  color: #def6ff;
}

.contact-bottom-cta-box a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  background: #22d36f;
  color: #073154;
  font-weight: 800;
  padding: 10px 18px;
}

.contact-bottom-cta-box small {
  margin-top: 12px;
  display: block;
  color: #d0edf9;
  font-weight: 600;
}

@media (max-width: 640px) {
  .contact-location-section {
    padding-bottom: 26px;
  }

  .contact-map-wrap iframe {
    height: 300px;
  }

  .contact-bottom-cta {
    padding: 8px 0 40px;
  }

  .contact-bottom-cta-box {
    border-radius: 16px;
    padding: 20px 14px;
  }
}

/* Team Page Hero */
.team-page {
  background: #eef2f7;
}

.team-hero {
  background: linear-gradient(115deg, #27bc67 0%, #1eaad2 52%, #0f6aa0 100%);
  padding: 58px 0;
}

.team-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.team-kicker {
  margin: 0 0 10px;
  display: inline-block;
  background: rgba(6, 67, 85, 0.35);
  color: #d8ffe9;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.team-hero h1 {
  margin: 0;
  color: #0a2d52;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.team-hero p {
  margin: 12px 0 0;
  color: #e4f8ff;
  line-height: 1.7;
}

.team-hero-card {
  background: #0e2642;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(6, 35, 63, 0.35);
}

.team-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-head img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.team-head h3 {
  margin: 0;
  color: #fff;
}

.team-head p {
  margin: 2px 0 0;
  color: #d4ebf8;
  font-size: 0.85rem;
}

.team-tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.team-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  background: #2f3f58;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
}

.team-tags span:last-child {
  background: #f4f28a;
  color: #253550;
}

.team-hero-card p {
  margin-top: 10px;
}

.team-hero-card small {
  margin-top: 8px;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(57, 88, 111, 0.68);
  color: #eaf6ff;
  padding: 6px 10px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .team-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .team-hero {
    padding: 40px 0;
  }

  .team-hero-card {
    border-radius: 14px;
    padding: 14px;
  }
}

.team-leadership {
  padding: 26px 0 56px;
}

.team-section-kicker {
  margin: 0 0 8px;
  color: #16a34a;
  font-weight: 700;
}

.team-leadership .section-head {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
}

.team-leadership .section-head h2 {
  margin: 0;
  color: #132b44;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.team-leadership .section-head p {
  margin: 8px 0 0;
  color: #4d667f;
}

.team-carousel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
}

.team-carousel-arrow {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 1px solid #c4d0dd;
  border-radius: 999px;
  background: #edf0f4;
  color: #1f3551;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10, 33, 58, 0.14);
}

.team-carousel-card {
  border-radius: 24px;
  padding: 18px;
  background: #f4f7fb;
  border: 1px solid #ccd8e4;
  box-shadow: 0 18px 34px rgba(16, 38, 61, 0.2);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
}

.team-carousel-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d7e4ef;
  background: #fff;
}

.team-carousel-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.team-carousel-content h3 {
  margin: 2px 0 8px;
  color: #1f2f44;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.team-carousel-content p {
  margin: 0;
  color: #455f78;
  line-height: 1.65;
}

.team-carousel-name-line {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.team-carousel-name-line strong {
  color: #1b56da;
  font-size: 1.06rem;
}

.team-carousel-name-line span {
  background: #dce4ef;
  color: #263b56;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.8rem;
  font-weight: 700;
}

.team-meta {
  margin-top: 6px !important;
  color: #2f4862 !important;
}

.team-meta a {
  color: #2b57c9;
  font-weight: 700;
  text-decoration: none;
}

.team-social-row {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-social-row a {
  text-decoration: none;
  border: 1px solid #d4dee8;
  background: #ffffff;
  color: #1b57d4;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
}

.team-carousel-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #afb8c4;
  cursor: pointer;
}

.team-carousel-dots button.active {
  width: 20px;
  background: #243e63;
}

@media (max-width: 991px) {
  .team-leadership {
    padding: 18px 0 44px;
  }

  .team-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-carousel-arrow {
    display: none;
  }

  .team-carousel-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
    gap: 14px;
  }

  .team-carousel-image-wrap img {
    min-height: 340px;
    object-fit: contain;
    background: #fff;
  }
}

@media (max-width: 640px) {
  .team-carousel-card {
    padding: 12px;
    border-radius: 14px;
  }

  .team-carousel-image-wrap img {
    min-height: 240px;
  }

  .team-carousel-content h3 {
    font-size: 1.25rem;
  }
}

.team-core {
  padding: 4px 0 70px;
}

.team-core .section-head {
  text-align: center;
}

.team-core .section-head h2 {
  margin: 0;
  color: #142b45;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
}

.team-core .section-head p {
  margin: 8px 0 0;
  color: #5a728b;
}

.team-core-filters {
  margin: 14px auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.team-filter-btn {
  border: 1px solid #cfd9e4;
  background: #f9fbfd;
  border-radius: 999px;
  padding: 8px 14px;
  color: #102742;
  font-weight: 700;
  cursor: pointer;
}

.team-filter-btn.active {
  background: linear-gradient(120deg, #1faae0 0%, #158dd2 100%);
  color: #fff;
  border-color: transparent;
}

.team-core-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-core-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f7fbff;
  border: 1px solid #d2ddea;
}

.team-core-card.hidden {
  display: none;
}

.team-core-image-wrap {
  background: linear-gradient(90deg, #1ca9d1 0%, #4f6bdc 100%);
  padding: 0 28px;
}

.team-core-image-wrap img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
}

.team-core-image-placeholder {
  height: 250px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(120deg, #22a7d5 0%, #5264df 100%);
}

.team-core-body {
  padding: 12px 12px 14px;
  text-align: center;
}

.team-core-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.team-core-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #e4edf6;
  color: #203650;
}

.team-core-tags span:first-child {
  background: #d8f1ff;
  color: #117bc3;
}

.team-core-body h3 {
  margin: 0;
  color: #0f2943;
  font-size: 1.22rem;
}

.team-core-body p {
  margin: 5px 0 0;
  color: #4f6782;
  font-size: 0.92rem;
}

.team-core-body a {
  margin-top: 12px;
  display: inline-flex;
  text-decoration: none;
  border: 1px solid #d1dce8;
  border-radius: 999px;
  color: #1d57c2;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.87rem;
}

.team-core-actions {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.team-core-actions a {
  margin-top: 0;
  min-width: 136px;
  justify-content: center;
}

.team-core-actions a.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.team-pagination {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.team-pagination button {
  min-width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #d4deea;
  background: #f8fbfe;
  color: #19304a;
  font-weight: 700;
  cursor: pointer;
}

.team-pagination button.active {
  background: linear-gradient(120deg, #20a8df 0%, #1589cd 100%);
  color: #fff;
  border-color: transparent;
}

.team-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.team-culture {
  padding: 8px 0 10px;
}

.team-culture-grid {
  border: 1px solid #dde5ef;
  background: #f5f8fc;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
}

.team-culture-text h2 {
  margin: 0;
  color: #1f2f44;
}

.team-culture-text p {
  color: #4f6982;
  line-height: 1.7;
}

.team-culture-text ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #2f455e;
  line-height: 1.7;
}

.team-culture-card {
  border-radius: 18px;
  background: #041432;
  color: #d9eaf6;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(8, 29, 50, 0.28);
}

.team-culture-card h3 {
  margin: 0;
  color: #fff;
}

.team-culture-card p {
  margin: 8px 0 10px;
  line-height: 1.7;
}

.team-culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-culture-tags span {
  border: 1px solid #4f647d;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

.team-bottom-cta {
  padding: 0 0 10px;
}

.team-bottom-cta-box {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(120deg, #198787 0%, #0d6d9e 100%);
  box-shadow: 0 16px 30px rgba(13, 46, 70, 0.25);
  text-align: center;
  padding: 30px 20px;
}

.team-bottom-cta-box h2 {
  margin: 0;
  color: #063152;
}

.team-bottom-cta-box p {
  max-width: 760px;
  margin: 8px auto 14px;
  color: #e0f4ff;
}

.team-bottom-cta-box a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  background: #22d466;
  color: #043556;
  font-weight: 800;
  padding: 11px 18px;
}

.team-bottom-cta-box small {
  margin-top: 10px;
  display: block;
  color: #d5edf9;
}

.simple-copyright {
  border-top: 1px solid #d8e2ee;
  padding: 12px 0;
  text-align: center;
}

.simple-copyright p {
  margin: 0;
  color: #3d566f;
}

@media (max-width: 1200px) {
  .team-core-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .team-core {
    padding-bottom: 48px;
  }

  .team-core-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-core-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-core-image-wrap img {
    height: 220px;
  }

  .team-core-image-placeholder {
    height: 220px;
  }

  .team-culture-grid {
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .team-culture-card {
    border-radius: 14px;
  }

  .team-bottom-cta-box {
    border-radius: 14px;
    padding: 20px 14px;
  }
}

/* Login Page */
.login-page {
  background:
    radial-gradient(circle at top left, rgba(31, 201, 148, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(15, 106, 161, 0.2), transparent 30%),
    linear-gradient(180deg, #f8fdff 0%, #eef8ff 100%);
}

.login-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 68px;
}

.login-hero::before,
.login-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.login-hero::before {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 60px;
  background: radial-gradient(circle, rgba(17, 195, 133, 0.18) 0%, rgba(17, 195, 133, 0) 70%);
}

.login-hero::after {
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(1, 118, 182, 0.17) 0%, rgba(1, 118, 182, 0) 70%);
}

.login-hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.login-hero-copy {
  max-width: 560px;
}

.login-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(1, 118, 182, 0.1);
  color: #0c648d;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.login-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08b674 0%, #0176b6 100%);
}

.login-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: #0c2d4d;
}

.login-hero-copy p {
  margin: 16px 0 0;
  color: #3d5c73;
  font-size: 1.04rem;
  line-height: 1.72;
}

.login-feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.login-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f4b63;
  font-weight: 600;
}

.login-feature-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 185, 111, 0.15);
  color: #03955d;
  flex-shrink: 0;
}

.login-card {
  position: relative;
  border-radius: 28px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(7, 138, 173, 0.92) 0%, rgba(39, 203, 141, 0.9) 100%);
  box-shadow: 0 26px 48px rgba(8, 58, 86, 0.18);
  color: #ffffff;
}

.login-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.login-card-inner {
  position: relative;
  z-index: 1;
  max-width: 370px;
  margin: 0 auto;
}

.login-card-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  padding: 12px;
  margin: 0 auto 18px;
}

.login-card-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.login-card h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.login-card p {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.login-form {
  margin-top: 24px;
}

.login-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #ffffff;
}

.login-form input {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.login-form input:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 18px;
  flex-wrap: wrap;
}

.login-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.93rem;
}

.login-checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.login-row a,
.login-help-links a,
.login-support a {
  color: #ffffff;
}

.login-submit {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  color: #0f6288;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(7, 55, 76, 0.18);
}

.login-help-links {
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.login-support {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.93rem;
}

@media (max-width: 991px) {
  .login-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .login-hero-copy {
    max-width: none;
    text-align: center;
  }

  .login-feature-list {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .login-hero {
    padding: 24px 0 46px;
  }

  .login-card {
    border-radius: 22px;
    padding: 22px 16px;
  }

  .login-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .login-card-logo {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .login-hero-copy h1 {
    font-size: 2rem;
  }

  .login-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
