:root {
        --bg-deep: #080a10;
        --bg-mid: #0d0f18;
        --bg-raised: #13162a;
        --bg-card: rgba(19, 22, 42, 0.7);
        --cyan: #00d4ff;
        --indigo: #6366f1;
        --violet: #a855f7;
        --blue-deep: #1e3a8a;
        --text-primary: #f0f4ff;
        --text-secondary: rgba(240, 244, 255, 0.65);
        --text-muted: rgba(240, 244, 255, 0.38);
        --border-subtle: rgba(255, 255, 255, 0.08);
        --border-glow: rgba(0, 212, 255, 0.25);
        --gradient-text: linear-gradient(135deg, #00d4ff 0%, #6366f1 50%, #a855f7 100%);
        --gradient-btn: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
        --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15), 0 0 80px rgba(99, 102, 241, 0.1);
        --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.06);
        --radius-card: 16px;
        --radius-sm: 8px;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Inter', sans-serif;
        background: var(--bg-deep);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        max-width: none;
        margin: 0;
        padding: 0;
      }

      /* LANGUAGE SWITCH */
      .lang-switch {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50px;
        padding: 3px;
        gap: 2px;
      }
      .lang-btn {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        padding: 5px 12px;
        border-radius: 50px;
        border: none;
        background: transparent;
        color: var(--text-muted);
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        line-height: 1;
      }
      .lang-btn.active {
        background: var(--gradient-btn);
        color: #fff;
        box-shadow: 0 0 16px rgba(0,212,255,0.35);
      }
      .lang-btn:not(.active):hover {
        color: var(--text-primary);
        background: rgba(255,255,255,0.07);
      }

      /* TOPBAR */
      .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(8, 10, 16, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-subtle);
        height: 64px;
        display: flex;
        align-items: center;
        padding: 0 40px;
      }
      .topbar-inner {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }
      .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .topbar-left img {
        height: 30px;
        width: auto;
        object-fit: contain;
        display: block;
      }
      .topbar-center {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-muted);
        white-space: nowrap;
      }
      .topbar-right {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .incogni-logo-wrap {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 7px;
        padding: 5px 10px;
        display: flex;
        align-items: center;
      }
      .incogni-logo-wrap img {
        height: 22px;
        width: auto;
        display: block;
      }
      .btn-topbar {
        display: inline-block;
        background: var(--gradient-btn);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.02em;
        transition:
          opacity 0.2s,
          transform 0.2s;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        white-space: nowrap;
      }
      .btn-topbar:hover {
        opacity: 0.85;
        transform: translateY(-1px);
      }

      /* HERO */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 120px 40px 80px;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
      }
      .hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(8, 10, 16, 0.92) 0%,
          rgba(8, 10, 16, 0.78) 50%,
          rgba(8, 10, 16, 0.85) 100%
        );
      }
      .hero-bg-noise {
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        opacity: 0.4;
      }
      .hero-glow {
        position: absolute;
        top: 20%;
        left: 30%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
        pointer-events: none;
      }
      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .hero-eyebrow {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--cyan);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .hero-eyebrow::before {
        content: '';
        display: inline-block;
        width: 32px;
        height: 2px;
        background: var(--cyan);
        border-radius: 2px;
      }
      .hero-h1 {
        font-family: 'Fraunces', serif;
        font-size: clamp(48px, 7vw, 80px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        max-width: 760px;
      }
      .hero-h1 .grad {
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero-sub {
        font-size: 18px;
        font-weight: 400;
        color: var(--text-secondary);
        max-width: 540px;
        line-height: 1.65;
      }
      .hero-ctas {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }
      .btn-primary {
        display: inline-block;
        background: var(--gradient-btn);
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow:
          0 0 30px rgba(0, 212, 255, 0.35),
          0 4px 20px rgba(0, 0, 0, 0.3);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow:
          0 0 50px rgba(0, 212, 255, 0.5),
          0 8px 30px rgba(0, 0, 0, 0.4);
      }
      .btn-ghost {
        display: inline-block;
        background: transparent;
        color: var(--text-primary);
        font-size: 15px;
        font-weight: 500;
        padding: 13px 32px;
        border-radius: 50px;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition:
          border-color 0.2s,
          transform 0.2s;
      }
      .btn-ghost:hover {
        border-color: var(--cyan);
        transform: translateY(-2px);
      }
      .hero-chips {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 8px;
      }
      .chip {
        font-size: 12px;
        font-weight: 500;
        padding: 6px 14px;
        border-radius: 50px;
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.2);
        color: var(--cyan);
        letter-spacing: 0.03em;
      }
      .hero-logo-float {
        position: absolute;
        bottom: 60px;
        right: 60px;
        z-index: 2;
      }
      .hero-logo-float .incogni-logo-wrap {
        padding: 10px 20px;
        border-radius: 12px;
        box-shadow:
          0 8px 40px rgba(0, 0, 0, 0.5),
          0 0 30px rgba(0, 212, 255, 0.15);
      }
      .hero-logo-float img {
        height: 32px;
      }

      /* SECTIONS */
      .section {
        padding: 100px 40px;
      }
      .section-inner {
        max-width: 1400px;
        margin: 0 auto;
      }
      .section-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--cyan);
        margin-bottom: 16px;
      }
      .section-title {
        font-family: 'Fraunces', serif;
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.015em;
        color: var(--text-primary);
        margin-bottom: 24px;
      }
      .section-title .grad {
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .section-subtitle {
        font-size: 17px;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 640px;
        margin-bottom: 56px;
      }

      /* GLASS CARD */
      .glass-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 32px;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        box-shadow: var(--shadow-card);
      }
      .glass-card:hover {
        transform: translateY(-4px);
        box-shadow:
          0 8px 48px rgba(0, 0, 0, 0.5),
          0 0 30px rgba(0, 212, 255, 0.1);
        border-color: rgba(0, 212, 255, 0.2);
      }

      /* GRID LAYOUTS */
      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
      }
      .kpi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      /* INTRO SECTION */
      .intro-bg {
        background: var(--bg-mid);
      }
      .intro-card-logo {
        height: 36px;
        width: auto;
        object-fit: contain;
        margin-bottom: 20px;
        display: block;
      }
      .intro-card-logo.incogni-bg {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 7px;
        padding: 6px 12px;
        height: auto;
        max-height: 36px;
      }
      .card-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--cyan);
        margin-bottom: 8px;
      }
      .card-title {
        font-family: 'Fraunces', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 12px;
        line-height: 1.25;
      }
      .card-body {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.65;
      }
      .partnership-quote {
        margin-top: 48px;
        padding: 36px 48px;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(0, 212, 255, 0.06) 100%);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-left: 4px solid var(--indigo);
        border-radius: var(--radius-card);
        font-size: 16px;
        font-style: italic;
        color: var(--text-secondary);
        line-height: 1.7;
      }

      /* WHY-FIT SECTION */
      .why-bg {
        background: var(--bg-deep);
      }
      .icon-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 32px;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        position: relative;
        overflow: hidden;
      }
      .icon-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-btn);
        opacity: 0;
        transition: opacity 0.3s;
      }
      .icon-card:hover {
        transform: translateY(-4px);
        box-shadow:
          0 8px 48px rgba(0, 0, 0, 0.5),
          0 0 40px rgba(0, 212, 255, 0.12);
        border-color: rgba(0, 212, 255, 0.2);
      }
      .icon-card:hover::before {
        opacity: 1;
      }
      .icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
        border: 1px solid rgba(0, 212, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 22px;
      }
      .fact-bar {
        margin-top: 56px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-card);
        overflow: hidden;
      }
      .fact-item {
        padding: 28px 24px;
        text-align: center;
        border-right: 1px solid var(--border-subtle);
      }
      .fact-item:last-child {
        border-right: none;
      }
      .fact-num {
        font-size: 28px;
        font-weight: 700;
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 4px;
        font-family: 'Fraunces', serif;
      }
      .fact-desc {
        font-size: 12px;
        color: var(--text-muted);
        font-weight: 500;
        letter-spacing: 0.03em;
      }

      /* GOME SECTION */
      .gome-bg {
        background: var(--bg-mid);
      }
      .gome-layout {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
        align-items: start;
        margin-bottom: 48px;
      }
      .gome-img-wrap {
        border-radius: var(--radius-card);
        overflow: hidden;
        box-shadow:
          0 8px 48px rgba(0, 0, 0, 0.5),
          0 0 40px rgba(0, 212, 255, 0.1);
        border: 1px solid var(--border-subtle);
      }
      .gome-img-wrap img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
      }
      .feature-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.4;
      }
      .feature-list li::before {
        content: '';
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
        background-size: cover;
      }
      .gome-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .detail-img-wrap {
        border-radius: var(--radius-card);
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        border: 1px solid var(--border-subtle);
      }
      .detail-img-wrap img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
      }
      .detail-img-wrap:hover img {
        transform: scale(1.04);
      }
      .img-caption {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 10px;
        text-align: center;
        letter-spacing: 0.04em;
      }

      /* AUDIENCE SECTION */
      .audience-bg {
        background: var(--bg-deep);
      }
      .audience-intro {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 700px;
        line-height: 1.65;
        margin-bottom: 48px;
      }
      .profile-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 28px;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        box-shadow: var(--shadow-card);
      }
      .profile-card:hover {
        transform: translateY(-4px);
        box-shadow:
          0 8px 48px rgba(0, 0, 0, 0.5),
          0 0 30px rgba(99, 102, 241, 0.15);
        border-color: rgba(99, 102, 241, 0.25);
      }
      .profile-emoji {
        font-size: 32px;
        margin-bottom: 16px;
        display: block;
      }
      .profile-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 10px;
      }
      .why-box {
        margin-top: 48px;
        padding: 32px 40px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
        border: 1px solid rgba(0, 212, 255, 0.15);
        border-radius: var(--radius-card);
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.7;
        display: flex;
        align-items: flex-start;
        gap: 20px;
      }
      .why-box-icon {
        font-size: 28px;
        flex-shrink: 0;
        margin-top: 2px;
      }

      /* PRIVACY SECTION */
      .privacy-bg {
        background: var(--bg-mid);
      }
      .privacy-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        margin-bottom: 64px;
      }
      .privacy-text p {
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 20px;
      }
      .shield-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .shield-outer {
        position: relative;
        width: 220px;
        height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .shield-shape {
        width: 180px;
        height: 220px;
        background: linear-gradient(
          170deg,
          rgba(0, 212, 255, 0.12) 0%,
          rgba(99, 102, 241, 0.18) 60%,
          rgba(168, 85, 247, 0.1) 100%
        );
        border: 2px solid rgba(0, 212, 255, 0.3);
        clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow:
          0 0 60px rgba(0, 212, 255, 0.2),
          inset 0 0 40px rgba(0, 212, 255, 0.05);
        animation: glow-pulse 3s ease-in-out infinite;
      }
      @keyframes glow-pulse {
        0%,
        100% {
          box-shadow:
            0 0 40px rgba(0, 212, 255, 0.2),
            inset 0 0 30px rgba(0, 212, 255, 0.05);
        }
        50% {
          box-shadow:
            0 0 80px rgba(0, 212, 255, 0.45),
            0 0 40px rgba(99, 102, 241, 0.3),
            inset 0 0 50px rgba(0, 212, 255, 0.1);
        }
      }
      .shield-num {
        font-family: 'Fraunces', serif;
        font-size: 42px;
        font-weight: 700;
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }
      .shield-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--text-muted);
        text-align: center;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 0 16px;
        margin-top: 8px;
      }
      .shield-ring {
        position: absolute;
        inset: -20px;
        clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
        border: 1px solid rgba(0, 212, 255, 0.12);
        animation: ring-pulse 3s ease-in-out infinite 0.5s;
      }
      @keyframes ring-pulse {
        0%,
        100% {
          opacity: 0.3;
        }
        50% {
          opacity: 0.8;
        }
      }
      .service-tiles {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
      .service-tile {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        padding: 20px 16px;
        text-align: center;
        transition:
          border-color 0.3s,
          transform 0.3s;
      }
      .service-tile:hover {
        border-color: rgba(0, 212, 255, 0.25);
        transform: translateY(-2px);
      }
      .service-icon {
        font-size: 24px;
        margin-bottom: 10px;
      }
      .service-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.3;
      }

      /* BLUEJAYS SECTION */
      .bj-bg {
        background: var(--bg-deep);
      }
      .bj-logo-wrap {
        margin-bottom: 48px;
      }
      .bj-logo-wrap img {
        height: 56px;
        width: auto;
        display: block;
        object-fit: contain;
      }
      .bj-tile {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 32px;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        box-shadow: var(--shadow-card);
        position: relative;
        overflow: hidden;
      }
      .bj-tile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #6366f1, #a855f7);
        opacity: 0;
        transition: opacity 0.3s;
      }
      .bj-tile:hover {
        transform: translateY(-4px);
        box-shadow:
          0 8px 48px rgba(0, 0, 0, 0.5),
          0 0 40px rgba(168, 85, 247, 0.12);
        border-color: rgba(168, 85, 247, 0.25);
      }
      .bj-tile:hover::before {
        opacity: 1;
      }
      .triple-logo {
        margin-top: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
      }
      .triple-logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
        display: block;
      }
      .triple-logo .incogni-logo-wrap img {
        height: 30px;
      }
      .triple-plus {
        font-size: 28px;
        color: var(--text-muted);
        font-weight: 300;
      }

      /* KPI SECTION */
      .kpi-bg {
        background: var(--bg-mid);
      }
      .kpi-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 36px 28px;
        text-align: center;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        box-shadow: var(--shadow-card);
        position: relative;
        overflow: hidden;
      }
      .kpi-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-btn);
        opacity: 0.4;
      }
      .kpi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-glow);
      }
      .kpi-num {
        font-family: 'Fraunces', serif;
        font-size: 48px;
        font-weight: 700;
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 8px;
      }
      .kpi-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0.04em;
      }
      .kpi-disclaimer {
        margin-top: 24px;
        text-align: center;
        font-size: 11px;
        color: var(--text-muted);
        letter-spacing: 0.05em;
      }

      /* MODULE SECTION */
      .module-bg {
        background: var(--bg-deep);
      }
      .module-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 32px;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        box-shadow: var(--shadow-card);
      }
      .module-card:hover {
        transform: translateY(-4px);
        box-shadow:
          0 8px 48px rgba(0, 0, 0, 0.5),
          0 0 40px rgba(0, 212, 255, 0.1);
        border-color: rgba(0, 212, 255, 0.2);
      }
      .module-icon-line {
        width: 36px;
        height: 3px;
        background: var(--gradient-btn);
        border-radius: 2px;
        margin-bottom: 24px;
      }
      .module-title {
        font-size: 17px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 10px;
      }
      .module-what {
        font-size: 13px;
        font-weight: 600;
        color: var(--cyan);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-top: 20px;
        margin-bottom: 6px;
      }

      /* CTA SECTION */
      .cta-bg {
        background: linear-gradient(135deg, #080a10 0%, #0d0f18 40%, #080a10 100%);
        position: relative;
        overflow: hidden;
      }
      .cta-glow-1 {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
        pointer-events: none;
      }
      .cta-glow-2 {
        position: absolute;
        bottom: -50px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 70%);
        pointer-events: none;
      }
      .cta-inner {
        position: relative;
        z-index: 1;
        text-align: center;
      }
      .cta-h2 {
        font-family: 'Fraunces', serif;
        font-size: clamp(40px, 5vw, 64px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 20px;
        line-height: 1.1;
      }
      .cta-sub {
        font-size: 18px;
        color: var(--text-secondary);
        max-width: 480px;
        margin: 0 auto 40px;
        line-height: 1.65;
      }
      .cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 56px;
      }
      .contact-block {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-bottom: 64px;
      }
      .contact-name {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
      }
      .contact-role {
        font-size: 13px;
        color: var(--text-muted);
      }
      .contact-mail,
      .contact-phone {
        font-size: 14px;
        color: var(--cyan);
        text-decoration: none;
      }
      .contact-mail:hover,
      .contact-phone:hover {
        text-decoration: underline;
      }
      .cta-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        padding-top: 48px;
        border-top: 1px solid var(--border-subtle);
      }
      .cta-logos img {
        height: 36px;
        width: auto;
        object-fit: contain;
        opacity: 0.8;
        transition: opacity 0.3s;
      }
      .cta-logos img:hover {
        opacity: 1;
      }

      /* FOOTER */
      .footer {
        background: var(--bg-deep);
        border-top: 1px solid var(--border-subtle);
        padding: 32px 40px;
      }
      .footer-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-text {
        font-size: 12px;
        color: var(--text-muted);
      }
      .footer-links {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
      }
      .footer-links a {
        font-size: 12px;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--cyan);
      }

      /* ANIMATE */
      .animate-up {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .animate-up.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .delay-1 {
        transition-delay: 0.1s;
      }
      .delay-2 {
        transition-delay: 0.2s;
      }
      .delay-3 {
        transition-delay: 0.3s;
      }
      .delay-4 {
        transition-delay: 0.4s;
      }

      /* RESPONSIVE */
      @media (max-width: 1100px) {
        .section {
          padding: 64px 32px;
        }
        .grid-3 {
          grid-template-columns: 1fr 1fr;
        }
        .grid-4 {
          grid-template-columns: 1fr 1fr;
        }
        .fact-bar {
          grid-template-columns: 1fr 1fr;
        }
        .fact-item {
          border-right: none;
          border-bottom: 1px solid var(--border-subtle);
        }
        .kpi-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .service-tiles {
          grid-template-columns: 1fr 1fr;
        }
        .privacy-layout {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .shield-wrap {
          order: -1;
        }
        .gome-layout {
          grid-template-columns: 1fr;
        }
        .topbar {
          padding: 0 24px;
        }
        .topbar-center {
          display: none;
        }
      }
      @media (max-width: 720px) {
        .section {
          padding: 48px 20px;
        }
        .hero {
          padding: 100px 20px 60px;
        }
        .topbar {
          padding: 0 16px;
          height: 56px;
        }
        .topbar-left img:last-child {
          display: none;
        }
        .btn-topbar {
          display: none;
        }
        .grid-3 {
          grid-template-columns: 1fr;
        }
        .grid-4 {
          grid-template-columns: 1fr;
        }
        .fact-bar {
          grid-template-columns: 1fr;
        }
        .kpi-grid {
          grid-template-columns: 1fr;
        }
        .service-tiles {
          grid-template-columns: 1fr;
        }
        .gome-detail-grid {
          grid-template-columns: 1fr;
        }
        .hero-logo-float {
          display: none;
        }
        .partnership-quote {
          padding: 24px 28px;
        }
        .footer-inner {
          flex-direction: column;
          align-items: flex-start;
        }
      }
