 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0c0c0a;
    --surface: #161613;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);
    --text-primary: #f0ede6;
    --text-secondary: #9c9a94;
    --text-muted: #5a5854;
    --accent: #Ec9e23;
    --accent-dim: rgba(200,240,74,0.12);
    --accent-text: #0c0c0a;
    --amber: #E8A04A;
    --font: 'Figtree', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }

  /* ── LAYOUT ── */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* ── HEADER ── */
  header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(12,12,10,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    display: flex;
    align-items: center; 
  }

  .logo span {
    color: var(--accent);
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--accent-text);
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
  }

  .header-cta:hover { opacity: 0.88; }

  /* ── HERO ── */
  .hero {
    padding: 6rem 0 5rem;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-dim);
    border: 1px solid rgba(200,240,74,0.2);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 2rem;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .hero-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
  }

  .hero-form input[type="email"] {
    font-family: var(--font);
    font-size: 15px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    border-radius: 100px;
    padding: 13px 22px;
    width: 300px;
    max-width: 100%;
    outline: none;
    transition: border-color 0.15s;
  }

  .hero-form input[type="email"]::placeholder { color: var(--text-muted); }
  .hero-form input[type="email"]:focus { border-color: rgba(200,240,74,0.45); }

  .hero-form button {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    background: var(--accent);
    color: var(--accent-text);
    border: none;
    border-radius: 100px;
    padding: 13px 28px;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
  }

  .hero-form button:hover { opacity: 0.9; }
  .hero-form button:active { transform: scale(0.98); }

  .hero-social-proof {
    font-size: 13px;
    color: var(--text-muted);
  }

  .hero-social-proof strong {
    color: var(--text-secondary);
    font-weight: 600;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    overflow: hidden;
  }

  .trust-items {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  /* ── SERVICES ── */
  .section {
    padding: 5rem 0;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }

  .section-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 600px;
  }

  .section-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 3rem;
    line-height: 1.7;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .service-card {
    background: var(--surface);
    padding: 1.75rem;
    transition: background 0.15s;
  }

  .service-card:hover { background: #1c1c19; }

  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-dim);
    border: 1px solid rgba(200,240,74,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1.1rem;
  }

  .service-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
  }

  .service-outcome {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* ── FOUNDER / TRUST ── */
  .trust-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
  }

  .founder-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .founder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #1e3a12, #3a6e1d); */
    background: url(./logo.png);
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    border: 2px solid rgba(200,240,74,0.2);
  }

  .founder-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .founder-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0.9rem;
  }

  .founder-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem;
    text-align: center;
  }

  .stat-num {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.1rem;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .author-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
  .author-role { font-size: 12px; color: var(--text-muted); }

  /* ── FAQ ── */
  .faq-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
  }

  .faq-list { margin-top: 2.5rem; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    gap: 1rem;
    user-select: none;
  }

  .faq-question:hover { color: var(--accent); }

  .faq-chevron {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s;
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-item.open .faq-question { color: var(--accent); }

  .faq-answer {
    display: none;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    padding-bottom: 1.2rem;
    max-width: 680px;
  }

  .faq-item.open .faq-answer { display: block; }

  /* ── FINAL CTA ── */
  .final-cta {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
  }

  .final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .final-cta h2 em {
    font-style: normal;
    color: var(--accent);
  }

  .final-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-left { display: flex; flex-direction: column; gap: 4px; }
  .footer-tagline { font-size: 12px; color: var(--text-muted); }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.15s;
  }

  .footer-links a:hover { color: var(--text-secondary); }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: color 0.15s, border-color 0.15s;
    text-decoration: none;
  }

  .social-link:hover {
    color: var(--accent);
    border-color: rgba(200,240,74,0.3);
  }

  /* ── SUCCESS STATE ── */
  .success-msg {
    display: none;
    text-align: center;
    padding: 1rem;
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
  }

  /* ── MOBILE ── */
  @media (max-width: 600px) {
    .hero { padding: 4rem 0 3.5rem; }
    .hero-form input[type="email"] { width: 100%; }
    .hero-form { flex-direction: column; align-items: stretch; }
    .hero-form button { width: 100%; }
    .founder-card { flex-direction: column; gap: 1.25rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .header-cta span { display: none; }
    .trust-items { gap: 1.5rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 1.5rem; }
    .container { padding: 0 1.25rem; }
  }