/*
Theme Name: Peak Web Studio
Theme URI: https://peakwebstudio.com/
Author: Peak Web Studio
Description: A responsive one-page WordPress theme converted from the Peak Web Studio landing page.
Version: 3.7.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: peak-web-studio
*/

:root {
    --font-display: 'Space Grotesk', sans-serif;
    --font-stencil: 'Stardos Stencil', cursive;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 14px;
    --ease: cubic-bezier(.22,1,.36,1);
  }

  html[data-theme="light"] {
    --bg: #F7FAF6;
    --surface: #FFFFFF;
    --surface-2: #ECF3EA;
    --text: #1A2E22;
    --text-secondary: #5C6E60;
    --text-muted: #92A498;
    --border: #DCE7DA;
    --accent: #15805A;
    --accent-2: #6EC97A;
    --accent-text: #FFFFFF;
    --shadow: 0 12px 32px rgba(20,40,28,0.08);
  }

  html[data-theme="dark"] {
    --bg: #0F1712;
    --surface: #17211A;
    --surface-2: #1D2921;
    --text: #EDF5EC;
    --text-secondary: #A9BCAC;
    --text-muted: #718176;
    --border: #2A362D;
    --accent: #4CC47D;
    --accent-2: #8FE29B;
    --accent-text: #0F1712;
    --shadow: 0 12px 32px rgba(0,0,0,0.4);
  }

  html { scroll-behavior: smooth; }
  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    transition: background .4s var(--ease), color .4s var(--ease);
    overflow-x: hidden;
  }

  h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
  a { color: inherit; text-decoration: none; }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

  /* ---------- NAV ---------- */
  header {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  nav.wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
  }
  .brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-stencil); font-weight: 700; font-size: 18px; }
  .brand-mark {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    position: relative; flex-shrink: 0;
  }
  .brand-mark svg { position: absolute; inset: 0; }
  .nav-links { display: flex; gap: 32px; font-size: 15px; color: var(--text-secondary); }
  .nav-links a { transition: color .2s; }
  .nav-links a:hover { color: var(--text); }
  .nav-right { display: flex; align-items: center; gap: 16px; }

  .theme-toggle {
    width: 52px; height: 30px; border-radius: 20px;
    background: var(--surface-2); border: 1px solid var(--border);
    position: relative; cursor: pointer; flex-shrink: 0;
  }
  .theme-toggle .knob {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent);
    position: absolute; top: 3px; left: 3px;
    transition: transform .35s var(--ease), background .3s;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-text); font-size: 12px;
  }
  html[data-theme="dark"] .theme-toggle .knob { transform: translateX(22px); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
    cursor: pointer; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s, background .25s;
    white-space: nowrap;
  }
  .btn-primary { background: var(--text); color: var(--bg); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn-ghost { border-color: var(--border); color: var(--text); }
  .btn-ghost:hover { border-color: var(--text-secondary); }

  /* ---------- HERO ---------- */
  .hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
  .blob {
    position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35;
    pointer-events: none; z-index: 0;
  }
  .blob-1 { width: 420px; height: 420px; background: var(--accent); top: -160px; right: -80px; animation: float1 16s ease-in-out infinite; }
  .blob-2 { width: 320px; height: 320px; background: var(--accent-2); bottom: -140px; left: -100px; animation: float2 18s ease-in-out infinite; }
  @keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 50px); } }
  @keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px, -30px); } }

  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
  .hero h1 { font-family: var(--font-stencil); font-weight: 700; font-size: 52px; line-height: 1.06; margin-bottom: 22px; opacity: 0; animation: rise .8s var(--ease) .1s forwards; }
  .hero h1 span { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero p.lead { font-size: 18px; color: var(--text-secondary); max-width: 460px; margin-bottom: 32px; opacity: 0; animation: rise .8s var(--ease) .25s forwards; }
  .hero-ctas { display: flex; gap: 14px; opacity: 0; animation: rise .8s var(--ease) .4s forwards; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

  /* browser mockup */
  .mock { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; opacity: 0; animation: rise .9s var(--ease) .3s forwards; }
  .mock-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--border); }
  .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
  .mock-url { margin-left: 8px; flex: 1; background: var(--surface-2); border-radius: 6px; padding: 6px 12px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text-secondary); }
  .mock-url .cursor { display: inline-block; width: 7px; height: 13px; background: var(--accent); margin-left: 2px; animation: blink 1s step-end infinite; vertical-align: middle; }
  @keyframes blink { 50% { opacity: 0; } }
  .mock-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
  .skel { border-radius: 6px; background: var(--surface-2); opacity: 0; transform: scaleX(0); transform-origin: left; animation: grow .6s var(--ease) forwards; }
  @keyframes grow { to { opacity: 1; transform: scaleX(1); } }
  .skel.title { height: 22px; width: 60%; animation-delay: 1.1s; }
  .skel.line1 { height: 12px; width: 90%; animation-delay: 1.3s; }
  .skel.line2 { height: 12px; width: 75%; animation-delay: 1.45s; }
  .skel.btn { height: 36px; width: 130px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); margin-top: 6px; animation-delay: 1.6s; }
  .skel.cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 8px; }
  .skel.card { height: 60px; animation-delay: 1.8s; }
  .skel.card:nth-child(2) { animation-delay: 1.9s; }
  .skel.card:nth-child(3) { animation-delay: 2s; }

  /* ---------- SECTIONS ---------- */
  section { padding: 88px 0; }
  .section-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
  .section-head h2 { font-size: 34px; margin-bottom: 12px; }
  .section-head p { color: var(--text-secondary); font-size: 16px; }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- PRICING ---------- */
  .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .plan {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px 24px; display: flex; flex-direction: column; position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  }
  .plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--text-secondary); }
  .plan.featured { border-color: var(--accent); background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, var(--surface)), var(--surface)); }
  .badge { position: absolute; top: -12px; left: 24px; background: var(--accent); color: var(--accent-text); font-size: 11.5px; font-weight: 600; padding: 4px 12px; border-radius: 999px; letter-spacing: .02em; }
  .plan-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
  .plan-desc { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 18px; min-height: 40px; }
  .plan-price { font-family: var(--font-mono); font-size: 30px; font-weight: 500; margin-bottom: 2px; }
  .plan-price .cents { font-size: 15px; color: var(--text-muted); }
  .plan-monthly { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-secondary); margin-bottom: 26px; flex: 1; }
  .plan-features li { display: flex; align-items: flex-start; gap: 8px; }
  .plan-features li::before { content: "✓"; color: var(--accent); font-weight: 600; flex-shrink: 0; }
  .plan .btn { width: 100%; }

  /* ---------- PROCESS ---------- */
  .process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
  .step { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); position: relative; }
  .step-num { font-family: var(--font-mono); color: var(--accent); font-size: 13px; margin-bottom: 14px; }
  .step h3 { font-size: 18px; margin-bottom: 8px; }
  .step p { font-size: 14.5px; color: var(--text-secondary); }

  /* ---------- FAQ ---------- */
  .faq { max-width: 720px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { padding: 20px 4px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 500; font-size: 15.5px; }
  .faq-q .plus { transition: transform .3s var(--ease); color: var(--accent); font-size: 20px; font-weight: 400; }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); font-size: 14.5px; color: var(--text-secondary); }
  .faq-a p { padding: 0 4px 20px; }

  /* ---------- CTA / FOOTER ---------- */
  .cta-band { text-align: center; padding: 90px 0; }
  .cta-band h2 { font-size: 36px; margin-bottom: 14px; }
  .cta-band p { color: var(--text-secondary); margin-bottom: 30px; }

  footer { border-top: 1px solid var(--border); padding: 36px 0; }
  footer .wrap { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--text-muted); }

  /* ---------- STATS ---------- */
  .stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border); }
  .stat { text-align: center; }
  .stat-num { font-family: var(--font-mono); font-size: 32px; font-weight: 500; color: var(--accent); }
  .stat-label { font-size: 12.5px; color: var(--text-secondary); margin-top: 4px; }

  /* ---------- TRUST BADGES ---------- */
  .trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-secondary); background: var(--surface-2); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }
  .trust-badge::before { content: "✓"; color: var(--accent); font-weight: 600; }

  /* ---------- GALLERY ---------- */
  .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
  .gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .gallery-thumb { height: 150px; position: relative; overflow: hidden; }
  .gallery-thumb .g-bar { position: absolute; top: 0; left: 0; right: 0; height: 24px; background: rgba(255,255,255,.28); display: flex; align-items: center; gap: 5px; padding: 0 10px; }
  .gallery-thumb .g-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.8); }
  .gallery-thumb .g-blocks { position: absolute; top: 40px; left: 14px; right: 14px; bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
  .gallery-thumb .g-block { background: rgba(255,255,255,.35); border-radius: 4px; }
  .gallery-info { padding: 16px 18px; }
  .gallery-info .g-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 3px; }
  .gallery-info .g-type { font-size: 12.5px; color: var(--text-muted); }

  /* ---------- QUIZ ---------- */
  .quiz-card { max-width: 640px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; box-shadow: var(--shadow); }
  .quiz-question { font-family: var(--font-display); font-size: 19px; margin-bottom: 22px; }
  .quiz-options { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .quiz-option { padding: 11px 22px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); font-size: 14px; cursor: pointer; transition: all .2s var(--ease); color: var(--text); font-family: var(--font-body); }
  .quiz-option:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
  .quiz-result { margin-top: 20px; font-size: 14.5px; color: var(--text-secondary); min-height: 22px; opacity: 0; transition: opacity .3s var(--ease); }
  .quiz-result.show { opacity: 1; }
  .quiz-result strong { color: var(--accent); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
  .testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .testimonial .stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
  .testimonial p.quote { font-size: 14.5px; color: var(--text); margin-bottom: 20px; }
  .testimonial .who { display: flex; align-items: center; gap: 10px; }
  .testimonial .avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0; }
  .testimonial .who-name { font-size: 13.5px; font-weight: 500; }
  .testimonial .who-role { font-size: 12px; color: var(--text-muted); }

  /* ---------- COMPARE TABLE ---------- */
  .compare-wrap { margin-top: 60px; overflow-x: auto; }
  .compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
  .compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border); }
  .compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text-secondary); }
  .compare-table thead th { font-family: var(--font-display); font-weight: 600; color: var(--text); }
  .compare-table td.yes { color: var(--accent); font-weight: 600; }
  .compare-table td.no { color: var(--text-muted); }

  /* ---------- BACK TO TOP ---------- */
  .back-to-top {
    position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--text); color: var(--bg); display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
    z-index: 90; font-size: 18px; border: none;
  }
  .back-to-top.show { opacity: 1; pointer-events: auto; }
  .back-to-top:hover { transform: translateY(-3px); }

  /* nav active state */
  .nav-links a { position: relative; }
  .nav-links a.active { color: var(--text); }
  .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -26px; height: 2px; background: var(--accent); }

  /* pulsing featured badge */
  .badge.pulse { animation: pulseBadge 2.2s ease-in-out infinite; }
  @keyframes pulseBadge { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

  /* checkmark hover micro-interaction */
  .plan-features li { transition: transform .2s var(--ease); }
  .plan-features li:hover { transform: translateX(3px); }
  .plan-features li:hover::before { display: inline-block; animation: checkBounce .4s var(--ease); }
  @keyframes checkBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }

  /* included-in-every-plan strip */
  .included-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-bottom: 44px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
  .included-item { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text-secondary); }
  .included-item::before { content: "✓"; color: var(--accent); font-weight: 600; }

  /* ---------- PLAN GROUP TOGGLE ---------- */
  .plan-toggle { display: flex; justify-content: center; gap: 6px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 5px; width: fit-content; margin: 0 auto 40px; }
  .plan-toggle button { border: none; background: transparent; padding: 9px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--text-secondary); cursor: pointer; font-family: var(--font-body); transition: all .25s var(--ease); }
  .plan-toggle button.active { background: var(--text); color: var(--bg); }
  .plan.hidden-group { display: none; }
  .compare-table td.hidden-group, .compare-table th.hidden-group { display: none; }

  /* ---------- ABOUT ---------- */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .about-badge { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); margin-bottom: 22px; position: relative; }
  .about-badge svg { position: absolute; inset: 0; }
  .about-grid h2 { font-size: 30px; margin-bottom: 16px; }
  .about-grid p { color: var(--text-secondary); font-size: 15.5px; margin-bottom: 14px; }
  .about-stats { display: flex; gap: 32px; margin-top: 24px; }
  .about-stats .stat-num { font-size: 24px; }

  /* ---------- CASE STUDY ---------- */
  .case-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
  .case-panel { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
  .case-label { padding: 10px 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; }
  .case-before .case-label { background: #E9E4DC; color: #7A6F60; }
  .case-after .case-label { background: var(--accent); color: var(--accent-text); }
  .case-shot { padding: 20px; height: 220px; display: flex; flex-direction: column; gap: 8px; }
  .case-before .case-shot { background: #F3EFE8; }
  .case-after .case-shot { background: var(--surface); }
  .case-row { display: flex; gap: 8px; }
  .cb { background: #D8D0C2; border-radius: 3px; }
  .ca { background: var(--surface-2); border-radius: 6px; }
  .case-arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--accent); }

  /* ---------- GALLERY MODAL ---------- */
  .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 200; padding: 24px; }
  .modal-overlay.open { display: flex; }
  .modal-box { background: var(--surface); border-radius: var(--radius); max-width: 480px; width: 100%; overflow: hidden; box-shadow: var(--shadow); }
  .modal-thumb { height: 180px; }
  .modal-body { padding: 26px; }
  .modal-body h3 { font-size: 19px; margin-bottom: 6px; }
  .modal-body .m-type { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
  .modal-body p { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 20px; }
  .modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 22px; color: white; cursor: pointer; }
  .gallery-item { cursor: pointer; }

  /* ---------- CONTACT FORM ---------- */
  .contact-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text); font-family: var(--font-body); font-size: 14.5px;
    transition: border-color .2s;
  }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
  .contact-form textarea { resize: vertical; min-height: 100px; }
  .contact-form label { font-size: 13px; color: var(--text-secondary); margin-bottom: -8px; }
  .form-note { font-size: 12.5px; color: var(--text-muted); text-align: center; margin-top: 4px; }


    .hero-grid { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr 1fr; }
    .process { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero h1 { font-size: 38px; }
    .stats-strip { grid-template-columns: 1fr 1fr; gap: 28px; }
    .gallery { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .case-arrow { transform: rotate(90deg); padding: 6px 0; }
  }
  @media (max-width: 560px) {
    .plans { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001s !important; transition-duration: .001s !important; }
  }

/* Restrained editorial redesign */
:root, html[data-theme="light"], html[data-theme="dark"] {
  --bg: #f7f4ee; --surface: #f7f4ee; --surface-2: #eee8df;
  --text: #1d2522; --text-secondary: #4f5753; --text-muted: #747a76;
  --border: #cfc7bb; --accent: #b34b35; --accent-2: #b34b35;
  --accent-text: #fff; --shadow: none; --radius: 0;
  --font-display: "Lora", Georgia, serif; --font-stencil: "Lora", Georgia, serif;
  --font-body: "Nunito Sans", Arial, sans-serif; --font-mono: "Nunito Sans", Arial, sans-serif;
}
body { background: var(--bg); letter-spacing: -.01em; }
.wrap { max-width: 1180px; padding-left: 40px; padding-right: 40px; }
header { background: rgba(247,244,238,.96); backdrop-filter: none; }
nav.wrap { height: 68px; }
.brand { font-family: var(--font-body); font-size: 16px; letter-spacing: -.02em; }
.brand-logo { display: block; width: 176px; height: 52px; object-fit: cover; object-position: center; mix-blend-mode: multiply; }
.footer-logo { width: 142px; height: 42px; }
.brand-mark { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); }
.theme-toggle, .blob, .mock, .stats-strip, #quiz, .included-strip, .trust-badges, #case-study, .compare-wrap, .back-to-top { display: none !important; }
.btn { border-radius: 0; padding: 12px 18px; font-weight: 600; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover, .plan:hover { transform: none; box-shadow: none; }
.hero { padding: 108px 0 96px; border-bottom: 1px solid var(--border); }
.hero-grid { display: block; max-width: 820px; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(50px, 6.5vw, 82px); line-height: 1.01; letter-spacing: -.04em; max-width: 820px; animation: none; opacity: 1; }
.hero h1 span { background: none; color: var(--accent); }
.hero p.lead { font-size: 19px; line-height: 1.65; max-width: 670px; animation: none; opacity: 1; }
.hero-ctas { animation: none; opacity: 1; }
.eyebrow { padding: 0; border: 0; background: none; border-radius: 0; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; }
section { padding: 92px 0; border-bottom: 1px solid var(--border); }
.section-head { text-align: left; max-width: 760px; margin: 0 0 48px; }
.section-head h2, .cta-band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.035em; }
.reveal { opacity: 1; transform: none; transition: none; }
.plan-toggle { justify-content: flex-start; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; width: 100%; margin: 0 0 28px; }
.plan-toggle button { border-radius: 0; background: transparent !important; color: var(--text) !important; border-bottom: 3px solid transparent; }
.plan-toggle button.active { border-bottom-color: var(--accent); }
.plans { grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.plan, .plan.featured { padding: 38px 34px; border: 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: transparent; }
.plan.featured { background: #fbebe6; }
.badge { top: 0; left: auto; right: 0; border-radius: 0; }
.plan-name { font-size: 20px; }
.plan-price { font-size: 44px; }
.plan-price-label { display: block; margin-top: 2px; font-size: 13px; font-weight: 700; color: var(--text-secondary); letter-spacing: .01em; }
.plan-monthly { margin: 12px 0 22px; color: var(--text-secondary); }
.plan-monthly strong { display: block; color: var(--text); font-size: 19px; }
.plan-monthly span { display: block; margin-top: 2px; font-size: 13px; }
.process { gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.step { padding: 38px 32px; border: 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: transparent; border-radius: 0; }
.step-num { color: var(--accent); }
#about, #process, #contact { background: var(--surface-2) !important; }
.about-grid { grid-template-columns: 1fr; max-width: 820px; }
.about-badge, .about-stats { display: none; }
.about-grid h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5vw, 60px); line-height: 1.04; }
.faq { max-width: none; }
.faq-q { font-size: 18px; padding: 24px 0; }
.contact-form { max-width: 760px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.contact-form label, .contact-form textarea, .contact-form button, .form-note { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { border-radius: 0; background: transparent; border: 1px solid var(--text); }
.cta-band { text-align: left; background: var(--text); color: #f7f4ee; }
.cta-band p { color: #cfd3d0; }
footer .wrap { align-items: flex-start; }
@media (max-width: 760px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .hero { padding: 82px 0 72px; }
  .hero h1 { font-size: 56px; }
  .plans, .process, .contact-form { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .brand-logo { width: 142px; height: 43px; }
}
