  :root {
    --black: #0a0a0f;
    --dark: #111118;
    --card: #16161f;
    --border: rgba(255,255,255,0.07);
    --white: #f5f5f0;
    --muted: #c8c8dc;
    --accent: #00c287;
    --accent2: #0066ff;
    --accent-glow: rgba(0,194,135,0.15);
  }

  body.light {
    --black: #f4f6fb;
    --dark: #ffffff;
    --card: #ffffff;
    --border: rgba(0,0,0,0.09);
    --white: #0f1117;
    --muted: #4a4a6a;
    --accent: #009e6d;
    --accent2: #0052cc;
    --accent-glow: rgba(0,158,109,0.1);
  }

  body.light nav {
    background: rgba(244,246,251,0.92);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  }

  body.light .hero-grid {
    background-image:
      linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  }

  body.light .hero-bg {
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,102,255,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,158,109,0.05) 0%, transparent 60%);
  }

  body.light .feature-card,
  body.light .testi-card,
  body.light .price-card { box-shadow: 0 1px 6px rgba(0,0,0,0.07); }

  body.light .mockup-card,
  body.light .lead-form-card { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }

  body.light .btn-secondary {
    color: var(--white);
    border-color: rgba(0,0,0,0.18);
  }
  body.light .btn-secondary:hover {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.28);
  }

  body.light .form-group input,
  body.light .form-group select,
  body.light .form-group textarea {
    background: #eef0f6;
    color: var(--white);
    border-color: rgba(0,0,0,0.12);
  }

  body.light .cta-section {
    background: linear-gradient(135deg, rgba(0,158,109,0.07) 0%, rgba(0,82,204,0.05) 100%);
    border-color: rgba(0,158,109,0.18);
  }

  body.light .logos-section { border-color: rgba(0,0,0,0.08); }
  body.light footer { border-color: rgba(0,0,0,0.08); }

  body.light .metric-box { background: rgba(0,0,0,0.03); }
  body.light .channel-row { border-color: rgba(0,0,0,0.07); }

  body.light section[style*="rgba(255,255,255,0.02)"] {
    background: rgba(0,0,0,0.02) !important;
  }

  /* THEME TOGGLE */
  .theme-toggle {
    display: flex; align-items: center; gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 6px 5px 12px;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    user-select: none;
  }

  .theme-toggle:hover { border-color: var(--accent); color: var(--white); }

  .toggle-knob {
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s;
    flex-shrink: 0;
  }

  /* LANGUAGE TOGGLE */
  .lang-toggle {
    display: flex; align-items: center; gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    user-select: none;
  }

  .lang-toggle:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
  }

  .lang-icon {
    font-size: 0.9rem;
  }

  *, *::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;
  }

  h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 5%;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.1rem;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }

  .nav-logo span {
    background: var(--accent);
    color: var(--black);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }

  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.9rem; font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--accent); color: var(--black);
    padding: 10px 22px; border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
  }

  .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; z-index: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,102,255,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,229,160,0.08) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  }

  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,229,160,0.1); border: 1px solid rgba(0,229,160,0.25);
    color: var(--accent); padding: 6px 14px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 500; margin-bottom: 24px;
  }

  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1.05rem;
    max-width: 460px; margin-bottom: 36px;
    font-weight: 300; line-height: 1.7;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent); color: var(--black);
    padding: 14px 28px; border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .btn-primary:hover { background: #00ffb3; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,160,0.3); }

  .btn-secondary {
    background: transparent; color: var(--white);
    padding: 14px 28px; border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; border: 1px solid var(--border);
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

  .hero-stats {
    display: flex; gap: 28px; margin-top: 44px;
  }

  .stat {
    border-left: 2px solid var(--accent);
    padding-left: 14px;
  }

  .stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: var(--white);
  }

  .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

  /* HERO CARD */
  .hero-visual {
    position: relative;
  }

  .mockup-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
  }

  .mockup-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
  }

  .mockup-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
  }

  .mockup-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.9rem;
  }

  .live-badge {
    background: rgba(0,229,160,0.15);
    color: var(--accent);
    font-size: 0.72rem; font-weight: 600;
    padding: 4px 10px; border-radius: 100px;
    display: flex; align-items: center; gap: 5px;
  }

  .live-dot {
    width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; animation: pulse 1.5s infinite;
  }

  .metric-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }

  .metric-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 16px;
  }

  .metric-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    color: var(--white); margin-bottom: 4px;
  }

  .metric-val.green { color: var(--accent); }
  .metric-val.blue { color: #4d9fff; }

  .metric-lbl { font-size: 0.75rem; color: var(--muted); }

  .progress-bar { height: 4px; background: var(--border); border-radius: 4px; margin-top: 10px; overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 4px; }
  .progress-fill.g { background: var(--accent); width: 78%; }
  .progress-fill.b { background: #4d9fff; width: 92%; }
  .progress-fill.o { background: #ff9f4d; width: 64%; }
  .progress-fill.p { background: #b04dff; width: 55%; }

  .channel-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .channel-row:last-child { border-bottom: none; }

  .ch-name { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
  .ch-icon { font-size: 1rem; }
  .ch-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; }

  /* LOGOS */
  .logos-section {
    padding: 40px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .logos-label {
    text-align: center;
    font-size: 0.78rem; color: var(--muted);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 28px;
  }

  .logos-scroll {
    display: flex; gap: 40px; align-items: center;
    justify-content: center; flex-wrap: wrap;
  }

  .logo-pill {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
  }

  /* FEATURES */
  .section {
    padding: 90px 5%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center; /* Added for centering content */
  }

  .section-label {
    font-size: 0.78rem; color: var(--accent);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 12px; font-weight: 600;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .section-sub {
    color: var(--muted); font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 800px; /* Increased max-width for longer text */
    margin-left: auto; /* Center the paragraph */
    margin-right: auto; /* Center the paragraph */
  }

  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 50px;
  }

  .feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
  }

  .feature-card:hover {
    border-color: rgba(0,229,160,0.3);
    transform: translateY(-4px);
  }

  .feature-card:hover .feature-icon { transform: scale(1.1); }

  .feature-icon {
    width: 48px; height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 18px;
    transition: transform 0.3s;
  }

  .feature-card h3 {
    font-size: 1rem; font-weight: 700; margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 0.85rem; color: var(--muted); line-height: 1.65;
    font-weight: 300;
  }

  /* CONVERSION SECTION */
  .conversion-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
    margin-top: 60px;
  }

  /* .conversion-steps { } */

  .step {
    display: flex; gap: 18px; margin-bottom: 32px;
    align-items: flex-start;
  }

  .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent-glow); border: 1px solid rgba(0,229,160,0.3);
    color: var(--accent); font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .step-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
  .step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

  /* LEAD FORM */
  .lead-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
    position: sticky; top: 100px;
  }

  .lead-form-card h3 {
    font-size: 1.2rem; font-weight: 800; margin-bottom: 6px;
  }

  .lead-form-card p {
    font-size: 0.85rem; color: var(--muted); margin-bottom: 24px;
    font-weight: 300;
  }

  .form-group { margin-bottom: 14px; }

  .form-group label {
    display: block; font-size: 0.78rem;
    color: var(--muted); margin-bottom: 6px; font-weight: 500;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--white); padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(0,229,160,0.4);
  }

  .form-group select option { background: var(--dark); }

  .form-submit {
    width: 100%;
    background: var(--accent); color: var(--black);
    padding: 14px; border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    border: none; cursor: pointer;
    margin-top: 6px;
    transition: all 0.25s;
  }

  .form-submit:hover { background: #00ffb3; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,229,160,0.25); }

  .form-trust {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: var(--muted);
    margin-top: 12px; justify-content: center;
  }

  /* PRICING TEASER */
  .pricing-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 50px;
  }

  .price-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    transition: border-color 0.3s;
    position: relative;
  }

  .price-card.popular {
    border-color: rgba(0,229,160,0.4);
  }

  .popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem; font-weight: 800;
    padding: 4px 14px; border-radius: 100px;
    white-space: nowrap;
  }

  .price-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    color: var(--muted); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 12px;
  }

  .price-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    margin-bottom: 4px;
  }

  .price-val span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
  .price-desc { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; font-weight: 300; }

  .price-features { list-style: none; }

  .price-features li {
    font-size: 0.82rem; color: var(--muted);
    padding: 7px 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 8px; align-items: center;
    font-weight: 300;
  }

  .price-features li:last-child { border-bottom: none; }
  .price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.8rem; }

  /* TESTIMONIAL */
  .testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 50px;
  }

  .testi-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px;
  }

  .testi-stars { color: #ffd700; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }

  .testi-text {
    font-size: 0.88rem; color: var(--muted);
    line-height: 1.7; margin-bottom: 18px; font-weight: 300;
    font-style: italic;
  }

  .testi-author { display: flex; align-items: center; gap: 10px; }

  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.85rem;
    color: var(--black);
  }

  .testi-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 700; }
  .testi-role { font-size: 0.75rem; color: var(--muted); font-weight: 300; }

  /* CTA BANNER */
  .cta-section {
    margin: 0 5% 80px;
    background: linear-gradient(135deg, rgba(0,229,160,0.1) 0%, rgba(0,102,255,0.08) 100%);
    border: 1px solid rgba(0,229,160,0.2);
    border-radius: 24px; padding: 60px;
    text-align: center; position: relative; overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,229,160,0.12), transparent 70%);
    border-radius: 50%;
  }

  .cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800; margin-bottom: 14px; position: relative;
  }

  .cta-section p {
    color: var(--muted); font-size: 1rem; margin-bottom: 32px;
    max-width: 480px; margin-left: auto; margin-right: auto; font-weight: 300;
  }

  .cta-actions {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 5%;
    display: flex; align-items: center; justify-content: space-between;
    color: var(--muted); font-size: 0.82rem;
    flex-wrap: wrap; gap: 16px;
  }

  /* WA FLOAT */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wa-bounce 3s ease-in-out infinite;
  }

  @keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    animation: none;
  }

  /* DEMO BANNER */
  .demo-banner {
    background: linear-gradient(90deg, var(--accent2), #7c3aed);
    color: white; text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem; font-weight: 500;
    position: relative;
  }

  .demo-banner strong { font-weight: 700; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .features-grid, .pricing-row, .testimonial-grid { grid-template-columns: 1fr; }
    .conversion-wrap { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .cta-section { padding: 40px 24px; }
  }

  /* TECH GRID */
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
  }

  .tech-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .tech-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .tech-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
  }

  .tech-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
  }

  /* HERO PROFILE CARD */
  .profile-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    z-index: 5;
  }

  .profile-card-inner {
    position: relative;
    z-index: 2;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    background: var(--card);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .profile-card:hover .profile-card-inner {
    transform: translateY(-10px) rotate(-1deg);
  }

  .hero-img-main {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05);
  }

  .profile-overlay-info {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--white);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
  }

  .exp-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }

  .exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .status-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .status-dot {
    width: 8px;
    height: 8px;
    background: #00c287;
    border-radius: 50%;
    box-shadow: 0 0 10px #00c287;
  }

  .profile-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.5;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -50px;
    right: -50px;
    animation: morph 8s linear infinite;
  }

  .shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent2);
    bottom: -50px;
    left: -50px;
    animation: morph 6s linear infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  }

  @media (max-width: 991px) {
    .profile-card {
      margin-top: 60px;
    }
    .experience-badge {
      left: 10px;
    }
  }

  .proficiency-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    margin-top: 15px;
  }

  .proficiency-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    transition: width 1s ease-in-out;
  }

  .proficiency-val {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 600;
  }

  /* CATEGORIZED TECH STACK */
  .tech-categories-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .tech-category {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
  }

  .tech-category:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
  }

  .category-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .category-title i {
    color: var(--accent);
  }

  .tech-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .tech-icon-sm {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
  }

  .tech-info-compact {
    flex-grow: 1;
  }

  .tech-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--muted);
  }

  .proficiency-mini {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
  }

  .p-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
  }

  @media (max-width: 1100px) {
    .tech-categories-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .tech-categories-container {
      grid-template-columns: 1fr;
    }
  }

  /* PROJECTS SECTION & TABS */
  .tabs-container {
    margin-top: 40px;
  }

  .tabs-nav {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 40px;
  }

  .tab-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tab-btn.active {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* PROJECTS GRID & CARDS */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .project-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .project-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .project-card:hover .project-img img {
    transform: scale(1.1);
  }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 194, 135, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .project-card:hover .project-overlay {
    opacity: 1;
  }

  .project-overlay i {
    font-size: 2rem;
    color: var(--black);
  }

  .project-info {
    padding: 24px;
  }

  .project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .project-tech span {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--muted);
    border: 1px solid var(--border);
  }

  /* MODAL BASE STYLES */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
  }

  .modal-content {
    background: var(--dark);
    max-width: 900px;
    margin: 40px auto;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    animation: modalOpen 0.4s ease;
  }

  @keyframes modalOpen {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }

  .close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--muted);
    cursor: pointer;
    z-index: 10;
  }

  .close-modal:hover {
    color: var(--white);
  }

  .modal-body {
    padding: 0;
  }

  /* MODAL SLIDER */
  .modal-slider-container {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
    border-radius: 24px 24px 0 0;
  }

  .modal-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }

  .modal-slider img {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
    z-index: 10;
  }

  .slider-nav:hover {
    background: var(--accent);
    color: var(--black);
  }

  .slider-nav.prev { left: 0; border-radius: 0 5px 5px 0; }
  .slider-nav.next { right: 0; border-radius: 5px 0 0 5px; }

  .slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
  }

  .dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 10px;
  }

  .modal-info {
    padding: 40px;
  }

  .modal-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .modal-tech span {
    font-size: 0.85rem;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 600;
  }

  #modalDesc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .modal-actions {
    display: flex;
    gap: 15px;
  }

  @media (max-width: 768px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }
    .modal-actions {
      flex-direction: column;
    }
    .modal-info {
      padding: 24px;
    }
  }

  /* ANIMATE IN */
  [data-animate] {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  [data-animate].visible {
    opacity: 1; transform: translateY(0);
  }
