*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: #1a1a2e;
      background: #faf8f5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
    .display-1 { font-size: clamp(3rem, 7vw, 5.5rem); }
    .display-2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
    .heading-lg { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
    .heading-md { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
    .body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; font-weight: 400; }
    .body-sm { font-size: 0.9rem; line-height: 1.6; }
    .accent-text { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; }
    :root {
      --accent: #c9952f;
      --accent-light: #e8c56a;
      --dark: #0f0f1a;
      --dark-2: #1a1a2e;
      --light: #faf8f5;
      --light-2: #f3efe8;
      --text: #1a1a2e;
      --text-light: #6b6b80;
      --white: #ffffff;
    }
    .section-padding { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem); }
    .container { max-width: 1200px; margin: 0 auto; }
    .container-narrow { max-width: 900px; margin: 0 auto; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .text-center { text-align: center; }
    .text-left { text-align: left; }
    @media (max-width: 768px) {
      .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
      .section-padding { padding: 4rem 1.5rem; }
    }
    .section-dark { background: var(--dark); color: var(--white); }
    .section-dark-2 { background: var(--dark-2); color: var(--white); }
    .section-light { background: var(--light); color: var(--text); }
    .section-light-2 { background: var(--light-2); color: var(--text); }
    .section-white { background: var(--white); color: var(--text); }
    .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 1rem 2.2rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600; font-size: 0.9rem;
      text-transform: uppercase; letter-spacing: 0.12em;
      border: none; border-radius: 9999px;
      cursor: pointer; transition: all 0.3s ease;
      text-decoration: none;
    }
    .btn-primary { background: var(--accent); color: var(--dark); }
    .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
    .btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
    .btn-outline-dark { background: transparent; color: var(--text); border: 1.5px solid rgba(26,26,46,0.2); }
    .btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      padding: 1.2rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(15,15,26,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    nav .logo { font-weight: 800; font-size: 1.3rem; color: var(--white); letter-spacing: -0.03em; }
    nav .logo span { color: var(--accent); }
    nav .nav-links { display: flex; gap: 2rem; align-items: center; }
    nav .nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
    nav .nav-links a:hover { color: var(--white); }
    .nav-cta { padding: 0.6rem 1.4rem; background: var(--accent); color: var(--dark) !important; border-radius: 9999px; font-weight: 600 !important; }
    @media (max-width: 768px) { nav .nav-links { display: none; } nav { padding: 1rem 1.5rem; } }
    .hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; max-width: 900px;
      padding: 8rem 2rem 6rem;
    }
    .hero-label {
      display: inline-block;
      padding: 0.4rem 1.2rem;
      border: 1px solid rgba(201,149,47,0.4);
      border-radius: 9999px;
      font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 2rem;
      animation: fadeUp 0.8s ease-out both;
    }
    .hero h1 {
      font-size: clamp(3rem, 7vw, 5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 1.5rem;
      color: var(--white);
      animation: fadeUp 0.8s ease-out 0.15s both;
    }
    .hero h1 .highlight { color: var(--accent); }
    .hero .subhead {
      font-size: clamp(1rem, 1.8vw, 1.3rem);
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
      max-width: 650px;
      margin: 0 auto 2.5rem;
      font-weight: 400;
      animation: fadeUp 0.8s ease-out 0.3s both;
    }
    .hero .btn-group { justify-content: center; animation: fadeUp 0.8s ease-out 0.45s both; }
    .hero-stats {
      display: flex; gap: 3rem; justify-content: center;
      margin-top: 4rem;
      animation: fadeUp 0.8s ease-out 0.6s both;
    }
    .hero-stats .stat { text-align: center; }
    .hero-stats .stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); }
    .hero-stats .stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
    .hero-glow {
      position: absolute;
      width: 80vw; height: 80vw;
      top: -20vw; right: -20vw;
      background: radial-gradient(circle, rgba(201,149,47,0.08) 0%, transparent 70%);
      animation: glowPulse 8s ease-in-out infinite alternate;
    }
    .hero-glow-2 {
      position: absolute;
      width: 60vw; height: 60vw;
      bottom: -30vw; left: -20vw;
      background: radial-gradient(circle, rgba(201,149,47,0.05) 0%, transparent 70%);
      animation: glowPulse 12s ease-in-out 2s infinite alternate;
    }
    @keyframes glowPulse { 0% { opacity: 0.5; transform: scale(1); } 100% { opacity: 1; transform: scale(1.15); } }
    .hero-grid-line {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridFloat 20s linear infinite;
    }
    @keyframes gridFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-60px); } }
    .hero-orb { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(201,149,47,0.06) 0%, transparent 70%); animation: orbFloat 20s ease-in-out infinite; }
    .hero-orb:nth-child(4) { width: 300px; height: 300px; top: 20%; left: 10%; animation-delay: 0s; }
    .hero-orb:nth-child(5) { width: 200px; height: 200px; bottom: 15%; right: 15%; animation-delay: -7s; }
    @keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
    .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
    .pain-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
    .pain-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,149,47,0.2); transform: translateY(-2px); }
    .pain-card .icon { font-size: 1.5rem; margin-bottom: 1rem; }
    .pain-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--white); }
    .pain-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
    .solution-card { background: rgba(201,149,47,0.06); border: 1px solid rgba(201,149,47,0.2); border-radius: 16px; padding: 2.5rem; margin-top: 1.5rem; }
    .solution-card h4 { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.8rem; }
    .solution-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
    @media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }
    .offering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
    .offering-card { padding: 2.5rem; border-radius: 16px; background: var(--white); border: 1px solid rgba(26,26,46,0.06); transition: all 0.3s ease; }
    .offering-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.06); transform: translateY(-3px); }
    .offering-card .badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
    .badge-dev { background: #e8f5e9; color: #2e7d32; }
    .badge-smm { background: #e3f2fd; color: #1565c0; }
    .offering-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; }
    .offering-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
    .offering-card ul { margin-top: 1rem; list-style: none; }
    .offering-card ul li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text); padding-left: 1.5rem; position: relative; }
    .offering-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
    .offering-merge { grid-column: 1 / -1; text-align: center; padding: 2rem; background: var(--dark); color: var(--white); border-radius: 16px; }
    .offering-merge h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
    .offering-merge h3 span { color: var(--accent); }
    .offering-merge p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
    @media (max-width: 768px) { .offering-grid { grid-template-columns: 1fr; } }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
    .step { text-align: center; padding: 2.5rem 1.5rem; }
    .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--dark); font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
    .step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; }
    .step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
    @media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 1.5rem; } }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; align-items: start; }
    .pricing-card { background: var(--white); border: 1px solid rgba(26,26,46,0.08); border-radius: 20px; padding: 2.5rem 2rem; position: relative; transition: all 0.3s ease; }
    .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
    .pricing-card.featured { background: var(--dark); color: var(--white); transform: scale(1.05); border-color: var(--accent); }
    .pricing-card.featured:hover { transform: scale(1.05) translateY(-5px); }
    .pricing-card.featured .price, .pricing-card.featured h3 { color: var(--white); }
    .pricing-card.featured ul li { color: rgba(255,255,255,0.7); }
    .pricing-card.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--dark); padding: 0.3rem 1.2rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .pricing-card .tier-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.5rem; }
    .pricing-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.3rem; }
    .pricing-card .price { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.2rem; }
    .pricing-card .price .period { font-size: 1rem; font-weight: 400; color: var(--text-light); }
    .pricing-card.featured .price .period { color: rgba(255,255,255,0.4); }
    .pricing-card .desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(26,26,46,0.06); }
    .pricing-card.featured .desc { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
    .pricing-card ul { list-style: none; margin-bottom: 1.5rem; }
    .pricing-card ul li { padding: 0.5rem 0; font-size: 0.85rem; color: var(--text); padding-left: 1.5rem; position: relative; }
    .pricing-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
    .pricing-card .btn { width: 100%; justify-content: center; }
    @media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; } .pricing-card.featured:hover { transform: translateY(-5px); } }
    .verticals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
    .vertical-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 1.8rem 1.5rem; text-align: center; transition: all 0.3s ease; }
    .vertical-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
    .vertical-card .emoji { font-size: 2rem; margin-bottom: 0.8rem; }
    .vertical-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
    .vertical-card p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
    @media (max-width: 768px) { .verticals-grid { grid-template-columns: 1fr 1fr; } }
    .faq-list { max-width: 800px; margin: 2rem auto 0; }
    .faq-item { border-bottom: 1px solid rgba(26,26,46,0.08); padding: 1.5rem 0; }
    .faq-item:first-child { border-top: 1px solid rgba(26,26,46,0.08); }
    .faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1rem; cursor: pointer; }
    .faq-question .toggle { font-size: 1.2rem; color: var(--accent); transition: transform 0.2s; }
    .faq-answer { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-top: 0.8rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-item.open .faq-answer { max-height: 500px; }
    .faq-item.open .toggle { transform: rotate(45deg); }
    .cta-final { text-align: center; position: relative; overflow: hidden; }
    .cta-final h2 { max-width: 700px; margin: 0 auto 1.5rem; }
    .cta-final .subhead { color: rgba(255,255,255,0.5); max-width: 550px; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.6; }
    footer { padding: 3rem 2rem; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
    footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
    footer .footer-links { display: flex; gap: 2rem; justify-content: center; margin-bottom: 1.5rem; }
    footer .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    footer .footer-links a:hover { color: var(--accent); }
    .mt-2 { margin-top: 2rem; }
    .mb-1 { margin-bottom: 1rem; }