
  :root {
    --gold: #D4A017;
    --gold-light: #F5C842;
    --orange: #E85D04;
    --dark: #0A0A0F;
    --dark2: #12121A;
    --dark3: #1C1C28;
    --text: #F0EDE8;
    --muted: #8A8499;
    --accent: #FF6B2B;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  .cursor-follower {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
    opacity: 0.5;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
    opacity: 0.3;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212,160,23,0.1);
    animation: slideDown 0.8s ease forwards;
  }

  @keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-decoration: none;
  }
  .logo span { color: var(--text); font-weight: 400; }
  
.logosize{
    width:300px;
}
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background 0.3s, transform 0.2s !important;
    color: var(--dark) !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; transform: scale(1.04); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232,93,4,0.06) 0%, transparent 50%);
  }

  /* Animated grid */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(212,160,23,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,160,23,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  }

  @keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
  }

  /* Floating orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
  }
  .orb1 {
    width: 400px; height: 400px;
    background: rgba(212,160,23,0.12);
    top: -100px; right: 10%;
    animation-delay: 0s;
  }
  .orb2 {
    width: 300px; height: 300px;
    background: rgba(232,93,4,0.08);
    bottom: 10%; left: 5%;
    animation-delay: 3s;
  }
  .orb3 {
    width: 200px; height: 200px;
    background: rgba(212,160,23,0.06);
    top: 40%; right: 30%;
    animation-delay: 6s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.25);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    animation: fadeUp 0.8s ease 0.5s both;
  }

  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    margin-top: 24px;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
    animation: fadeUp 0.8s ease 0.7s both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.9s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(212,160,23,0.3);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(212,160,23,0.4); }
  .btn-primary:hover::after { opacity: 1; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    transition: border-color 0.3s, background 0.3s;
  }
  .btn-secondary:hover { border-color: rgba(212,160,23,0.4); background: rgba(212,160,23,0.05); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* STATS TICKER */
  .stats-bar {
    background: var(--dark2);
    border-top: 1px solid rgba(212,160,23,0.1);
    border-bottom: 1px solid rgba(212,160,23,0.1);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
  }

  .ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 20s linear infinite;
    width: max-content;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
  }
  .ticker-num {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
  }
  .ticker-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
  }
  .ticker-sep {
    width: 4px; height: 4px;
    background: rgba(212,160,23,0.4);
    border-radius: 50%;
  }

  /* SECTIONS */
  section {
    padding: 100px 60px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 600px;
  }

  .section-desc {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin-top: 16px;
    font-weight: 300;
  }

  /* SERVICES */
  .services {
    background: var(--dark2);
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(212,160,23,0.08);
    border: 1px solid rgba(212,160,23,0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    background: var(--dark2);
    padding: 44px 36px;
    transition: background 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,160,23,0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .service-card:hover::before { opacity: 1; }

  .service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(212,160,23,0.15);
  }

  .service-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(212,160,23,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: transform 0.4s, background 0.4s;
  }

  .service-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
  }

  .service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .service-tag {
    font-size: 11px;
    background: rgba(212,160,23,0.08);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
  }

  /* NUMBERS */
  .numbers {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .numbers-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(212,160,23,0.05), transparent);
  }

  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
  }

  .number-card {
    background: var(--dark3);
    border: 1px solid rgba(212,160,23,0.1);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.4s, transform 0.4s;
    position: relative;
    overflow: hidden;
  }

  .number-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .number-card:hover { border-color: rgba(212,160,23,0.3); transform: translateY(-6px); }
  .number-card:hover::after { transform: scaleX(1); }

  .number-val {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 8px;
  }

  .number-label {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .number-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* WHY US */
  .why {
    background: var(--dark2);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .why-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .why-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(212,160,23,0.03);
    border: 1px solid rgba(212,160,23,0.08);
    border-radius: 12px;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
  }

  .why-item:hover {
    border-color: rgba(212,160,23,0.2);
    background: rgba(212,160,23,0.06);
  }

  .why-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .why-item-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .why-item-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  .why-visual {
    position: relative;
    height: 460px;
  }

  .why-visual-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark3) 0%, rgba(212,160,23,0.05) 100%);
    border: 1px solid rgba(212,160,23,0.12);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
  }

  .why-logo-large {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    line-height: 1.3;
  }

  .why-logo-large span { color: var(--text); font-weight: 400; }

  .why-ring {
    position: absolute;
    border: 1px solid rgba(212,160,23,0.08);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
  }

  @keyframes ringPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.05); }
  }

  .why-ring:nth-child(1) { width: 140px; height: 140px; animation-delay: 0s; }
  .why-ring:nth-child(2) { width: 240px; height: 240px; animation-delay: 1s; }
  .why-ring:nth-child(3) { width: 340px; height: 340px; animation-delay: 2s; }
  .why-ring:nth-child(4) { width: 440px; height: 440px; animation-delay: 3s; }

  .why-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px;
    background: var(--dark3);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 16px;
  }

  /* GROWTH FORMULA */
  .formula {
    background: var(--dark);
  }

  .formula-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .formula-step {
    background: var(--dark3);
    border: 1px solid rgba(212,160,23,0.08);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }

  .formula-step:hover { transform: translateY(-8px); border-color: rgba(212,160,23,0.25); }

  .step-number {
    font-family: 'Syne', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: rgba(212,160,23,0.08);
    position: absolute;
    top: 16px; right: 24px;
    line-height: 1;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
  }

  .step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* TESTIMONIAL/QUOTE */
  .quote-section {
    background: linear-gradient(135deg, rgba(212,160,23,0.05) 0%, rgba(232,93,4,0.03) 100%);
    border-top: 1px solid rgba(212,160,23,0.1);
    border-bottom: 1px solid rgba(212,160,23,0.1);
    text-align: center;
    padding: 80px 60px;
  }

  .quote-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -1px;
    line-height: 1.3;
    color: var(--text);
  }

  .quote-text em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* CTA */
  .cta-section {
    background: var(--dark2);
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
  }

  .cta-glow {
    position: absolute;
    width: 600px; height: 400px;
    border-radius: 50%;
    background: rgba(212,160,23,0.08);
    filter: blur(100px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
  }

  @keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  }

  .cta-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    position: relative;
  }

  .cta-section p {
    color: var(--muted);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 44px;
    font-weight: 300;
    position: relative;
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(37,211,102,0.25);
  }
  .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.35); }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(212,160,23,0.1);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--gold);
  }
  .footer-logo span { color: var(--muted); font-weight: 400; }

  .footer-text {
    font-size: 13px;
    color: var(--muted);
  }

  footer a {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    section { padding: 70px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { height: 300px; }
    .formula-steps { grid-template-columns: 1fr; }
    footer { padding: 32px 24px; }
    .quote-section { padding: 60px 24px; }
    .cta-section { padding: 80px 24px; }
  }

  /* WHATSAPP FLOAT */
  .wa-float {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    animation: waBounce 3s ease-in-out infinite;
    text-decoration: none;
    font-size: 28px;
  }

  @keyframes waBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  .wa-float:hover { transform: scale(1.15) !important; }

  /* COUNTER animation */
  .count-up { display: inline; }

  /* PROGRESS BARS */
  .prog-bar-wrap { margin-top: 20px; }
  .prog-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .prog-track {
    height: 3px;
    background: rgba(212,160,23,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease;
  }
