:root {
      --ink-950    : #111827;
      --ink-900    : #1f2937;
      --ink-700    : #374151;
      --ink-500    : #6b7280;
      --mist-100   : #f4f7ff;
      --mist-50    : #fbfcff;
      --line       : #d9e1f2;
      --card       : #ffffff;
      --sun        : #ffb703;
      --sun-soft   : #ffd166;
      --sea        : #005f73;
      --sea-soft   : #0a9396;
      --accent     : #ee9b00;
      --radius-lg  : 22px;
      --radius-md  : 14px;
      --shadow-soft: 0 20px 50px rgba(17, 24, 39, 0.1);

      /* Animation variables */
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-out   : cubic-bezier(0.33, 1, 0.68, 1);
}

* {
      margin    : 0;
      padding   : 0;
      box-sizing: border-box;
}

html {
      scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
            animation-duration       : 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration      : 0.01ms !important;
            scroll-behavior          : auto !important;
      }
}

html,
body {
      width     : 100%;
      overflow-x: clip;
}

body {
      font-family: 'Manrope', sans-serif;
      color      : var(--ink-900);
      background :
            radial-gradient(circle at 8% 20%, #cfe5ff 0%, rgba(207, 229, 255, 0) 42%),
            radial-gradient(circle at 90% 0%, #ffe4b8 0%, rgba(255, 228, 184, 0) 34%),
            linear-gradient(160deg, var(--mist-50) 0%, var(--mist-100) 100%);
      line-height: 1.6;
      opacity    : 0;
      animation  : fadeInPage 0.6s var(--ease-out) 0.1s forwards;
}

@keyframes fadeInPage {
      from {
            opacity  : 0;
            transform: translateY(10px);
      }

      to {
            opacity  : 1;
            transform: translateY(0);
      }
}

.container {
      width : min(1180px, 92vw);
      margin: 0 auto;
}

.bg-orb {
      position     : fixed;
      width        : 320px;
      aspect-ratio : 1;
      border-radius: 50%;
      filter       : blur(40px);
      opacity      : 0.5;
      z-index      : -2;
      animation    : floatOrb 20s ease-in-out infinite;
}

@keyframes floatOrb {

      0%,
      100% {
            transform: translate(0, 0) scale(1);
      }

      25% {
            transform: translate(30px, -30px) scale(1.1);
      }

      50% {
            transform: translate(-20px, 20px) scale(0.95);
      }

      75% {
            transform: translate(40px, 10px) scale(1.05);
      }
}

.orb-1 {
      background: rgba(10, 147, 150, 0.3);
      left      : -60px;
      top       : 40vh;
}

.orb-2 {
      background     : rgba(238, 155, 0, 0.25);
      right          : -80px;
      top            : 8vh;
      animation-delay: -7s;
}

.navbar {
      position       : fixed;
      top            : 0;
      left           : 0;
      right          : 0;
      z-index        : 1000;
      padding        : 16px 0;
      transition     : all 0.4s var(--ease-smooth);
      background     : rgba(255, 255, 255, 0.95);
      border-bottom  : 1px solid rgba(0, 95, 115, 0.08);
      backdrop-filter: blur(20px);
      box-shadow     : 0 2px 8px rgba(0, 0, 0, 0.04);
      transform      : translateY(-100%);
      animation      : slideDownNav 0.6s var(--ease-out) 0.3s forwards;
}

@keyframes slideDownNav {
      to {
            transform: translateY(0);
      }
}

.navbar.scrolled {
      backdrop-filter: blur(24px);
      background     : rgba(255, 255, 255, 0.98);
      box-shadow     : 0 4px 20px rgba(0, 95, 115, 0.12);
      padding        : 10px 0;
}

.nav-shell {
      display        : flex;
      align-items    : center;
      justify-content: space-between;
      gap            : 20px;
      position       : relative;
}

.nav-brand {
      display        : inline-flex;
      align-items    : center;
      gap            : 12px;
      text-decoration: none;
      color          : var(--sea);
      font-family    : 'Space Grotesk', sans-serif;
      font-size      : 1.15rem;
      font-weight    : 700;
      line-height    : 1;
      transition     : opacity 0.3s ease;
      z-index        : 1001;
}

.nav-brand:hover {
      opacity: 0.85;
}

.brand-logo-img {
      height    : clamp(50px, 7vw, 70px);
      width     : auto;
      max-width : 200px;
      object-fit: contain;
      display   : block;
      filter    : brightness(0.95) contrast(1.05);
      transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled .brand-logo-img {
      height: clamp(42px, 6vw, 56px);
}

.nav-brand:hover .brand-logo-img {
      filter: brightness(1) contrast(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
      display       : none;
      flex-direction: column;
      gap           : 6px;
      background    : transparent;
      border        : none;
      cursor        : pointer;
      padding       : 8px;
      z-index       : 1001;
      transition    : transform 0.3s var(--ease-smooth);
}

.mobile-menu-toggle:hover {
      transform: scale(1.1);
}

.hamburger-line {
      width           : 28px;
      height          : 3px;
      background      : var(--sea);
      border-radius   : 3px;
      transition      : all 0.3s var(--ease-smooth);
      transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
      opacity  : 0;
      transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
}

/* Nav Menu Wrapper */
.nav-menu-wrapper {
      display        : flex;
      align-items    : center;
      gap            : 24px;
      flex           : 1;
      justify-content: flex-end;
}

.nav-menu {
      list-style: none;
      display   : flex;
      gap       : 6px;
      margin    : 0;
      padding   : 0;
}

.nav-link {
      color          : var(--ink-700);
      text-decoration: none;
      font-weight    : 600;
      font-size      : 0.94rem;
      position       : relative;
      padding        : 10px 18px;
      border-radius  : 10px;
      transition     : all 0.3s var(--ease-smooth);
      letter-spacing : -0.01em;
      opacity        : 0;
      animation      : fadeInStagger 0.5s var(--ease-out) forwards;
}

.nav-link:nth-child(1) {
      animation-delay: 0.5s;
}

.nav-link:nth-child(2) {
      animation-delay: 0.6s;
}

.nav-link:nth-child(3) {
      animation-delay: 0.7s;
}

.nav-link:nth-child(4) {
      animation-delay: 0.8s;
}

@keyframes fadeInStagger {
      to {
            opacity: 1;
      }
}

.nav-link::after {
      display: none;
}

.nav-link:hover {
      color     : var(--sea);
      background: rgba(0, 95, 115, 0.08);
      transform : translateY(-2px);
}

.nav-link.active {
      color     : #ffffff;
      background: linear-gradient(135deg, var(--sea) 0%, var(--sea-soft) 100%);
      box-shadow: 0 4px 12px rgba(0, 95, 115, 0.25);
}

.nav-link.active:hover {
      background: linear-gradient(135deg, var(--sea-soft) 0%, var(--sea) 100%);
      transform : translateY(-1px);
}

.nav-cta {
      padding      : 10px 24px;
      font-size    : 0.9rem;
      white-space  : nowrap;
      animation    : fadeInStagger 0.5s var(--ease-out) 0.9s forwards;
      opacity      : 0;
      border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 960px) {
      .mobile-menu-toggle {
            display: flex;
      }

      .nav-menu-wrapper {
            position       : fixed;
            top            : 0;
            right          : -100%;
            width          : 320px;
            height         : 100vh;
            background     : rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(24px);
            flex-direction : column;
            justify-content: flex-start;
            align-items    : stretch;
            padding        : 100px 32px 32px;
            gap            : 16px;
            box-shadow     : -4px 0 24px rgba(0, 95, 115, 0.15);
            transition     : right 0.4s var(--ease-smooth);
            z-index        : 1000;
      }

      .nav-menu-wrapper.active {
            right: 0;
      }

      .nav-menu {
            flex-direction: column;
            gap           : 8px;
            width         : 100%;
      }

      .nav-link {
            width        : 100%;
            text-align   : left;
            padding      : 14px 20px;
            font-size    : 1.05rem;
            border-radius: 12px;
            animation    : none;
            opacity      : 1;
      }

      .nav-cta {
            width        : 100%;
            padding      : 14px 24px;
            font-size    : 1rem;
            margin-top   : 16px;
            border-radius: 12px;
            animation    : none;
            opacity      : 1;
      }

      .brand-logo-img {
            height   : 48px;
            max-width: 160px;
      }

      .navbar.scrolled .brand-logo-img {
            height: 40px;
      }
}

@media (max-width: 480px) {
      .nav-menu-wrapper {
            width: 100%;
            right: -100%;
      }

      .navbar {
            padding: 12px 0;
      }

      .navbar.scrolled {
            padding: 8px 0;
      }
}

@media (max-width: 760px) {
      .navbar {
            padding: 16px 0;
      }

      .navbar.scrolled {
            padding: 10px 0;
      }
}

.tab-content {
      display    : none;
      min-height : 100vh;
      padding-top: 78px;
}

.tab-content.active {
      display: block;
}

.hero {
      color   : #ffffff;
      padding : 130px 0 70px;
      position: relative;
      overflow: hidden;
      background:
            linear-gradient(115deg, rgba(2, 32, 71, 0.96), rgba(0, 95, 115, 0.92)),
            linear-gradient(45deg, #001f3f, #0a9396);
      background-size: 200% 200%;
      animation      : gradientShift 15s ease infinite;
}

@keyframes gradientShift {

      0%,
      100% {
            background-position: 0% 50%;
      }

      50% {
            background-position: 100% 50%;
      }
}

.showcase-visuals {
      padding: 28px 0 36px;
}

.visual-grid {
      display              : grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap                  : 16px;
}

.visual-card {
      background     : #ffffff;
      border         : 1px solid var(--line);
      border-radius  : var(--radius-lg);
      box-shadow     : var(--shadow-soft);
      overflow       : hidden;
      transform-style: preserve-3d;
      transition     : all 0.4s var(--ease-spring);
      padding        : 24px 20px 20px;
      display        : flex;
      flex-direction : column;
      gap            : 10px;
}

.visual-card:hover {
      transform : translateY(-12px) rotateX(2deg);
      box-shadow: 0 32px 64px rgba(20, 39, 67, 0.2);
}

.visual-image {
      width       : 100%;
      aspect-ratio: 16 / 10;
      object-fit  : cover;
      display     : block;
}

.visual-content {
      padding: 0;
}

/* ── Emoji Icon Containers ─────────────────────────────── */
.visual-icon,
.cap-icon,
.brand-card-icon,
.product-cat-icon,
.product-visual-icon,
.bundle-icon,
.value-icon,
.impact-icon,
.info-icon {
      display        : inline-flex;
      align-items    : center;
      justify-content: center;
      line-height    : 1;
      margin-bottom  : 10px;
      width          : 56px;
      height         : 56px;
      border-radius  : 14px;
      background     : linear-gradient(145deg, #ffffff, #e9f3ff);
      border         : 1px solid #d7e6fb;
      box-shadow     : 0 10px 24px rgba(32, 65, 107, 0.12);
}

.visual-icon {
      font-size: 1.8rem;
}

.cap-icon {
      font-size: 1.45rem;
}

.brand-card-icon {
      font-size: 1.55rem;
}

.product-cat-icon {
      font-size: 1.65rem;
}

.product-visual-icon {
      font-size: 1.95rem;
}

.bundle-icon {
      font-size: 1.45rem;
}

.value-icon {
      font-size: 1.45rem;
}

.impact-icon {
      font-size: 1.75rem;
}

.info-icon {
      font-size: 1.35rem;
}

.route-ribbon {
      display        : flex;
      align-items    : center;
      justify-content: space-between;
      gap            : 10px;
      margin-top     : 24px;
      color          : rgba(236, 248, 255, 0.96);
      font-weight    : 700;
      font-size      : 0.85rem;
      letter-spacing : 0.06em;
      text-transform : uppercase;
}

.route-ribbon svg {
      flex  : 1;
      height: 22px;
}

.route-ribbon path {
      fill            : none;
      stroke          : rgba(255, 231, 179, 0.9);
      stroke-width    : 2;
      stroke-linecap  : round;
      stroke-dasharray: 6 8;
      animation       : moveDash 1.4s linear infinite;
}

.visual-content h3 {
      font-family  : 'Space Grotesk', sans-serif;
      color        : var(--sea);
      margin-bottom: 6px;
}

.visual-content p {
      color    : var(--ink-500);
      font-size: 0.94rem;
}

.hero::before,
.hero::after {
      content       : '';
      position      : absolute;
      border-radius : 50%;
      pointer-events: none;
}

.hero::before {
      width     : 420px;
      height    : 420px;
      background: radial-gradient(circle, rgba(255, 209, 102, 0.26), transparent 70%);
      right     : -120px;
      top       : -120px;
}

.hero::after {
      width     : 360px;
      height    : 360px;
      background: radial-gradient(circle, rgba(10, 147, 150, 0.3), transparent 70%);
      left      : -100px;
      bottom    : -140px;
}

.hero-grid {
      display              : grid;
      grid-template-columns: 1.2fr 0.8fr;
      align-items          : center;
      gap                  : 36px;
      position             : relative;
      z-index              : 1;
}

.eyebrow {
      display       : inline-flex;
      align-items   : center;
      gap           : 8px;
      border        : 1px solid rgba(255, 255, 255, 0.4);
      border-radius : 999px;
      padding       : 6px 14px;
      font-size     : 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom : 16px;
}

.hero-copy h1 {
      font-family   : 'Space Grotesk', sans-serif;
      font-size     : clamp(2rem, 4.6vw, 4rem);
      line-height   : 1.08;
      letter-spacing: -0.03em;
      margin-bottom : 18px;
}

.hero-subtitle {
      color        : rgba(255, 255, 255, 0.84);
      max-width    : 60ch;
      margin-bottom: 26px;
}

.hero-buttons {
      display      : flex;
      gap          : 12px;
      flex-wrap    : wrap;
      margin-bottom: 24px;
}

.hero-ticker {
      display  : flex;
      flex-wrap: wrap;
      gap      : 10px;
}

.hero-ticker span {
      border       : 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 999px;
      padding      : 6px 12px;
      font-size    : 0.84rem;
      background   : rgba(255, 255, 255, 0.1);
}

.hero-panel {
      background     : rgba(255, 255, 255, 0.08);
      border         : 1px solid rgba(255, 255, 255, 0.2);
      border-radius  : var(--radius-lg);
      padding        : 24px;
      backdrop-filter: blur(8px);
}

.hero-panel h2 {
      font-family  : 'Space Grotesk', sans-serif;
      font-size    : 1.25rem;
      margin-bottom: 16px;
}

.panel-metric {
      display        : flex;
      justify-content: space-between;
      align-items    : baseline;
      border-bottom  : 1px solid rgba(255, 255, 255, 0.16);
      padding        : 12px 0;
}

.panel-metric span {
      font-size: 0.9rem;
      color    : rgba(255, 255, 255, 0.8);
}

.panel-metric strong {
      font-size  : 1.2rem;
      font-family: 'Space Grotesk', sans-serif;
}

.panel-progress {
      margin-top: 14px;
}

.panel-progress p {
      font-size    : 0.88rem;
      color        : rgba(255, 255, 255, 0.8);
      margin-bottom: 8px;
}

.progress-track {
      height       : 10px;
      border-radius: 999px;
      background   : rgba(255, 255, 255, 0.22);
      overflow     : hidden;
}

.progress-fill {
      display      : block;
      height       : 100%;
      width        : 68%;
      border-radius: 999px;
      background   : linear-gradient(90deg, var(--sun), #fb8500);
      animation    : growBar 1.5s ease;
}

.btn {
      border         : none;
      border-radius  : 12px;
      padding        : 12px 22px;
      font-weight    : 700;
      cursor         : pointer;
      transition     : all 0.3s var(--ease-spring);
      display        : inline-flex;
      justify-content: center;
      align-items    : center;
      position       : relative;
      overflow       : hidden;
}

.btn::before {
      content      : '';
      position     : absolute;
      top          : 50%;
      left         : 50%;
      width        : 0;
      height       : 0;
      border-radius: 50%;
      background   : rgba(255, 255, 255, 0.3);
      transform    : translate(-50%, -50%);
      transition   : width 0.6s, height 0.6s;
}

.btn:hover::before {
      width : 300px;
      height: 300px;
}

.btn:hover {
      transform: translateY(-3px) scale(1.03);
}

.btn:active {
      transform: translateY(-1px) scale(0.98);
}

.btn-primary {
      background: linear-gradient(145deg, var(--sun), #fb8500);
      color     : var(--ink-950);
      box-shadow: 0 10px 20px rgba(251, 133, 0, 0.3);
}

.btn-primary:hover {
      box-shadow: 0 16px 36px rgba(251, 133, 0, 0.45);
      background: linear-gradient(145deg, #fb8500, var(--sun));
}

.btn-secondary {
      background: transparent;
      color     : #ffffff;
      border    : 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
      background  : rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.9);
}

.footer-btn {
      width     : 100%;
      margin-top: 8px;
}

.trust-strip {
      padding      : 42px 0;
      background   : rgba(255, 255, 255, 0.8);
      border-top   : 1px solid var(--line);
      border-bottom: 1px solid var(--line);
}

.trust-title {
      text-align    : center;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color         : var(--ink-500);
      font-size     : 0.8rem;
      margin-bottom : 18px;
}

.brand-logos {
      display        : flex;
      justify-content: center;
      gap            : 20px;
      flex-wrap      : wrap;
}

.brand-logo {
      padding       : 8px 14px;
      border-radius : 999px;
      background    : #ffffff;
      border        : 1px solid var(--line);
      color         : var(--ink-700);
      font-size     : 0.82rem;
      letter-spacing: 0.06em;
      font-weight   : 800;
      transition    : transform 0.28s ease;
}

.brand-logo:hover {
      transform: translateY(-3px);
}

.stats-section {
      padding: 68px 0;
}

.stats-grid {
      display              : grid;
      gap                  : 18px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
      background   : var(--card);
      border       : 1px solid var(--line);
      border-radius: var(--radius-md);
      padding      : 24px;
      box-shadow   : var(--shadow-soft);
      transition   : all 0.4s var(--ease-spring);
}

.stat-card:hover {
      transform   : translateY(-8px) scale(1.03);
      box-shadow  : 0 24px 48px rgba(20, 39, 67, 0.18);
      border-color: var(--sea-soft);
}

.stat-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size  : clamp(2rem, 4vw, 2.8rem);
      color      : var(--sea);
      font-weight: 700;
      transition : transform 0.3s var(--ease-spring);
}

.stat-card:hover .stat-number {
      transform: scale(1.1);
}

.stat-number::after {
      content    : '+';
      margin-left: 2px;
      color      : var(--accent);
}

.stat-label {
      color      : var(--ink-500);
      font-weight: 600;
      margin-top : 6px;
}

.capabilities,
.brands-section,
#products .container,
#about .container,
#contact .container {
      padding: 64px 0;
}

.section-heading {
      max-width    : 70ch;
      margin-bottom: 26px;
}

.section-heading h2 {
      font-family  : 'Space Grotesk', sans-serif;
      font-size    : clamp(1.6rem, 3vw, 2.4rem);
      line-height  : 1.2;
      margin-bottom: 10px;
}

.section-heading p,
.subtitle {
      color: var(--ink-500);
}

.capability-grid {
      display              : grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap                  : 16px;
}

.capability-card {
      padding      : 22px;
      border-radius: var(--radius-md);
      background   : var(--card);
      border       : 1px solid var(--line);
      box-shadow   : var(--shadow-soft);
      transition   : all 0.4s var(--ease-spring);
}

.capability-card:hover {
      transform   : translateY(-10px) scale(1.02);
      box-shadow  : 0 24px 48px rgba(20, 39, 67, 0.18);
      border-color: var(--sea-soft);
}

.capability-card .cap-icon {
      transition: transform 0.4s var(--ease-spring);
}

.capability-card:hover .cap-icon {
      transform: scale(1.15) rotate(-5deg);
}

.capability-card h3 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 8px;
}

.brands-slider {
      position: relative;
      overflow: hidden;
      padding : 0 54px;
}

.brands-container {
      display              : grid;
      grid-template-columns: repeat(6, 1fr);
      transition           : transform 0.5s ease;
}

.brand-card {
      margin         : 8px;
      border-radius  : var(--radius-md);
      background     : #ffffff;
      border         : 1px solid var(--line);
      padding        : 24px;
      min-height     : 170px;
      display        : flex;
      flex-direction : column;
      justify-content: center;
      box-shadow     : var(--shadow-soft);
      transition     : all 0.4s var(--ease-spring);
}

.brand-card:hover {
      transform : translateY(-8px) scale(1.03);
      box-shadow: 0 20px 40px rgba(20, 39, 67, 0.16);
}

.brand-card .brand-card-icon {
      transition: transform 0.4s var(--ease-spring);
}

.brand-card:hover .brand-card-icon {
      transform: scale(1.2) rotate(10deg);
}

.brand-card h3 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 8px;
      color        : var(--sea);
}

.brand-card p {
      color: var(--ink-500);
}

.brand-logo-img-slider {
      width     : 100%;
      height    : 80px;
      object-fit: contain;
      filter    : grayscale(0.3) brightness(1.02);
      transition: all 0.4s var(--ease-spring);
}

.brand-card:hover .brand-logo-img-slider {
      filter   : grayscale(0) brightness(1.1);
      transform: scale(1.08);
}

.slider-btn {
      position     : absolute;
      top          : 50%;
      transform    : translateY(-50%);
      width        : 42px;
      height       : 42px;
      border-radius: 50%;
      border       : 1px solid var(--line);
      background   : #ffffff;
      color        : var(--ink-900);
      font-size    : 1.2rem;
      cursor       : pointer;
      z-index      : 2;
}

.slider-btn.prev {
      left: 0;
}

.slider-btn.next {
      right: 0;
}

.slider-btn:hover:not(:disabled) {
      background: var(--sea);
      color     : #ffffff;
}

.slider-btn:disabled {
      opacity: 0.35;
      cursor : not-allowed;
}

/* ── Brand Partners Section ─────────────────────────────── */
.brand-partners {
      padding      : 54px 0;
      background   : linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(237, 246, 255, 0.85) 100%);
      border-top   : 1px solid var(--line);
      border-bottom: 1px solid var(--line);
}

.brand-partners .section-heading {
      text-align: center;
}

.brand-partners-grid {
      display              : grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap                  : 24px;
      max-width            : 960px;
      margin               : 0 auto;
}

.brand-partner-card {
      background     : #ffffff;
      border         : 1px solid rgba(0, 95, 115, 0.12);
      border-radius  : var(--radius-lg);
      padding        : 32px 20px;
      display        : flex;
      align-items    : center;
      justify-content: center;
      box-shadow     : 0 8px 24px rgba(20, 39, 67, 0.08);
      transition     : all 0.4s var(--ease-spring);
      position       : relative;
      overflow       : hidden;
}

.brand-partner-card:hover {
      transform   : translateY(-12px) scale(1.05);
      box-shadow  : 0 24px 56px rgba(0, 95, 115, 0.22);
      border-color: var(--sea-soft);
}

.brand-partner-logo {
      width     : 100%;
      height    : 80px;
      object-fit: contain;
      filter    : grayscale(0.2) brightness(1.05);
      transition: all 0.4s var(--ease-spring);
}

.brand-partner-card:hover .brand-partner-logo {
      filter   : grayscale(0) brightness(1.1);
      transform: scale(1.1);
}

@media (max-width: 900px) {
      .brand-partners-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
      }
}

@media (max-width: 560px) {
      .brand-partners-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap                  : 16px;
      }

      .brand-partner-card {
            padding: 24px 16px;
      }

      .brand-partner-logo {
            height: 60px;
      }
}

.content-header {
      text-align   : center;
      margin-bottom: 34px;
}

.content-header h1 {
      font-family  : 'Space Grotesk', sans-serif;
      font-size    : clamp(1.8rem, 4vw, 3.1rem);
      line-height  : 1.15;
      margin-bottom: 12px;
}

.products-grid {
      display              : grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap                  : 16px;
      margin-bottom        : 30px;
}

.product-visual-track {
      display              : grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap                  : 18px;
      margin-bottom        : 32px;
}

.product-visual-card {
      background    : linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
      border        : 1px solid rgba(0, 95, 115, 0.15);
      border-radius : var(--radius-lg);
      box-shadow    : 0 12px 36px rgba(32, 65, 107, 0.10);
      overflow      : hidden;
      padding       : 32px 24px;
      display       : flex;
      flex-direction: column;
      align-items   : center;
      text-align    : center;
      gap           : 12px;
      transition    : all 0.4s var(--ease-spring);
      position      : relative;
}

.product-visual-card:hover {
      transform   : translateY(-14px) scale(1.03);
      box-shadow  : 0 28px 64px rgba(0, 95, 115, 0.24);
      border-color: var(--sea-soft);
}

.product-visual-card .product-visual-icon {
      transition: transform 0.4s var(--ease-spring);
}

.product-visual-card:hover .product-visual-icon {
      transform: scale(1.15) rotate(5deg);
}

.product-visual-card:nth-child(2) {
      animation-delay: -2.1s;
}

.product-visual-card:nth-child(3) {
      animation-delay: -4.2s;
}

.product-visual-image {
      width       : 100%;
      aspect-ratio: 16 / 9;
      object-fit  : cover;
      display     : block;
}

.product-visual-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      color      : var(--sea);
      font-size  : 1.15rem;
      font-weight: 700;
      margin     : 0;
}

.product-visual-card p {
      color      : var(--ink-500);
      font-size  : 0.94rem;
      line-height: 1.5;
      margin     : 0;
}

.product-category {
      background   : #ffffff;
      border       : 1px solid var(--line);
      border-radius: var(--radius-md);
      padding      : 24px;
      box-shadow   : var(--shadow-soft);
}

.product-category h3 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 10px;
      color        : var(--sea);
}

.product-category>p {
      color        : var(--ink-500);
      margin-bottom: 12px;
}

.product-list {
      list-style: none;
}

.product-list li {
      position    : relative;
      padding-left: 16px;
      color       : var(--ink-700);
      margin      : 5px 0;
}

.product-list li::before {
      content : '•';
      position: absolute;
      left    : 0;
      color   : var(--accent);
}

.bundles {
      background   : #ffffff;
      border-radius: var(--radius-lg);
      border       : 1px solid var(--line);
      box-shadow   : var(--shadow-soft);
      padding      : 26px;
      margin-bottom: 28px;
}

.bundles h2 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 14px;
}

.bundle-grid {
      display              : grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap                  : 14px;
}

.bundle-card {
      border-radius: var(--radius-md);
      border       : 1px solid var(--line);
      background   : var(--mist-50);
      padding      : 18px;
}

.bundle-card h3 {
      font-size    : 1rem;
      margin-bottom: 6px;
      font-family  : 'Space Grotesk', sans-serif;
}

.bundle-card p {
      color    : var(--ink-500);
      font-size: 0.95rem;
}

.cta-box {
      border-radius: var(--radius-lg);
      padding      : 38px 28px;
      background   : linear-gradient(125deg, var(--sea) 0%, #0a9396 100%);
      color        : #ffffff;
}

.cta-box h3 {
      font-family  : 'Space Grotesk', sans-serif;
      font-size    : clamp(1.3rem, 2.4vw, 2rem);
      margin-bottom: 10px;
}

.cta-box p {
      max-width    : 70ch;
      color        : rgba(255, 255, 255, 0.9);
      margin-bottom: 16px;
}

.about-content {
      display: grid;
      gap    : 26px;
}

.impact-gallery {
      display              : grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap                  : 16px;
      margin-bottom        : 18px;
}

.impact-card {
      background           : #ffffff;
      border               : 1px solid var(--line);
      border-radius        : var(--radius-lg);
      box-shadow           : var(--shadow-soft);
      padding              : 16px;
      display              : grid;
      grid-template-columns: 84px 1fr;
      gap                  : 16px;
      align-items          : center;
}

.impact-image {
      width        : 100%;
      border-radius: 14px;
      object-fit   : cover;
      aspect-ratio : 4 / 3;
}

.btn:focus-visible,
.nav-link:focus-visible,
.footer-column a:focus-visible,
.footer-social a:focus-visible,
.slider-btn:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
      outline       : 3px solid rgba(255, 208, 110, 0.72);
      outline-offset: 2px;
}

.impact-card h3 {
      font-family  : 'Space Grotesk', sans-serif;
      color        : var(--sea);
      margin-bottom: 6px;
}

.impact-card p {
      color: var(--ink-500);
}

.about-block,
.milestones {
      background   : #ffffff;
      border-radius: var(--radius-lg);
      border       : 1px solid var(--line);
      box-shadow   : var(--shadow-soft);
      padding      : 26px;
}

.about-block h2,
.milestones h2 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 8px;
}

.about-block p {
      color: var(--ink-700);
}

.values-grid {
      display              : grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap                  : 14px;
}

.value-card {
      background   : #ffffff;
      border       : 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow   : var(--shadow-soft);
      padding      : 20px;
}

.value-card h3 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 7px;
      color        : var(--sea);
}

.value-card p {
      color: var(--ink-500);
}

.milestone-list {
      display: grid;
      gap    : 12px;
}

.milestone-list article {
      display              : grid;
      grid-template-columns: 80px 1fr;
      gap                  : 10px;
      padding              : 12px;
      border-radius        : 12px;
      border               : 1px solid var(--line);
      background           : var(--mist-50);
}

.milestone-list span {
      display        : inline-flex;
      justify-content: center;
      align-items    : center;
      border-radius  : 999px;
      background     : var(--sun-soft);
      color          : var(--ink-950);
      font-weight    : 800;
      font-family    : 'Space Grotesk', sans-serif;
}

.contact-layout {
      display              : grid;
      grid-template-columns: 1.4fr 0.9fr;
      gap                  : 18px;
}

.contact-form-wrapper,
.info-card {
      background   : #ffffff;
      border       : 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow   : var(--shadow-soft);
}

.contact-form-wrapper {
      padding: 24px;
}

.contact-form {
      display: grid;
      gap    : 16px;
}

.form-row {
      display              : grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap                  : 12px;
}

.form-group {
      display: grid;
      gap    : 6px;
}

.form-group label {
      font-weight: 700;
      font-size  : 0.9rem;
      color      : var(--ink-700);
}

.form-group input,
.form-group select,
.form-group textarea {
      border       : 1px solid var(--line);
      border-radius: 10px;
      padding      : 11px 12px;
      font         : inherit;
      color        : var(--ink-900);
      background   : #ffffff;
      transition   : border-color 0.24s ease, box-shadow 0.24s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      outline     : none;
      border-color: var(--sea-soft);
      box-shadow  : 0 0 0 3px rgba(10, 147, 150, 0.16);
}

.btn-full {
      width: 100%;
}

.btn:disabled {
      opacity: 0.72;
      cursor : not-allowed;
}

.form-status {
      min-height : 24px;
      color      : var(--sea);
      font-weight: 600;
      font-size  : 0.92rem;
}

.form-status.is-success {
      color: var(--sea);
}

.form-status.is-error {
      color: #b42318;
}

.contact-info {
      display: grid;
      gap    : 12px;
}

.info-card {
      padding: 18px;
}

.info-card h3 {
      font-family  : 'Space Grotesk', sans-serif;
      margin-bottom: 6px;
      color        : var(--sea);
}

.info-card p {
      color: var(--ink-600, #4b5563);
}

.footer {
      margin-top: 18px;
      background: linear-gradient(155deg, #102038 0%, #0a2f4f 100%);
      color     : #dbeafe;
      padding   : 60px 0 24px;
}

.footer-grid {
      display              : grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap                  : 16px;
      margin-bottom        : 30px;
}

.footer-column h3 {
      font-family  : 'Space Grotesk', sans-serif;
      color        : #ffffff;
      margin-bottom: 10px;
}

.footer-column p {
      font-size: 0.92rem;
      color    : rgba(219, 234, 254, 0.9);
}

.footer-column ul {
      list-style: none;
      display   : grid;
      gap       : 6px;
}

.footer-column a {
      text-decoration: none;
      color          : rgba(219, 234, 254, 0.9);
}

.footer-column a:hover {
      color: var(--sun-soft);
}

.footer-bottom {
      border-top     : 1px solid rgba(219, 234, 254, 0.2);
      padding-top    : 16px;
      display        : flex;
      justify-content: space-between;
      gap            : 12px;
      align-items    : center;
      flex-wrap      : wrap;
}

.footer-social {
      display: flex;
      gap    : 8px;
}

.footer-social a {
      width          : 34px;
      height         : 34px;
      border-radius  : 50%;
      display        : inline-flex;
      align-items    : center;
      justify-content: center;
      text-decoration: none;
      font-weight    : 700;
      border         : 1px solid rgba(219, 234, 254, 0.35);
      color          : #ffffff;
}

.footer-social a:hover {
      border-color: var(--sun-soft);
      color       : var(--sun-soft);
}

.reveal-up {
      opacity   : 0;
      transform : translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
      opacity  : 1;
      transform: translateY(0);
}

.parallax-card {
      will-change: transform;
}

.delay-1 {
      transition-delay: 0.12s;
}

.delay-2 {
      transition-delay: 0.24s;
}

.delay-3 {
      transition-delay: 0.36s;
}

@keyframes floatOrb {

      0%,
      100% {
            transform: translateY(0) scale(1);
      }

      50% {
            transform: translateY(-18px) scale(1.04);
      }
}

@keyframes growBar {
      from {
            width: 0;
      }

      to {
            width: 68%;
      }
}

@keyframes floatCard {

      0%,
      100% {
            transform: translateY(0);
      }

      50% {
            transform: translateY(-7px);
      }
}

@keyframes moveDash {
      to {
            stroke-dashoffset: -14;
      }
}

@media (max-width: 1080px) {

      .hero-grid,
      .contact-layout {
            grid-template-columns: 1fr;
      }

      .route-ribbon {
            flex-wrap: wrap;
      }

      .route-ribbon svg {
            min-width: 100%;
      }

      .capability-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .values-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stats-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .bundle-grid,
      .footer-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .visual-grid,
      .product-visual-track,
      .impact-gallery {
            grid-template-columns: 1fr;
      }

      .impact-card {
            grid-template-columns: 1fr;
      }

      .impact-card .impact-icon {
            margin-bottom: 2px;
      }
}

@media (max-width: 760px) {
      /* .navbar {
            padding: 12px 0;
      } */

      /* .nav-shell {
            flex-direction: column;
            align-items   : flex-start;
      }

      .nav-menu {
            width         : 100%;
            overflow-x    : auto;
            padding-bottom: 2px;
            gap           : 18px;
      } */

      .hero {
            padding-top: 130px;
      }

      .products-grid,
      .capability-grid,
      .bundle-grid,
      .values-grid,
      .footer-grid,
      .stats-grid,
      .form-row {
            grid-template-columns: 1fr;
      }

      .brands-slider {
            padding: 0 42px;
      }

      .tab-content {
            padding-top: 96px;
      }

      .milestone-list article {
            grid-template-columns: 1fr;
      }

      .milestone-list span {
            width    : max-content;
            min-width: 80px;
            padding  : 5px 12px;
      }
}

@media (prefers-reduced-motion: reduce) {
      * {
            animation : none !important;
            transition: none !important;
      }

      .reveal-up {
            opacity  : 1;
            transform: none;
      }
}