/* =========================================
   AUERSWALD — SUBSCRIPTION X STYLE
   Cream × Black × Highlight Words
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --cream:   #F5F0E8;
    --black:   #0d0d0d;
    --dark:    #1a1a1a;
    --gray:    #6b6b6b;
    --border:  #e5e0d8;
    --orange:  #FF5C35;
    --purple:  #6B3DFB;
    --yellow:  #F5C518;
    --red:     #FF3B3B;
    --transition: all 0.25s ease;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--purple); color: white; }

/* ===== HIGHLIGHT WORD ===== */
.hl {
    display: inline-block;
    color: white;
    padding: 0 12px 4px;
    border-radius: 8px;
    line-height: 1.2;
}
.hl-purple { background: var(--purple); }
.hl-orange { background: var(--orange); }
.hl-yellow { background: var(--yellow); color: var(--black); }
.hl-red    { background: var(--red); }
.hl-black  { background: var(--black); }

/* ===== NAVBAR ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 68px;
    display: flex; align-items: center;
    padding: 0 48px;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; margin: 0 auto; }

.nav-brand { font-size: 17px; font-weight: 800; color: var(--black); text-decoration: none; letter-spacing: -0.03em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--gray); font-size: 14px; font-weight: 500; text-decoration: none; padding: 6px 14px; border-radius: 8px; transition: var(--transition); }
.nav-links a:hover { color: var(--black); background: rgba(0,0,0,0.05); }
.nav-links a.active { color: var(--black); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-email { font-size: 13px; color: var(--gray); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nav-email:hover { color: var(--black); }

.btn-black { background: var(--black); color: white; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); border: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; }
.btn-black:hover { background: var(--dark); color: white; transform: translateY(-1px); }

.btn-ghost-dark { background: transparent; color: var(--black); padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid var(--black); }
.btn-ghost-dark:hover { background: var(--black); color: white; }

.btn-outline { background: transparent; color: var(--black); padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { color: var(--purple); }
.btn-arrow { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid currentColor; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }

.lang-select { background: transparent; border: 1px solid var(--border); color: var(--gray); font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 20px; cursor: pointer; font-family: inherit; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

@media(max-width:768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 24px 20px; border-top: 1px solid var(--border); gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--border); font-size: 16px; }
    .nav-toggle { display: flex; }
    .nav-email { display: none; }
}

/* ===== HERO ===== */
.hero {
    padding: 120px 48px 0;
    text-align: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.hero h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: var(--gray); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* Hero portfolio scroll */
.hero-scroll { overflow: hidden; margin: 0 -48px; position: relative; }
.hero-scroll-inner { display: flex; gap: 20px; animation: hscroll 30s linear infinite; width: max-content; padding: 20px 48px; }
.hero-card { flex-shrink: 0; width: 320px; height: 220px; border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
.hero-card:nth-child(8n+1) { background: #1a1a2e; transform: rotate(-2deg); }
.hero-card:nth-child(8n+2) { background: #6B3DFB; transform: rotate(1.5deg); }
.hero-card:nth-child(8n+3) { background: #FF5C35; transform: rotate(-1deg); }
.hero-card:nth-child(8n+4) { background: #F5C518; transform: rotate(2deg); }
.hero-card:nth-child(8n+5) { background: #0d0d0d; transform: rotate(-1.5deg); }
.hero-card:nth-child(8n+6) { background: #FF3B3B; transform: rotate(1deg); }
.hero-card:nth-child(8n+7) { background: #0a3d62; transform: rotate(-2deg); }
.hero-card:nth-child(8n+8) { background: #1e3a5f; transform: rotate(1.5deg); }
@keyframes hscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media(max-width:768px) { .hero { padding: 110px 20px 60px; } .hero-scroll { margin: 0 -20px; padding: 0 20px; } }

/* ===== TICKER ===== */
.ticker { background: var(--black); padding: 14px 0; overflow: hidden; }
.ticker-row { display: flex; gap: 0; margin-bottom: 8px; }
.ticker-row:last-child { margin-bottom: 0; }
.ticker-track { display: flex; gap: 0; animation: tick 20s linear infinite; white-space: nowrap; }
.ticker-track.reverse { animation-direction: reverse; animation-duration: 25s; }
.ticker-item { padding: 0 24px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 20px; }
.ticker-item::after { content: '✦'; font-size: 8px; color: var(--orange); }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 96px 48px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 96px 48px; }
.section-full-inner { max-width: 1200px; margin: 0 auto; }
@media(max-width:768px) { .section, .section-full { padding: 64px 20px; } }

/* ===== ABOUT / STATS ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-illustration { background: var(--black); border-radius: 24px; height: 360px; display: flex; align-items: center; justify-content: center; font-size: 100px; position: relative; overflow: hidden; }
.about-illustration::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(107,61,251,0.3), transparent 60%); }
.stats-row { display: flex; gap: 40px; margin: 28px 0; }
.stat-item .stat-num { font-size: 48px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.stat-item .stat-num sup { font-size: 28px; color: var(--orange); }
.stat-item .stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }
@media(max-width:768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== SERVICES ===== */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; margin-bottom: 48px; }
.services-header h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; }
@media(max-width:768px) { .services-header { grid-template-columns: 1fr; gap: 16px; } }

.svc-list { border-top: 1px solid var(--border); }
.svc-row { display: grid; grid-template-columns: 48px 200px 1fr 40px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--border); transition: background var(--transition); cursor: pointer; }
.svc-row:hover { background: rgba(0,0,0,0.02); margin: 0 -16px; padding: 24px 16px; border-radius: 12px; }
.svc-num-badge { width: 32px; height: 32px; border-radius: 50%; background: var(--black); color: white; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-icon-box { width: 180px; height: 80px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.svc-icon-box.orange { background: var(--orange); }
.svc-icon-box.purple { background: var(--purple); }
.svc-icon-box.yellow { background: var(--yellow); }
.svc-icon-box.red    { background: var(--red); }
.svc-info h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.svc-info p  { font-size: 13px; color: var(--gray); line-height: 1.6; }
.svc-arrow-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: var(--transition); }
.svc-row:hover .svc-arrow-btn { background: var(--black); color: white; border-color: var(--black); }
@media(max-width:768px) { .svc-row { grid-template-columns: 32px 1fr 32px; } .svc-icon-box { display: none; } }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--cream); }
.portfolio-header { text-align: center; margin-bottom: 64px; }
.portfolio-header h2 { font-size: clamp(32px,5vw,56px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px; }
.portfolio-header p { color: var(--gray); font-size: 15px; max-width: 500px; margin: 0 auto; line-height: 1.7; }

.portfolio-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.portfolio-visual { background: var(--black); border-radius: 24px; height: 400px; display: flex; align-items: center; justify-content: center; font-size: 80px; position: relative; overflow: hidden; }
.portfolio-info {}
.portfolio-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.portfolio-logo-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.portfolio-logo-name { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.portfolio-info p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.portfolio-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.portfolio-nav { display: flex; justify-content: space-between; align-items: center; }
.portfolio-nav-btns { display: flex; gap: 8px; }
.nav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.nav-btn:hover, .nav-btn.active { background: var(--black); color: white; border-color: var(--black); }
.portfolio-btns { display: flex; gap: 12px; justify-content: center; margin-top: 48px; }
@media(max-width:768px) { .portfolio-showcase { grid-template-columns: 1fr; gap: 32px; } }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); position: relative; }
.process-step:first-child { padding-top: 0; }
.step-badge { width: 36px; height: 36px; border-radius: 50%; background: var(--black); color: white; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.process-step h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--gray); line-height: 1.65; }
@media(max-width:768px) { .process-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--cream); }
.testi-header { text-align: center; margin-bottom: 64px; }
.testi-header h2 { font-size: clamp(28px,4vw,50px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px; }

.testi-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.testi-list { display: flex; flex-direction: column; gap: 0; }
.testi-tab { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; cursor: pointer; transition: var(--transition); }
.testi-tab.active { background: var(--black); }
.testi-tab.active .testi-tab-name { color: white; }
.testi-tab.active .testi-tab-loc { color: rgba(255,255,255,0.5); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.testi-tab-name { font-size: 14px; font-weight: 700; }
.testi-tab-loc  { font-size: 12px; color: var(--gray); }

.testi-card { background: white; border-radius: 20px; padding: 36px; border: 1px solid var(--border); }
.testi-card-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.testi-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.3; }
.testi-card p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.testi-card-author { font-size: 14px; font-weight: 700; }
.testi-card-loc { font-size: 13px; color: var(--gray); }
@media(max-width:768px) { .testi-layout { grid-template-columns: 1fr; } .testi-list { flex-direction: row; overflow-x: auto; gap: 8px; } }

/* ===== CTA / FOOTER ===== */
.cta-section { background: var(--black); border-radius: 32px 32px 0 0; padding: 80px 48px; margin-top: 80px; }
.cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-section h2 { font-size: clamp(36px,5vw,64px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; color: white; }
.cta-right p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.cta-socials { display: flex; gap: 10px; margin-bottom: 32px; }
.social-sq { width: 52px; height: 52px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; text-decoration: none; transition: var(--transition); }
.social-sq:hover { border-color: white; background: rgba(255,255,255,0.08); }
.cta-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--black); padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-white:hover { background: var(--cream); }
.cta-email { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.cta-email:hover { color: white; }
.cta-hand { font-size: 60px; margin-bottom: 16px; }
@media(max-width:768px) { .cta-section { padding: 56px 20px; border-radius: 24px 24px 0 0; } .cta-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom { background: var(--black); padding: 24px 48px 40px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-links a:hover { color: white; }
@media(max-width:768px) { .footer-bottom { padding: 16px 20px 32px; } }

/* Page hero for inner pages */
.page-hero { padding: 140px 48px 64px; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(36px,5vw,64px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 16px; }
.page-hero p { color: var(--gray); font-size: 16px; max-width: 520px; line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 20px; font-size: 12px; }
.breadcrumb a { color: var(--gray); text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { color: var(--border); }
.breadcrumb .current { color: var(--purple); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
@media(max-width:768px) { .page-hero { padding: 110px 20px 48px; } }

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 0; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 48px; }
.contact-sidebar { background: var(--black); color: white; padding: 48px 40px; }
.contact-sidebar h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 32px; }
.c-item { display: flex; gap: 14px; margin-bottom: 28px; align-items: flex-start; }
.c-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.c-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.c-val { font-size: 14px; font-weight: 600; }
.c-val a { color: white; text-decoration: none; }
.contact-form-area { background: white; padding: 48px; }
.contact-form-area h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-g { margin-bottom: 16px; }
.form-g label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-ctrl { width: 100%; background: var(--cream); border: 1.5px solid var(--border); color: var(--black); font-family: inherit; font-size: 14px; padding: 12px 16px; border-radius: 10px; outline: none; transition: border-color var(--transition); }
.form-ctrl:focus { border-color: var(--purple); background: white; }
.form-ctrl::placeholder { color: #aaa; }
textarea.form-ctrl { resize: vertical; min-height: 120px; }
select.form-ctrl option { background: white; }
.form-submit { background: var(--black); color: white; border: none; padding: 14px 28px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; border-radius: 50px; transition: var(--transition); width: 100%; }
.form-submit:hover { background: var(--purple); }
@media(max-width:768px) { .contact-wrap { grid-template-columns: 1fr; } .contact-form-area { padding: 32px 20px; } .form-row { grid-template-columns: 1fr; } }

/* Blog */
.blog-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.blog-c { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform var(--transition); }
.blog-c:hover { transform: translateY(-4px); }
.blog-c-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-c-body { padding: 20px; }
.blog-c-tag { display: inline-block; background: rgba(107,61,251,0.08); color: var(--purple); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-c-body h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.35; }
.blog-c-body h3 a { color: var(--black); text-decoration: none; }
.blog-c-body h3 a:hover { color: var(--purple); }
.blog-c-body p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.blog-c-meta { font-size: 11px; color: #aaa; }
.read-link { font-size: 12px; font-weight: 700; color: var(--purple); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
@media(max-width:768px) { .blog-grid-3 { grid-template-columns: 1fr; } }

/* Portfolio grid */
.port-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.port-c { border-radius: 16px; overflow: hidden; background: var(--black); position: relative; cursor: pointer; }
.port-c-img { height: 240px; display: flex; align-items: center; justify-content: center; font-size: 60px; transition: transform 0.4s ease; }
.port-c:hover .port-c-img { transform: scale(1.05); }
.port-c-body { padding: 20px; background: white; }
.port-c-tag { font-size: 11px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.port-c-body h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.port-c-result { font-size: 12px; color: #22c55e; font-weight: 700; }
@media(max-width:768px) { .port-grid-3 { grid-template-columns: 1fr; } }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.price-c { background: white; border-radius: 20px; padding: 32px; border: 1.5px solid var(--border); transition: var(--transition); }
.price-c:hover { border-color: var(--purple); transform: translateY(-4px); }
.price-c.featured { border-color: var(--purple); background: var(--purple); color: white; }
.price-c.featured p, .price-c.featured .price-label { color: rgba(255,255,255,0.7); }
.price-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.price-val { font-size: 44px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; }
.price-period { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.price-c.featured .price-period { color: rgba(255,255,255,0.6); }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.price-c.featured .price-features li { border-bottom-color: rgba(255,255,255,0.1); }
.price-features li::before { content: '✓'; color: var(--purple); font-weight: 800; font-size: 12px; flex-shrink: 0; }
.price-c.featured .price-features li::before { color: white; }
.price-btn { width: 100%; padding: 12px; border-radius: 50px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition); border: 1.5px solid var(--black); background: transparent; }
.price-btn:hover { background: var(--black); color: white; }
.price-c.featured .price-btn { background: white; color: var(--purple); border-color: white; }
.price-c.featured .price-btn:hover { background: var(--cream); }
@media(max-width:768px) { .pricing-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn { width: 100%; background: none; border: none; font-family: inherit; font-size: 16px; font-weight: 700; text-align: left; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--black); }
.faq-btn:hover { color: var(--purple); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--purple); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple); border-color: var(--purple); color: white; }
.faq-item.open .faq-answer { max-height: 200px; }

/* Utils */
.text-center { text-align: center; }
.text-gray { color: var(--gray); }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; padding: 14px 20px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
