:root {
        --teal-dark: #004f5c;
        --teal: #006878;
        --teal-soft: #d8eff1;
        --orange: #f89000;
        --gray: #53666c;
        --surface: #f1f4f9;
        --radius: 16px;
        --primary: #006878;
        --primary-dark: #004f5c;
        --primary-light: #d8eff1;
        --accent: #f89000;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
        color: #0f1d2c;
        background-color: #f0f4f8;
        background-image: radial-gradient(at 0% 0%, rgba(0, 104, 120, 0.08) 0px, transparent 50%),
          radial-gradient(at 100% 100%, rgba(248, 144, 0, 0.05) 0px, transparent 50%);
      }

      body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: env(safe-area-inset-top);
        background: #f89000;
        z-index: 80;
        pointer-events: none;
      }

      .promo-bar {
        background: #f89000;
        color: #4a3100;
        min-height: 40px;
        display: flex;
        align-items: center;
        overflow: hidden;
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 60;
      }

      .promo-bar-inner {
        width: 100%;
        margin: 0 auto;
        padding: 0 6vw;
        display: flex;
        align-items: center;
        gap: 28px;
      }

      .promo-label {
        flex: 0 0 auto;
        font-size: 0.82rem;
        font-weight: 500;
        line-height: 1;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .promo-label strong {
        font-weight: 600;
      }

      .promo-ticker {
        flex: 1;
        min-width: 0;
        position: relative;
        overflow: hidden;
      }

      .promo-ticker::before,
      .promo-ticker::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 56px;
        z-index: 2;
        pointer-events: none;
      }

      .promo-ticker::before {
        left: 0;
        background: linear-gradient(to right, #f89000, rgba(248, 144, 0, 0));
      }

      .promo-ticker::after {
        right: 0;
        background: linear-gradient(to left, #f89000, rgba(248, 144, 0, 0));
      }

      .promo-track {
        display: inline-flex;
        align-items: center;
        gap: 32px;
        white-space: nowrap;
        animation: promoScroll 600s linear infinite;
        will-change: transform;
      }

      .promo-track span {
        font-size: 0.82rem;
        color: rgba(74, 49, 0, 0.78);
        font-weight: 400;
      }

      @keyframes promoScroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      header {
        padding: 18px 6vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: var(--promo-bar-height, 40px);
        background: #fefefe;
        border-bottom: 1px solid transparent;
        z-index: 50;
        gap: 32px;
        box-shadow: none;
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      }

      html {
        background: #f89000;
      }

      header,
      main,
      section,
      footer {
        background-clip: padding-box;
      }

      header.is-scrolled {
        background: #fefefe;
        border-bottom-color: rgba(15, 29, 44, 0.045);
        box-shadow: 0 8px 24px rgba(15, 29, 44, 0.035);
      }

      header::before,
      header::after {
        content: none;
      }

      .logo-lockup {
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
      }

      .logo-lockup img {
        width: 42px;
        height: 42px;
        object-fit: contain;
      }

      .logo-text {
        color: var(--primary);
        font-size: 1.15rem;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
      }

      .mobile-menu-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(0, 104, 120, 0.16);
        border-radius: 8px;
        background: #ffffff;
        color: var(--primary-dark);
        cursor: pointer;
      }

      .menu-icon {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .menu-icon-close {
        display: none;
      }

      header.menu-open .menu-icon-open {
        display: none;
      }

      header.menu-open .menu-icon-close {
        display: block;
      }

      nav {
        display: flex;
      }

      .nav-links {
        list-style: none;
        display: flex;
        gap: 24px;
        margin: 0;
        padding: 0;
        align-items: center;
      }

      .nav-links > li {
        position: relative;
      }

      .nav-links a,
      .nav-trigger {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        font-size: 0.92rem;
        transition: color 0.2s ease;
        padding: 6px 8px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 0;
        background: transparent;
        font-family: inherit;
        cursor: pointer;
      }

      .nav-links .nav-arrow {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
        margin-left: 4px;
      }

      .nav-links a:hover,
      .nav-trigger:hover {
        color: var(--teal-dark);
      }

      .nav-links .has-dropdown {
        position: relative;
      }

      .nav-links .dropdown {
        list-style: none;
        margin: 0;
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        background: white;
        border-radius: 18px;
        border: 1px solid rgba(0, 104, 120, 0.1);
        box-shadow: 0 25px 45px rgba(15, 29, 44, 0.12);
        padding: 18px;
        min-width: 820px;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, 10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 50;
      }

      .nav-links .mega-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
      }

      .nav-links .dropdown::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 50%;
        width: 14px;
        height: 14px;
        background: #ffffff;
        border-left: 1px solid rgba(0, 104, 120, 0.1);
        border-top: 1px solid rgba(0, 104, 120, 0.1);
        transform: translateX(-50%) rotate(45deg);
      }

      .nav-links .dropdown li {
        margin: 0;
      }

      .nav-links .dropdown a {
        width: 100%;
        padding: 12px;
        color: var(--teal-dark);
        border-radius: 12px;
      }

      .nav-links .dropdown a:hover {
        color: var(--primary-dark);
      }

      .mega-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .mega-feature-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--primary-light);
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 38px;
      }

      .mega-feature-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .mega-item-copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        min-width: 0;
      }

      .mega-item-icon {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0.58;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .mega-item:hover .mega-item-icon {
        opacity: 1;
        transform: translateX(3px);
      }

      .mega-item:hover .mega-item-title,
      .mega-item:hover .mega-item-desc,
      .mega-item:hover .mega-feature-icon,
      .mega-item:hover .mega-item-icon {
        color: var(--primary);
      }

      .mega-item.is-disabled {
        color: #64748b;
      }

      .mega-item.is-disabled .mega-feature-icon {
        background: #eef2f7;
        color: #94a3b8;
      }

      .mega-item.is-disabled .mega-item-title {
        color: #64748b;
      }

      .mega-item.is-disabled .mega-item-desc,
      .mega-item.is-disabled .mega-item-icon {
        color: #94a3b8;
      }

      .mega-item-title {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-dark);
        font-size: 0.92rem;
        font-weight: 800;
      }

      .mega-item-title em {
        padding: 3px 7px;
        border-radius: 999px;
        background: #e2e8f0;
        color: #64748b;
        font-size: 0.65rem;
        font-style: normal;
        font-weight: 800;
      }

      .mega-item-desc {
        color: rgba(15, 29, 44, 0.66);
        font-size: 0.78rem;
        font-weight: 500;
        line-height: 1.45;
      }

      .nav-links .has-dropdown:hover > .nav-trigger,
      .nav-links .has-dropdown:hover > .nav-trigger .nav-arrow,
      .nav-links .has-dropdown.open > .nav-trigger,
      .nav-links .has-dropdown.open > .nav-trigger .nav-arrow,
      .nav-links .has-dropdown:focus-within > .nav-trigger {
        color: var(--teal-dark);
      }

      .nav-links .has-dropdown:hover > .nav-trigger .nav-arrow,
      .nav-links .has-dropdown.open > .nav-trigger .nav-arrow {
        transform: rotate(-135deg);
      }

      .nav-links .has-dropdown:hover .dropdown,
      .nav-links .has-dropdown.open .dropdown,
      .nav-links .has-dropdown:focus-within .dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 18px;
      }

      .hero {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 48px;
        padding: 80px 6vw 70px;
        background: #fefefe;
        align-items: stretch;
        min-height: calc(100vh - 120px);
      }

      .hero-left {
        display: flex;
        flex-direction: column;
        gap: 16px;
        opacity: 1;
        transform: translateY(0);
        animation: heroTextDrop 1.4s cubic-bezier(0.22, 1, 0.36, 1);
        animation-fill-mode: both;
      }
      .hero h1 {
        font-size: clamp(2.5rem, 5vw, 3.8rem);
        margin: 0 0 24px;
        color: var(--teal-dark);
        line-height: 1.15;
      }

      .hero p {
        font-size: 1.1rem;
        margin: 0 0 32px;
        color: var(--gray);
      }

      .hero-metrics {
        padding: 68px 6vw 82px;
        position: relative;
        z-index: 5;
        background: #fefefe;
      }

      .hero-metrics-header {
        max-width: 760px;
        margin: 0 auto 42px;
        text-align: center;
      }

      .hero-metrics-header span {
        display: inline-block;
        margin-bottom: 8px;
        color: var(--accent);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .hero-metrics-header h2 {
        margin: 0;
        font-size: clamp(1.55rem, 3vw, 2.25rem);
        line-height: 1.18;
      }

      .hero-metrics-header p {
        margin: 14px auto 0;
        max-width: 650px;
        color: #64748b;
        font-size: 1rem;
        line-height: 1.7;
      }

      .hero-metrics-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 32px;
        max-width: 1120px;
        margin: 0 auto;
      }

      .hero-metric-card {
        background: transparent;
        border-radius: 18px;
        border: 0;
        box-shadow: none;
        min-height: 100%;
        transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
        position: relative;
        overflow: visible;
        opacity: 0;
        transform: translateY(96px) rotate(0deg);
        isolation: isolate;
        z-index: 0;
      }

      .hero-metrics.metrics-visible .hero-metric-card {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
      }

      .hero-metrics.metrics-visible .hero-metric-card:nth-child(1) {
        transition-delay: 0s;
      }

      .hero-metrics.metrics-visible .hero-metric-card:nth-child(2) {
        transition-delay: 0.18s;
      }

      .hero-metrics.metrics-visible .hero-metric-card:nth-child(3) {
        transition-delay: 0.36s;
      }

      .hero-metrics.metrics-visible .hero-metric-card:nth-child(4) {
        transition-delay: 0.54s;
      }

      .hero-metrics.metrics-visible .hero-metric-card:nth-child(5) {
        transition-delay: 0.72s;
      }

      .hero-metrics.metrics-visible .hero-metric-card:nth-child(6) {
        transition-delay: 0.9s;
      }

      .hero-metric-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(0, 104, 120, 0.16), rgba(248, 144, 0, 0.18));
        border: 1px solid rgba(0, 104, 120, 0.08);
        box-shadow: 0 18px 36px rgba(15, 29, 44, 0.08);
        transform: translate(12px, 14px) rotate(-2.8deg);
        transform-origin: center;
        transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.35s ease, box-shadow 0.35s ease;
        opacity: 0.9;
        z-index: 0;
      }

      .metric-card-surface {
        background: linear-gradient(110deg, #ffffff 0%, #ffffff 36%, #f7fbfb 48%, #ffffff 60%, #ffffff 100%);
        background-size: 220% 100%;
        border-radius: inherit;
        border: 1px solid rgba(0, 104, 120, 0.1);
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
        min-height: 100%;
        padding: 30px;
        box-shadow: 0 18px 46px rgba(15, 29, 44, 0.07);
        position: relative;
        transform: translate(0, 0) rotate(0deg);
        transform-origin: center;
        transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
        z-index: 1;
        overflow: hidden;
      }

      .hero-metric-card:hover {
        transform: translateY(0) rotate(0deg);
      }

      .hero-metrics.metrics-visible .hero-metric-card:hover {
        transition-delay: 0s;
      }

      .hero-metric-card:hover::before {
        opacity: 1;
        transform: translate(16px, 18px) rotate(3.8deg);
        box-shadow: 0 24px 46px rgba(15, 29, 44, 0.11);
      }

      .hero-metric-card:hover .metric-card-surface {
        transform: translate(-8px, -10px) rotate(-1.4deg);
        border-color: rgba(0, 104, 120, 0.2);
        box-shadow: 0 24px 58px rgba(0, 79, 92, 0.12);
      }

      .metric-bg-icon {
        position: absolute;
        right: -18px;
        bottom: -26px;
        width: 150px;
        height: 150px;
        fill: none;
        stroke: var(--primary);
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0.08;
        pointer-events: none;
        transform: rotate(-8deg);
      }

      .hero-metric-card h3 {
        margin: 0;
        max-width: 420px;
        color: var(--primary-dark);
        font-size: clamp(1.25rem, 2vw, 1.6rem);
        line-height: 1.28;
        letter-spacing: 0;
        position: relative;
        z-index: 1;
      }

      .hero-metric-card p {
        margin: 0;
        max-width: 460px;
        color: #64748b;
        font-size: 0.96rem;
        line-height: 1.7;
        position: relative;
        z-index: 1;
      }

      .metric-feature-list {
        display: grid;
        gap: 10px;
        margin: 2px 0 0;
        padding: 0;
        list-style: none;
        position: relative;
        z-index: 1;
      }

      .metric-feature-list li {
        position: relative;
        padding-left: 24px;
        color: #334155;
        font-size: 0.92rem;
        line-height: 1.45;
      }

      .metric-feature-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.52em;
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(248, 144, 0, 0.13);
      }

      .feature-explore-cta {
        display: flex;
        justify-content: center;
        margin-top: 46px;
      }

      .feature-explore-cta .btn {
        min-height: 54px;
        padding: 15px 28px;
        font-weight: 500;
      }

      h2 {
        font-weight: 800;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
      }

      .subtitle {
        font-size: 1.15rem;
        line-height: 1.7;
        color: #526071;
      }

      .cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }

      .hero-cta {
        display: flex;
        gap: 14px;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        max-width: 520px;
      }

      .hero-cta .btn {
        min-height: 56px;
        padding: 16px 30px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        letter-spacing: 0;
        box-shadow: none;
      }

      .hero-cta .btn-primary {
        background: var(--primary-dark);
        color: #ffffff;
        border: 1px solid var(--primary-dark);
      }

      .hero-cta .btn-primary:hover {
        background: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 12px 24px rgba(0, 104, 120, 0.18);
      }

      .hero-cta .btn-secondary {
        background: #ffffff;
        color: var(--primary-dark);
        border: 1px solid rgba(0, 79, 92, 0.16);
      }

      .hero-cta .btn-secondary:hover {
        background: #f7fbfb;
        border-color: rgba(0, 104, 120, 0.28);
        box-shadow: 0 12px 24px rgba(15, 29, 44, 0.06);
      }

      .btn {
        padding: 12px 28px;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: none;
        font-size: 0.95rem;
      }

      .btn-icon {
        width: 1.05em;
        height: 1.05em;
        flex: 0 0 auto;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .btn-primary {
        background: var(--primary);
        color: var(--surface);
        box-shadow: 0 4px 12px rgba(0, 104, 120, 0.22);
      }

      .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0, 104, 120, 0.28);
      }

      .btn-secondary {
        background: transparent;
        color: var(--primary);
        border: 2px solid rgba(0, 104, 120, 0.16);
      }

      .btn-secondary:hover {
        border-color: var(--primary);
        background: var(--primary-light);
      }

      .btn-ghost {
        background: transparent;
        border: 1px solid rgba(0, 104, 120, 0.3);
        color: var(--primary-dark);
        padding: 12px 28px;
      }

      .btn-ghost:hover {
        border-color: var(--primary-dark);
        background: rgba(0, 104, 120, 0.08);
      }

      .btn-white {
        background: #ffffff;
        color: var(--primary-dark);
        border: 1px solid rgba(0, 104, 120, 0.14);
        box-shadow: 0 12px 26px rgba(15, 29, 44, 0.08);
      }

      .btn-white:hover {
        background: #ffffff;
        border-color: rgba(0, 104, 120, 0.24);
        box-shadow: 0 16px 34px rgba(15, 29, 44, 0.12);
      }

      .feature-explore-cta .btn-white {
        position: relative;
        overflow: hidden;
      }

      .feature-explore-cta .btn-white::after {
        content: '';
        position: absolute;
        top: -40%;
        bottom: -40%;
        left: -34%;
        width: 28%;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.92), transparent);
        transform: skewX(-18deg);
        animation: buttonShine 3.8s ease-in-out infinite;
        pointer-events: none;
      }

      @keyframes buttonShine {
        0%,
        46% {
          left: -34%;
        }
        72%,
        100% {
          left: 118%;
        }
      }

      .btn-large {
        font-size: 1.05rem;
        padding: 16px 32px;
      }

      .btn:hover {
        transform: translateY(-3px);
      }

      .hero-claim {
        font-size: clamp(2.2rem, 4vw, 3.25rem);
        font-weight: 800;
        margin: 0;
        font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
        color: #10252b;
        letter-spacing: 0;
        line-height: 1.08;
      }

      .hero-kicker {
        display: block;
        color: var(--primary-dark);
        font-size: clamp(1.75rem, 3.3vw, 2.55rem);
        font-weight: 700;
        margin-bottom: 8px;
      }

      .hero-claim .hero-highlight {
        color: var(--primary-dark);
        display: block;
        font-size: clamp(1.7rem, 3.1vw, 2.35rem);
        font-weight: 700;
        line-height: 1.18;
        margin-top: 12px;
        position: relative;
        width: fit-content;
      }

      .hero-claim .hero-highlight::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.05em;
        height: 0.22em;
        background: rgba(248, 144, 0, 0.22);
        border-radius: 999px;
        z-index: -1;
      }

      .hero-subtitle {
        font-size: clamp(1rem, 2.4vw, 1.2rem);
        color: rgba(15, 29, 44, 0.85);
        margin: 0 0 4px;
        font-weight: 500;
        line-height: 1.6;
      }

      .hero .hero-subtitle {
        margin-bottom: 4px;
      }

      .hero-subtitle .hero-brand {
        color: var(--accent);
        font-weight: 600;
      }

      .hero-dynamic {
        display: block;
        position: relative;
        height: 1.28em;
        overflow: hidden;
        margin: 0 0 6px;
        font-size: clamp(2.35rem, 5vw, 4.35rem);
        line-height: 1.24;
      }

      .hero-dynamic-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        animation: slideHero 22s cubic-bezier(0.7, 0, 0.3, 1) infinite;
      }

      .hero-dynamic-inner span {
        display: block;
        font-weight: 800;
        font-size: inherit;
        line-height: 1.24;
        min-height: 1.28em;
        padding-bottom: 0.04em;
        color: transparent;
        background: linear-gradient(100deg, var(--primary-dark) 0%, var(--primary) 58%, var(--accent) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      @keyframes slideHero {
        0%,
        6% {
          transform: translateY(0);
        }
        9%,
        15% {
          transform: translateY(calc(-1 * 1.28em));
        }
        18%,
        24% {
          transform: translateY(calc(-2 * 1.28em));
        }
        27%,
        33% {
          transform: translateY(calc(-3 * 1.28em));
        }
        36%,
        42% {
          transform: translateY(calc(-4 * 1.28em));
        }
        45%,
        51% {
          transform: translateY(calc(-5 * 1.28em));
        }
        54%,
        60% {
          transform: translateY(calc(-6 * 1.28em));
        }
        63%,
        69% {
          transform: translateY(calc(-7 * 1.28em));
        }
        72%,
        78% {
          transform: translateY(calc(-8 * 1.28em));
        }
        81%,
        87% {
          transform: translateY(calc(-9 * 1.28em));
        }
        90%,
        96% {
          transform: translateY(calc(-10 * 1.28em));
        }
        100% {
          transform: translateY(0);
        }
      }

      @keyframes heroZoom {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.08);
        }
        100% {
          transform: scale(1);
        }
      }

      @keyframes heroPop {
        0% {
          transform: scale(0.8);
          opacity: 0;
        }
        45% {
          transform: scale(1.08);
          opacity: 0.95;
        }
        70% {
          transform: scale(0.97);
          opacity: 1;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }

      @keyframes planSpotlight {
        0% {
          transform: scale(1) rotate(0deg);
        }
        15% {
          transform: scale(1.1) rotate(0deg);
        }
        25% {
          transform: scale(1.05) rotate(-4deg);
        }
        35% {
          transform: scale(1.05) rotate(4deg);
        }
        45% {
          transform: scale(1.03) rotate(-3deg);
        }
        55% {
          transform: scale(1.03) rotate(3deg);
        }
        70% {
          transform: scale(1.01) rotate(-1.5deg);
        }
        85% {
          transform: scale(1.01) rotate(1.5deg);
        }
        100% {
          transform: scale(1) rotate(0deg);
        }
      }

      .hero-card {
        background: white;
        border-radius: var(--radius);
        padding: 32px;
        box-shadow: 0 15px 40px rgba(33, 48, 73, 0.12);
        border: 1px solid rgba(22, 128, 140, 0.08);
      }

      .hero-card h3 {
        margin-top: 0;
        color: var(--teal);
      }

      .hero-card ul {
        list-style: none;
        padding: 0;
        margin: 24px 0 0;
      }

      .hero-card li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        color: var(--gray);
      }

      .chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(248, 144, 0, 0.15);
        color: var(--orange);
        font-weight: 600;
        font-size: 0.9rem;
      }

      .section {
        padding: 60px 6vw;
        background: white;
        position: relative;
        overflow: hidden;
      }

      .section.alt {
        background: var(--surface);
      }

      .section h2 {
        text-align: center;
        font-size: 2.2rem;
        margin: 0 0 16px;
        color: var(--teal-dark);
      }

      .section p.subtitle {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 48px;
        color: var(--gray);
        font-size: 1.05rem;
      }

      .hero-visual {
        position: relative;
        border-radius: calc(var(--radius) * 1.2);
        overflow: hidden;
        align-self: stretch;
        display: flex;
        align-items: flex-end;
        margin-top: 0;
      }

      .hero-visual img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
      }

      .hero-indicator {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 32px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 104, 120, 0.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--teal-dark);
        text-decoration: none;
        font-size: 1.5rem;
        box-shadow: 0 20px 45px rgba(15, 29, 44, 0.25);
        z-index: 60;
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .hero-indicator.hide {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, 12px);
      }

      .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        animation: heroPop 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .feature-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        align-items: center;
      }

      .feature-image,
      .feature-content {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.9s ease, transform 0.9s ease;
      }

      .feature-content {
        transition-duration: 1.1s;
        transition-delay: 0.1s;
      }

      .feature-section.show .feature-image,
      .feature-section.show .feature-content {
        opacity: 1;
        transform: translateY(0);
      }

      .feature-image {
        border-radius: 16px;
        overflow: hidden;
      }

      .feature-image img {
        border-radius: 16px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .feature-content h3 {
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
        margin: 0 0 12px;
        color: var(--teal-dark);
        font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
        letter-spacing: -0.015em;
      }

      .feature-content p {
        margin: 0 0 18px;
        color: rgba(0, 79, 92, 0.85);
        font-size: clamp(1rem, 2.4vw, 1.15rem);
        line-height: 1.65;
      }

      .feature-quote {
        margin-top: 1rem;
        padding-left: 1rem;
        border-left: 3px solid var(--accent);
        font-style: italic;
        color: #64748b;
      }

      .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .feature-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 14px;
        font-weight: 500;
        color: #334155;
        line-height: 1.5;
      }

      .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 2px;
        height: 20px;
        width: 20px;
        background: var(--primary);
        color: white;
        font-size: 12px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 104, 120, 0.3);
      }

      .feature-eyebrow {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent);
        background: rgba(248, 144, 0, 0.1);
        padding: 6px 14px;
        border-radius: 4px;
        display: inline-block;
        margin-bottom: 16px;
        border: 1px solid rgba(248, 144, 0, 0.2);
      }

      .section-header-card {
        margin: 0 auto 40px;
        text-align: center;
        padding: 48px 6vw;
        border-radius: 32px;
        background: linear-gradient(135deg, rgba(0, 104, 120, 0.08), rgba(248, 144, 0, 0.08));
        border: 1px solid rgba(0, 104, 120, 0.12);
        box-shadow: 0 40px 80px rgba(15, 29, 44, 0.12);
        font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
      }

      .section-header .eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: rgba(0, 79, 92, 0.7);
        margin: 0 0 8px;
        display: inline-block;
      }
      .section-header-card h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin: 0 0 16px;
        font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
        font-weight: 700;
        color: var(--teal-dark);
        letter-spacing: -0.02em;
      }

      .section-header-card .subtitle {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        color: rgba(15, 29, 44, 0.85);
        line-height: 1.6;
        font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
      }

      .integration-header {
        position: relative;
        overflow: hidden;
      }

      .integration-stage {
        position: relative;
        max-width: 1020px;
        min-height: 520px;
        margin: 42px auto 0;
        padding: 34px;
        border-radius: 34px;
        border: 1px solid rgba(0, 104, 120, 0.12);
        background:
          radial-gradient(circle at 50% 44%, rgba(0, 104, 120, 0.18), transparent 24%),
          radial-gradient(circle at 18% 18%, rgba(248, 144, 0, 0.14), transparent 24%),
          radial-gradient(circle at 88% 76%, rgba(0, 104, 120, 0.1), transparent 22%),
          linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(246, 251, 252, 0.62));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 34px 70px rgba(15, 29, 44, 0.1);
        overflow: hidden;
      }

      .integration-stage::before {
        content: '';
        position: absolute;
        inset: 58px 90px;
        border: 1px dashed rgba(0, 104, 120, 0.18);
        border-radius: 999px;
        pointer-events: none;
      }

      .integration-stage::after {
        content: '';
        position: absolute;
        inset: 128px 250px;
        border: 1px dashed rgba(248, 144, 0, 0.26);
        border-radius: 999px;
        pointer-events: none;
      }

      .integration-hub {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 4;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        width: 236px;
        min-height: 92px;
        padding: 18px 22px 18px 18px;
        border-radius: 24px;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        color: #ffffff;
        box-shadow: 0 26px 54px rgba(0, 79, 92, 0.28);
        transform: translate(-50%, -50%);
      }

      .integration-hub::before {
        content: '';
        position: absolute;
        inset: -16px;
        border-radius: 30px;
        border: 1px solid rgba(0, 104, 120, 0.16);
        background: rgba(255, 255, 255, 0.32);
        z-index: -1;
      }

      .integration-hub-logo {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .integration-hub-logo img {
        width: 38px;
        height: 38px;
        object-fit: contain;
      }

      .integration-hub strong,
      .integration-hub small {
        display: block;
        text-align: left;
        line-height: 1.1;
      }

      .integration-hub small {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.74rem;
        font-weight: 500;
      }

      .integration-logo-cloud {
        position: absolute;
        inset: 0;
        z-index: 2;
      }

      .integration-logo-card {
        position: absolute;
        width: 206px;
        min-height: 76px;
        padding: 11px 12px;
        border-radius: 20px;
        border: 1px solid rgba(0, 104, 120, 0.1);
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 18px 34px rgba(15, 29, 44, 0.09);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        overflow: hidden;
        animation: integrationFloat 5.8s ease-in-out infinite;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        will-change: transform;
      }

      .integration-logo-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 104, 120, 0.06), transparent 58%);
        opacity: 0.8;
        pointer-events: none;
      }

      .integration-logo-card::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, rgba(0, 104, 120, 0), rgba(0, 104, 120, 0.28));
        pointer-events: none;
      }

      .integration-logo-card.is-active {
        border-color: rgba(0, 104, 120, 0.16);
      }

      .integration-logo-card.is-pending {
        border-color: rgba(100, 116, 139, 0.14);
        background: linear-gradient(180deg, rgba(248, 250, 252, 0.76), rgba(241, 245, 249, 0.62));
        box-shadow: 0 10px 22px rgba(100, 116, 139, 0.06);
      }

      .integration-logo-card:hover {
        border-color: rgba(0, 104, 120, 0.24);
        box-shadow: 0 22px 42px rgba(0, 79, 92, 0.12);
      }

      .integration-logo-card:nth-child(1) {
        left: 8%;
        top: 11%;
      }

      .integration-logo-card:nth-child(2) {
        right: 8%;
        top: 11%;
      }

      .integration-logo-card:nth-child(3) {
        left: 3%;
        top: 42%;
      }

      .integration-logo-card:nth-child(4) {
        right: 3%;
        top: 42%;
      }

      .integration-logo-card:nth-child(5) {
        left: 12%;
        bottom: 10%;
      }

      .integration-logo-card:nth-child(6) {
        right: 12%;
        bottom: 10%;
      }

      .integration-logo-card:nth-child(7) {
        left: calc(50% - 103px);
        top: 4%;
      }

      .integration-logo-card:nth-child(8) {
        left: calc(50% - 103px);
        bottom: 4%;
      }

      .integration-logo-card:nth-child(odd)::after {
        right: -74px;
      }

      .integration-logo-card:nth-child(even)::after {
        left: -74px;
        transform: rotate(180deg);
      }

      .integration-logo-card:nth-child(7)::after,
      .integration-logo-card:nth-child(8)::after {
        display: none;
      }

      .integration-logo-card:nth-child(2) {
        animation-delay: 0.55s;
      }

      .integration-logo-card:nth-child(3) {
        animation-delay: 1.1s;
      }

      .integration-logo-card:nth-child(4) {
        animation-delay: 1.65s;
      }

      .integration-logo-card:nth-child(5) {
        animation-delay: 2.2s;
      }

      .integration-logo-card:nth-child(6) {
        animation-delay: 2.75s;
      }

      .integration-logo-card:nth-child(7) {
        animation-delay: 3.3s;
      }

      .integration-logo-card:nth-child(8) {
        animation-delay: 3.85s;
      }

      .integration-logo-mark {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        background: #ffffff;
        display: inline-flex;
        flex: 0 0 50px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 22px rgba(15, 29, 44, 0.08);
        position: relative;
        z-index: 1;
      }

      .integration-logo-card img {
        width: 34px;
        height: 34px;
        object-fit: contain;
        opacity: 1;
      }

      .integration-logo-card.is-pending img {
        filter: grayscale(1);
        opacity: 0.3;
      }

      .integration-copy {
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        position: relative;
        z-index: 1;
      }

      .integration-name {
        color: var(--primary-dark);
        font-size: 0.92rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
      }

      .integration-logo-card.is-pending .integration-name {
        color: #94a3b8;
      }

      .integration-status {
        padding: 5px 10px;
        border-radius: 999px;
        color: var(--primary-dark);
        background: rgba(0, 104, 120, 0.1);
        font-size: 0.68rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      .integration-logo-card.is-pending .integration-status {
        color: #64748b;
        background: rgba(100, 116, 139, 0.12);
        font-weight: 600;
      }

      @keyframes integrationFloat {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-10px) rotate(-1deg);
        }
      }

      .plans-slider {
        position: relative;
        padding: 0 6vw;
      }

      .plans-grid-wrapper {
        width: 100%;
      }

      .plans-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 32px;
      }

      .plan-card {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        padding: 48px 32px;
        border-radius: 32px;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        position: relative;
      }

      .plan-card:hover {
        transform: translateY(-15px) scale(1.02);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 25px 50px -12px rgba(0, 104, 120, 0.15), 0 0 0 2px var(--primary);
      }

      .plan-card.highlight {
        background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        border: none;
        box-shadow: 0 25px 60px -10px rgba(0, 104, 120, 0.35);
      }

      .plan-card.highlight.is-visible {
        animation: planSpotlight 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
      }

      .plan-card.highlight .plan-price,
      .plan-card.highlight .plan-desc,
      .plan-card.highlight ul li {
        color: rgba(255, 255, 255, 0.9);
      }

      .plan-card.highlight .btn-primary {
        background: white;
        color: var(--primary-dark);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      .plan-card.highlight h3,
      .plan-card.highlight p,
      .plan-card.highlight li {
        color: rgba(255, 255, 255, 0.95);
      }

      .planCardHeader {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .planCardHeader .plan-label {
        align-self: flex-start;
      }

      .plan-scroll-btn,
      .plan-fade {
        display: none;
      }

      .plan-features {
        list-style: none;
        padding: 0;
        margin: 0 0 32px;
      }

      .plan-features li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        color: var(--gray);
        font-weight: 600;
        line-height: 1.45;
      }

      .plan-features li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.2em;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        font-size: 0.75rem;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .plan-features li.feature-yes::before {
        content: '✓';
        background: #1eb980;
      }

      .plan-features li.feature-no::before {
        content: '✕';
        background: #e85b5b;
      }

      .plan-features li.feature-no {
        text-decoration: line-through;
        color: rgba(232, 91, 91, 0.8);
      }

      .plan-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 700;
        background: rgba(248, 144, 0, 0.15);
        color: var(--orange);
      }

      .plan-label {
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
        opacity: 0.7;
      }

      .plan-label .original {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        margin-left: 10px;
        color: rgba(15, 29, 44, 0.6);
        text-decoration: line-through;
      }

      .plan-card.highlight .plan-label .original {
        color: rgba(255, 255, 255, 0.8);
      }

      .plan-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin: 0 0 12px;
      }

      .plan-price .original {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(15, 29, 44, 0.6);
        text-decoration: line-through;
        margin-right: 8px;
      }

      .metrics {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        background: white;
        padding: 40px;
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
      }

      .metric {
        text-align: center;
        position: relative;
        padding: 0 10px;
      }

      .metric:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
      }

      .metric strong {
        font-size: 2.8rem;
        background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
        margin-bottom: 8px;
        font-weight: 800;
      }

      .cta-final {
        text-align: center;
        padding: 80px 6vw 100px;
        background: linear-gradient(135deg, var(--teal-dark), var(--teal));
        color: white;
      }

      .cta-final h2 {
        font-size: 2.6rem;
        margin: 0 0 18px;
        color: #ffffff;
      }

      h2.cta-demo-title {
       
        font-weight: 800;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, navajowhite 0%, navajowhite 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
      }

      .cta-final p {
        margin: 0 auto 32px;
        max-width: 600px;
        color: #ffffff;
      }

      footer {
        padding: 48px 6vw;
        background: #051c24;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 32px;
        margin-bottom: 24px;
      }

      .footer-title {
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 12px;
      }

      .footer-links,
      .footer-social {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .footer-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.85);
        transition: color 0.2s ease;
      }

      .footer-links a:hover {
        color: var(--accent);
      }

      .footer-social a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.85);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: color 0.2s ease;
      }

      .footer-social a:hover {
        color: var(--accent);
      }

      .footer-bottom {
        text-align: center;
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.9rem;
      }
      @media (max-width: 1200px) {
        header {
          padding: 16px 4vw;
        }

        .hero {
          padding: 70px 4vw 60px;
          gap: 32px;
        }

        .feature-section {
          gap: 32px;
        }

        .plans-slider {
          padding: 0 4vw;
        }
      }

      @media (max-width: 992px) {
        .header-actions {
          flex-direction: column;
          gap: 12px;
        }

        nav {
          width: 100%;
          justify-content: center;
          flex-wrap: wrap;
        }

        .hero {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .hero-left {
          align-items: center;
        }

        .hero-cta {
          justify-content: center;
        }

        .hero-visual {
          max-width: 520px;
          margin: 0 auto;
        }

        .feature-section {
          grid-template-columns: 1fr;
        }

        .plans-grid {
          grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .metrics {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

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

        .integration-logo-cloud {
          position: relative;
          inset: auto;
          display: grid;
          grid-template-columns: repeat(3, minmax(0, 1fr));
          margin-top: 28px;
        }

        .integration-stage {
          min-height: auto;
        }

        .integration-stage::before,
        .integration-stage::after {
          display: none;
        }

        .integration-hub {
          position: relative;
          left: auto;
          top: auto;
          margin: 0 auto;
          transform: none;
        }

        .integration-logo-card {
          position: relative;
          inset: auto;
          left: auto;
          right: auto;
          top: auto;
          bottom: auto;
          width: auto;
          animation: none;
          transform: none;
        }

        .integration-logo-card:nth-child(1),
        .integration-logo-card:nth-child(2),
        .integration-logo-card:nth-child(3),
        .integration-logo-card:nth-child(4),
        .integration-logo-card:nth-child(5),
        .integration-logo-card:nth-child(6),
        .integration-logo-card:nth-child(7),
        .integration-logo-card:nth-child(8) {
          position: relative;
          inset: auto;
          left: auto;
          right: auto;
          top: auto;
          bottom: auto;
          transform: none;
        }

        .integration-logo-card::after,
        .integration-logo-card:nth-child(odd)::after,
        .integration-logo-card:nth-child(even)::after {
          display: none;
        }

        .cta-final-premium {
          margin: 40px 3vw;
          border-radius: 32px;
        }
      }

      @media (max-width: 768px) {
        header {
          flex-wrap: wrap;
          gap: 8px;
          padding: 10px 4vw;
        }

        .logo-lockup img {
          width: 34px;
          height: 34px;
        }

        .logo-text {
          font-size: 0.98rem;
        }

        .mobile-menu-toggle {
          display: inline-flex;
          margin-left: auto;
          width: 34px;
          height: 34px;
        }

        .header-actions {
          display: none;
          width: 100%;
          flex-direction: column;
          align-items: stretch;
          gap: 10px;
          padding: 10px;
          border-top: 1px solid rgba(15, 29, 44, 0.06);
          border-radius: 12px;
          background: #ffffff;
          overflow: visible;
        }

        header.menu-open .header-actions {
          display: flex;
        }

        nav {
          width: 100%;
          overflow: visible;
        }

        .nav-links {
          width: 100%;
          flex-direction: column;
          align-items: stretch;
          gap: 4px;
          overflow: visible;
        }

        .nav-links > li {
          position: static;
          width: 100%;
          overflow: visible;
        }

        .nav-links a,
        .nav-trigger {
          width: 100%;
          justify-content: space-between;
          padding: 10px 12px;
        }

        .nav-links .dropdown {
          position: static;
          top: auto;
          left: auto;
          right: auto;
          width: 100%;
          transform: none;
          max-width: 100%;
          min-width: 0;
          margin: 8px 0 0;
          opacity: 1;
          pointer-events: auto;
          box-shadow: none;
          border: 0;
          border-radius: 0;
          padding: 0;
          background: transparent;
          display: none;
          overflow: visible;
          box-sizing: border-box;
          z-index: 100;
        }

        .nav-links .dropdown::before {
          display: none;
        }

        .nav-links .mega-menu {
          grid-template-columns: 1fr;
          gap: 4px;
        }

        .nav-links .dropdown a {
          box-sizing: border-box;
          padding: 14px;
          background: transparent;
          border: 0;
        }

        .mega-item {
          align-items: flex-start;
        }

        .mega-feature-icon {
          width: 34px;
          height: 34px;
          flex-basis: 34px;
        }

        .mega-item-icon {
          margin-top: 8px;
        }

        .mega-item-desc {
          font-size: 0.76rem;
        }

        .nav-links .has-dropdown.open .dropdown,
        .nav-links .has-dropdown:focus-within .dropdown {
          display: grid;
          position: static;
          left: auto;
          right: auto;
          width: 100%;
          max-width: 100%;
          transform: none;
        }

        .cta-group {
          width: 100%;
        }

        .cta-group .btn {
          width: 100%;
        }

        .hero-claim {
          font-size: clamp(2rem, 8vw, 2.6rem);
        }

        .hero-subtitle {
          font-size: 1rem;
        }

        .hero-dynamic {
          font-size: clamp(2rem, 9vw, 2.8rem);
        }

        .hero-cta {
          flex-direction: row;
          align-items: center;
          justify-content: center;
          gap: 10px;
          max-width: 100%;
        }

        .hero-cta .btn {
          min-height: 48px;
          padding: 13px 16px;
          font-size: 0.9rem;
          flex: 1 1 0;
        }

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

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

        .hero-metric-card {
          min-height: auto;
        }

        .metric-card-surface {
          padding: 22px;
        }

        .integration-logo-cloud {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 10px;
          margin-top: 18px;
        }

        .integration-stage {
          max-width: 100%;
          padding: 18px 14px;
          border-radius: 24px;
          background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 252, 0.84)),
            radial-gradient(circle at 50% 0%, rgba(0, 104, 120, 0.08), transparent 52%);
          box-shadow: 0 18px 38px rgba(15, 29, 44, 0.08);
          overflow: hidden;
        }

        .integration-stage::before,
        .integration-stage::after {
          display: none;
        }

        .integration-hub {
          width: 100%;
          max-width: 100%;
          justify-content: center;
          padding: 12px;
          border-radius: 18px;
          box-shadow: 0 16px 30px rgba(0, 79, 92, 0.18);
        }

        .integration-hub::before {
          display: none;
        }

        .integration-logo-card {
          width: 100%;
          position: relative;
          inset: auto;
          left: auto;
          right: auto;
          top: auto;
          bottom: auto;
          transform: none;
          animation: none;
          min-height: 118px;
          padding: 14px 10px;
          border-radius: 18px;
          flex-direction: column;
          justify-content: center;
          text-align: center;
          gap: 9px;
          background: #ffffff;
          box-shadow: 0 10px 22px rgba(15, 29, 44, 0.06);
        }

        .integration-logo-card:nth-child(1),
        .integration-logo-card:nth-child(2),
        .integration-logo-card:nth-child(3),
        .integration-logo-card:nth-child(4),
        .integration-logo-card:nth-child(5),
        .integration-logo-card:nth-child(6),
        .integration-logo-card:nth-child(7),
        .integration-logo-card:nth-child(8) {
          position: relative;
          inset: auto;
          left: auto;
          right: auto;
          top: auto;
          bottom: auto;
          transform: none;
        }

        .integration-logo-card.is-pending {
          background: #f8fafc;
          border-style: dashed;
        }

        .integration-logo-card::after,
        .integration-logo-card:nth-child(odd)::after,
        .integration-logo-card:nth-child(even)::after {
          display: none;
        }

        .integration-logo-card::before {
          opacity: 0.45;
        }

        .integration-logo-card img {
          width: 30px;
          height: 30px;
        }

        .integration-logo-mark {
          width: 48px;
          height: 48px;
          flex: 0 0 48px;
          border-radius: 15px;
          box-shadow: 0 8px 18px rgba(15, 29, 44, 0.08);
        }

        .integration-copy {
          align-items: center;
          gap: 7px;
        }

        .integration-name {
          font-size: 0.82rem;
          text-align: center;
        }

        .integration-status {
          font-size: 0.62rem;
        }

        .metric:nth-child(2)::after {
          display: none;
        }
      }

      @media (max-width: 600px) {
        .promo-bar {
          width: 100vw;
          margin-left: calc(50% - 50vw);
          margin-right: calc(50% - 50vw);
          background: #f89000;
          min-height: auto;
          padding: max(env(safe-area-inset-top), 0px) 0 5px;
        }

        .promo-bar-inner {
          padding: 5px 4vw 0;
          gap: 3px;
          background: #f89000;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .promo-label {
          font-size: 0.68rem;
          line-height: 1.12;
        }

        .promo-ticker {
          width: 100%;
          text-align: center;
          line-height: 1;
        }

        .promo-track span {
          font-size: 0.64rem;
          line-height: 1;
        }

        .hero {
          padding-top: 28px;
        }

        .hero-metrics {
          padding: 28px 4vw 48px;
        }

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

        .hero-claim {
          text-align: left;
        }

        .hero-left {
          align-items: flex-start;
          text-align: left;
        }

        .hero-cta {
          align-items: center;
          width: 100%;
        }

        .hero-cta .btn {
          text-align: center;
        }

        .hero-visual {
          order: 2;
        }

        .feature-section {
          gap: 20px;
        }

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

        .plan-card {
          padding: 36px 24px;
        }
      }

      .cta-final-premium {
    padding: 100px 6vw;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 40px; /* Opsional: jika ingin bentuk card besar */
    margin: 40px 6vw;
}

/* Background ornament untuk kesan Sophisticated */
.cta-final-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 144, 0, 0.14) 0%, rgba(248, 144, 0, 0.05) 48%, rgba(248, 144, 0, 0) 72%);
    border-radius: 50%;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.cta-demo-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: white !important;
    -webkit-text-fill-color: white !important; /* Override gradient text jika ada */
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-subtitle strong {
    color: var(--accent);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Efek tombol agar lebih standout */
.shadow-pulse {
    background: white !important;
    color: var(--primary-dark) !important;
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
}
