
  :root {
    --gold: #22C55E;
    --gold-light: #4ADE80;
    --gold-dark: #16A34A;
    --black: #080808;
    --dark: #0E0E0E;
    --dark2: #0a0f0b;
    --dark3: #111a13;
    --white: #F0F5F1;
    --gray: #7a8a7e;
    --light-gray: #C8D4CB;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
  }

  /* CURSOR */
  .cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9998;
    transition: transform 0.35s ease, width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.6;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.35;
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 5%;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(34,197,94,0.1);
    backdrop-filter: blur(20px);
    background: rgba(8,8,8,0.7);
    transition: all 0.3s ease;
  }
  .nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 10px 28px;
    border: none; cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: opacity 0.3s, transform 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 70% at 80% 50%, rgba(34,197,94,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(34,197,94,0.04) 0%, transparent 60%),
      linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 800px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(34,197,94,0.3);
    padding: 8px 18px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }
  .hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.1s ease both;
  }
  .hero-title .gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-title .stroke {
    -webkit-text-stroke: 1.5px rgba(34,197,94,0.5);
    -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeUp 1s 0.2s ease both;
  }
  .hero-sub span { color: var(--light-gray); }
  .hero-actions {
    display: flex; gap: 20px; flex-wrap: wrap;
    animation: fadeUp 1s 0.3s ease both;
  }
  .btn-primary {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 16px 42px;
    border: none; cursor: pointer;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 40px rgba(34,197,94,0.2);
  }
  .btn-primary:hover {
    opacity: 0.9; transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(34,197,94,0.35);
  }
  .btn-secondary {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    padding: 15px 40px;
    border: 1px solid rgba(34,197,94,0.3);
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: border-color 0.3s, background 0.3s;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(34,197,94,0.05);
  }
  .hero-stats {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 40px;
    z-index: 2;
    animation: fadeLeft 1s 0.4s ease both;
  }
  .stat {
    text-align: right;
  }
  .stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
  }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    animation: fadeUp 1.2s 0.6s ease both;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollLine 2s infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ===== MARQUEE ===== */
  .marquee-section {
    border-top: 1px solid rgba(34,197,94,0.15);
    border-bottom: 1px solid rgba(34,197,94,0.15);
    padding: 18px 0;
    overflow: hidden;
    background: rgba(34,197,94,0.03);
    position: relative; z-index: 2;
  }
  .marquee-track {
    display: flex; gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--gold-dark);
    white-space: nowrap;
    display: flex; align-items: center; gap: 60px;
  }
  .marquee-item::after {
    content: '◆';
    font-size: 0.6rem;
    color: var(--gold);
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== SECTIONS GENERIC ===== */
  section { position: relative; z-index: 2; }
  .section-header {
    margin-bottom: 70px;
  }
  .section-tag {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 2px;
  }
  .section-title .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* ===== ABOUT ===== */
  #about {
    padding: 120px 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-frame {
    width: 100%; aspect-ratio: 4/5;
    background: var(--dark2);
    border: 1px solid rgba(34,197,94,0.15);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-frame::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 70%, rgba(34,197,94,0.12), transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(34,197,94,0.06), transparent 50%);
  }
  .about-img-inner {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    letter-spacing: -4px;
    opacity: 0.08;
    color: var(--gold);
    user-select: none;
  }
  .about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    padding: 24px 28px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1.3;
    box-shadow: 0 20px 60px rgba(34,197,94,0.3);
  }
  .about-badge-float span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 2px;
  }
  .corner-accent {
    position: absolute; top: -1px; left: -1px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }
  .about-text p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .about-text p strong { color: var(--white); font-weight: 500; }
  .about-pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-top: 36px;
  }
  .pillar {
    padding: 20px;
    border: 1px solid rgba(34,197,94,0.12);
    background: rgba(34,197,94,0.02);
    transition: border-color 0.3s, background 0.3s;
  }
  .pillar:hover {
    border-color: rgba(34,197,94,0.3);
    background: rgba(34,197,94,0.05);
  }
  .pillar-icon {
    font-size: 1.4rem; margin-bottom: 10px;
  }
  .pillar-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .pillar p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
  }

  /* ===== SERVICES ===== */
  #services {
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(34,197,94,0.02) 50%, transparent 100%);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.1);
  }
  .service-card {
    background: var(--dark);
    padding: 50px 36px;
    position: relative; overflow: hidden;
    transition: background 0.4s;
    group: true;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .service-card:hover { background: rgba(34,197,94,0.04); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(34,197,94,0.12);
    margin-bottom: 24px;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(34,197,94,0.25); }
  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
  }
  .service-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
  }
  .service-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .service-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: gap 0.3s;
  }
  .service-link:hover { gap: 14px; }

  /* ===== HOW IT WORKS ===== */
  #how {
    padding: 120px 5%;
  }
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
    opacity: 0.2;
  }
  .step {
    padding: 0 30px 0 0;
    position: relative;
  }
  .step-dot {
    width: 80px; height: 80px;
    border: 1px solid rgba(34,197,94,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 30px;
    position: relative;
    background: var(--dark);
    transition: border-color 0.3s, background 0.3s;
  }
  .step:hover .step-dot {
    border-color: var(--gold);
    background: rgba(34,197,94,0.08);
  }
  .step-dot-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: var(--gold);
  }
  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
  }
  .step-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.8;
  }

  /* ===== PLANS ===== */
  #plans {
    padding: 120px 5%;
    background: var(--dark2);
  }
  .plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 20px;
  }
  .plan-card {
    border: 1px solid rgba(34,197,94,0.12);
    padding: 48px 36px;
    background: var(--dark);
    position: relative; overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34,197,94,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(34,197,94,0.07);
  }
  .plan-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(34,197,94,0.08), var(--dark));
    box-shadow: 0 20px 80px rgba(34,197,94,0.15);
  }
  .plan-featured-badge {
    position: absolute; top: 0; right: 30px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
    padding-bottom: 16px;
  }
  .plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .plan-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 6px;
  }
  .plan-period {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 36px;
  }
  .plan-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 36px;
    opacity: 0.2;
  }
  .plan-feature {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--light-gray);
  }
  .plan-feature::before {
    content: '◆';
    font-size: 0.5rem;
    color: var(--gold);
    margin-top: 6px; flex-shrink: 0;
  }
  .plan-cta {
    display: block; text-align: center;
    margin-top: 36px;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px;
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--gold);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }
  .plan-card.featured .plan-cta {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    border-color: transparent;
  }
  .plan-cta:hover {
    background: rgba(34,197,94,0.1);
    border-color: var(--gold);
  }
  .plan-card.featured .plan-cta:hover { opacity: 0.9; }

  /* ===== PLATFORMS ===== */
  #platforms {
    padding: 80px 5%;
    text-align: center;
  }
  .platforms-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 50px;
  }
  .platforms-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px;
  }
  .platform-pill {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gray);
    border: 1px solid rgba(34,197,94,0.12);
    padding: 12px 28px;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
    cursor: default;
  }
  .platform-pill:hover {
    color: var(--gold);
    border-color: rgba(34,197,94,0.4);
    background: rgba(34,197,94,0.05);
  }

  /* ===== TESTIMONIALS ===== */
  #testimonials {
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent, rgba(34,197,94,0.02), transparent);
  }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testimonial-card {
    padding: 40px;
    border: 1px solid rgba(34,197,94,0.1);
    background: var(--dark);
    position: relative;
    transition: border-color 0.3s;
  }
  .testimonial-card:hover { border-color: rgba(34,197,94,0.25); }
  .testimonial-card::before {
    content: '"';
    position: absolute; top: 20px; right: 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: rgba(34,197,94,0.08);
    line-height: 1;
  }
  .testimonial-text {
    font-size: 0.92rem;
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 28px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 14px;
  }
  .author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    color: var(--black);
    flex-shrink: 0;
  }
  .author-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
  }
  .author-role {
    font-size: 0.75rem;
    color: var(--gray);
  }
  .stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 16px; }

  /* ===== CONTACT ===== */
  #contact {
    padding: 120px 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .contact-info h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 24px;
  }
  .contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 28px;
  }
  .contact-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(34,197,94,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
    color: var(--gold);
  }
  .contact-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
  }
  .contact-val { font-size: 0.95rem; color: var(--white); }
  .contact-form {
    display: flex; flex-direction: column; gap: 16px;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .form-field {
    display: flex; flex-direction: column; gap: 8px;
  }
  .form-field label {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    background: var(--dark2);
    border: 1px solid rgba(34,197,94,0.15);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
    -webkit-appearance: none;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--gold);
  }
  .form-field select option { background: var(--dark2); }
  .form-submit {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 18px 40px;
    border: none; cursor: pointer;
    width: 100%;
    transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(34,197,94,0.2);
    margin-top: 8px;
  }
  .form-submit:hover {
    opacity: 0.9; transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(34,197,94,0.3);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark2);
    border-top: 1px solid rgba(34,197,94,0.1);
    padding: 70px 5% 36px;
    position: relative; z-index: 2;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .nav-logo { display: inline-block; margin-bottom: 20px; font-size: 2.2rem; }
  .footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 260px;
  }
  .footer-social {
    display: flex; gap: 12px; margin-top: 24px;
  }
  .social-btn {
    width: 38px; height: 38px;
    border: 1px solid rgba(34,197,94,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
  }
  .social-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(34,197,94,0.07);
  }
  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 0.88rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(34,197,94,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
  }
  .footer-copy span { color: var(--gold); }
  .footer-legal {
    display: flex; gap: 28px;
  }
  .footer-legal a {
    font-size: 0.78rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-legal a:hover { color: var(--white); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translate(30px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
  }
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===== SUPPORT TICKET ===== */
  #support {
    padding: 120px 5%;
    background: var(--dark2);
    position: relative; overflow: hidden;
  }
  #support::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(34,197,94,0.04), transparent);
    pointer-events: none;
  }
  .support-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
  }
  .support-visual {
    position: sticky; top: 120px;
  }
  .support-svg-wrap {
    margin-bottom: 40px;
  }
  .support-features {
    display: flex; flex-direction: column; gap: 18px;
  }
  .support-feature {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(34,197,94,0.1);
    background: rgba(34,197,94,0.02);
    transition: border-color 0.3s, background 0.3s;
  }
  .support-feature:hover {
    border-color: rgba(34,197,94,0.25);
    background: rgba(34,197,94,0.05);
  }
  .sf-icon {
    font-size: 1.3rem; flex-shrink: 0; margin-top: 2px;
  }
  .sf-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .sf-text span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
  }
  /* Ticket form */
  .ticket-form-wrap {
    background: var(--dark);
    border: 1px solid rgba(34,197,94,0.15);
    padding: 48px 44px;
    position: relative;
  }
  .ticket-form-wrap::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4ADE80, #22C55E, #16A34A);
  }
  .ticket-header {
    margin-bottom: 32px;
  }
  .ticket-header h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .ticket-header p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
  }
  .ticket-id-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(34,197,94,0.25);
    padding: 6px 14px;
    margin-bottom: 24px;
  }
  .ticket-priority {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    margin-bottom: 0;
  }
  .priority-opt {
    position: relative;
  }
  .priority-opt input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0;
  }
  .priority-opt label {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px;
    border: 1px solid rgba(34,197,94,0.15);
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
  }
  .priority-opt input:checked + label {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(34,197,94,0.07);
  }
  .priority-opt label:hover {
    border-color: rgba(34,197,94,0.4);
    color: var(--light-gray);
  }
  .ticket-submit {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, #4ADE80, #22C55E);
    padding: 18px 40px;
    border: none; cursor: pointer;
    width: 100%;
    transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(34,197,94,0.2);
    margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .ticket-submit:hover {
    opacity: 0.9; transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(34,197,94,0.3);
  }
  .ticket-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .ticket-success.show { display: block; }
  .ticket-success-icon {
    font-size: 3.5rem; margin-bottom: 20px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  @keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
  }
  .ticket-success h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .ticket-success p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
  }
  .ticket-success .ticket-ref {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid rgba(34,197,94,0.3);
    padding: 8px 20px;
  }
  @media (max-width: 900px) {
    .support-grid { grid-template-columns: 1fr; }
    .support-visual { position: static; }
    .ticket-form-wrap { padding: 32px 24px; }
  }
  @media (max-width: 900px) {
    .nav-links, .hero-stats { display: none; }
    #about, #contact { grid-template-columns: 1fr; gap: 50px; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-title { font-size: 4rem; }
  }
  @media (max-width: 600px) {
    nav { padding: 18px 5%; }
    .steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }
