:root {
        --teal-dark: #084750;
        --teal: #117381;
        --teal-soft: #cfe9ed;
        --orange: #f38a00;
        --gray: #4c5d6a;
        --surface: #f1f4f9;
        --radius: 16px;
        --primary: #117381;
        --primary-dark: #084750;
        --primary-light: #cfe9ed;
        --accent: #f59e0b;
      }

      * {
        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(15, 118, 134, 0.08) 0px, transparent 50%),
          radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.05) 0px, transparent 50%);
        background-attachment: fixed;
      }

      header {
        padding: 18px 6vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(11, 90, 100, 0.12);
        z-index: 20;
        gap: 32px;
        box-shadow: 0 25px 40px rgba(15, 29, 44, 0.08);
        position: sticky;
      }

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

      .logo-lockup {
        display: flex;
        align-items: center;
        gap: 14px;
      }

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

      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 {
        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;
      }

      .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 {
        color: var(--teal-dark);
      }

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

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

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

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

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

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

      .nav-links .has-dropdown:hover > a .nav-arrow,
      .nav-links .has-dropdown.open > a .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: translateY(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: 20px;
        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 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
        padding:  6vw 80px;
        position: relative;
        z-index: 5;
      }

      .hero-metric-card {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 10px 30px -5px rgba(15, 118, 134, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
      }

      .hero-metric-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
      }

      .hero-metric-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 1);
        box-shadow: 0 20px 40px -10px rgba(15, 118, 134, 0.15), 0 0 0 1px rgba(17, 115, 129, 0.1);
      }

      .hero-metric-card:hover::before {
        opacity: 1;
      }

      .metric-icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: linear-gradient(135deg, #e0f5f7 0%, #ffffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        box-shadow: 0 4px 10px rgba(17, 115, 129, 0.1);
      }

      .hero-metric-card strong {
        font-size: 2rem;
        line-height: 1;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-dark) 20%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -1px;
      }

      .hero-metric-card span {
        font-size: 0.95rem;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 0.01em;
      }

      h2 {
        font-weight: 800;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, #084c57 0%, #117381 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: 16px;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        max-width: 520px;
      }

      .btn {
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-block;
        border: none;
        font-size: 0.95rem;
      }

      .btn-primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--surface);
        box-shadow: 0 4px 12px rgba(15, 118, 134, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(15, 118, 134, 0.4);
      }

      .btn-secondary {
        background: transparent;
        color: var(--primary);
        border: 2px solid rgba(15, 118, 134, 0.15);
      }

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

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

      .btn-ghost:hover {
        border-color: var(--primary-dark);
        background: rgba(8, 71, 80, 0.08);
      }

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

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

      .hero-claim {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 0;
        font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
        color: var(--teal-dark);
        letter-spacing: -0.01em;
        line-height: 1.15;
      }

      .hero-claim .hero-highlight {
        color: #0b5a64;
        display: block;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        margin-top: 8px;
      }

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

      .hero-subtitle .hero-brand {
        color: #f39200;
        font-weight: 600;
      }

      .hero-dynamic {
        display: block;
        position: relative;
        height: 1.15em;
        overflow: hidden;
        margin: 6px 0 12px;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        line-height: 1.15;
      }

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

      .hero-dynamic-inner span {
        display: block;
        font-weight: inherit;
        font-size: inherit;
        line-height: 1.15;
        min-height: 1.15em;
        color: transparent;
        background: linear-gradient(120deg, #0b858d, #f39200);
        -webkit-background-clip: text;
        background-clip: text;
      }

      @keyframes slideHero {
        0%,
        10% {
          transform: translateY(0);
        }
        20%,
        30% {
          transform: translateY(calc(-1 * 1.15em));
        }
        40%,
        50% {
          transform: translateY(calc(-2 * 1.15em));
        }
        60%,
        70% {
          transform: translateY(calc(-3 * 1.15em));
        }
        80%,
        90% {
          transform: translateY(calc(-4 * 1.15em));
        }
        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(243, 146, 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(11, 90, 100, 0.2);
        backdrop-filter: blur(6px);
        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(11, 90, 100, 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(17, 115, 129, 0.3);
      }

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

      .section-header-card {
        margin: 0 auto 40px;
        text-align: center;
        padding: 48px 6vw;
        border-radius: 32px;
        background: linear-gradient(135deg, rgba(11, 90, 100, 0.08), rgba(243, 146, 0, 0.08));
        border: 1px solid rgba(11, 90, 100, 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(11, 90, 100, 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;
      }

      .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.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        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(15, 118, 134, 0.15), 0 0 0 2px var(--primary);
      }

      .plan-card.highlight {
        background: linear-gradient(160deg, #0f7686 0%, #084c57 100%);
        color: white;
        border: none;
        box-shadow: 0 25px 60px -10px rgba(15, 118, 134, 0.4);
      }

      .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(243, 146, 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, #0f7686, #117381);
        -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: #f39200;
      }

      .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: #f39200;
      }

      .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));
        }

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

      @media (max-width: 768px) {
        .hero-claim {
          font-size: clamp(2rem, 8vw, 2.6rem);
        }

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

        .hero-dynamic {
          font-size: clamp(1.6rem, 6vw, 2.2rem);
        }

        .hero-cta {
          flex-direction: column;
        }

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

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

      @media (max-width: 600px) {
        header {
          flex-direction: column;
          gap: 16px;
        }

        .header-actions {
          flex-direction: column;
          width: 100%;
        }

        nav {
          flex-wrap: wrap;
          justify-content: center;
        }

        .hero {
          padding-top: 70px;
        }

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

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

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

        .hero-cta .btn {
          width: 100%;
          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, #084750 0%, #117381 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: rgba(243, 138, 0, 0.1);
    filter: blur(80px);
    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 {
    animation: pulse-shadow 2s infinite;
    background: white !important;
    color: var(--primary-dark) !important;
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
