/* NewsPro Sales Site — Modern SaaS Landing Page */

:root {
    --navy: #0B0F1A;
    --pink: #6366F1;
    --primary: #6366F1;
    --primary-hover: #818CF8;
    --primary-light: #EEF0FF;
    --accent: #06B6D4;
    --accent-light: #E0FAFE;
    --blue-light: #F0F0FF;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #10B981;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --max-width: 1200px;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--primary); color: var(--white);
    border: none; border-radius: 50px; font-size: 16px; font-weight: 600;
    cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.35); color: var(--white); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.3); border-radius: 50px; font-size: 16px; font-weight: 500;
    cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: transparent; color: var(--primary);
    border: 2px solid var(--primary); border-radius: 50px; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ============ NAVIGATION ============ */
.sales-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: background .3s, border-color .3s, box-shadow .3s;
    border-bottom: 1px solid transparent;
}
.sales-nav.scrolled {
    background: rgba(11, 15, 26, .85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255,255,255,.06);
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.sales-nav .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.sales-nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.sales-nav-logo img { height: 36px; width: auto; opacity: .9; transition: opacity .2s; }
.sales-nav-logo:hover img { opacity: 1; }
.sales-nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.sales-nav-links a {
    color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500;
    text-decoration: none; transition: color .2s, background .2s;
    padding: 7px 16px; border-radius: 8px;
}
.sales-nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.sales-nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-link-login {
    color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500;
    text-decoration: none; padding: 8px 16px; border-radius: 8px;
    transition: color .2s, background .2s;
}
.nav-link-login:hover { color: var(--white); background: rgba(255,255,255,.07); }
.btn-nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 22px; font-size: 14px; font-weight: 600;
    color: var(--white); background: var(--primary);
    border-radius: 10px; text-decoration: none;
    transition: all .2s; border: none; cursor: pointer;
}
.btn-nav-cta:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(99,102,241,.35); color: var(--white); }
.btn-nav-cta i { font-size: 11px; transition: transform .2s; }
.btn-nav-cta:hover i { transform: translateX(3px); }

/* Mobile toggle */
.nav-mobile-toggle { display: none; background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 22px; padding: 8px; border-radius: 8px; transition: background .2s; }
.nav-mobile-toggle:hover { background: rgba(255,255,255,.07); color: var(--white); }

/* Mobile nav */
.mobile-nav {
    display: none; flex-direction: column; padding: 8px 24px 24px;
    background: rgba(11, 15, 26, .95); backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: rgba(255,255,255,.7); padding: 14px 16px; font-size: 15px; font-weight: 500;
    border-radius: 10px; transition: all .2s; text-decoration: none;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-nav-divider { height: 1px; background: rgba(255,255,255,.06); margin: 8px 0; }
.mobile-nav-login {
    color: rgba(255,255,255,.7); padding: 14px 16px; font-size: 15px; font-weight: 500;
    border-radius: 10px; text-align: center; transition: all .2s; text-decoration: none;
}
.mobile-nav-login:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-nav-cta {
    display: block; padding: 14px 16px; font-size: 15px; font-weight: 600;
    background: var(--primary); color: var(--white) !important; border-radius: 10px;
    text-align: center; text-decoration: none; transition: background .2s;
}
.mobile-nav-cta:hover { background: var(--primary-hover); color: var(--white); }

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #050714 0%, #0B0F1A 30%, #12103a 60%, #0a1628 100%);
    padding: 120px 0 100px; text-align: center;
    position: relative; overflow: hidden; min-height: 600px;
    display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
}
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
}
.hero-glow-1 {
    width: 500px; height: 500px; top: -15%; left: 10%;
    background: radial-gradient(circle, rgba(99,102,241,.35) 0%, transparent 70%);
    animation: heroFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
    width: 400px; height: 400px; bottom: -10%; right: 5%;
    background: radial-gradient(circle, rgba(6,182,212,.25) 0%, transparent 70%);
    animation: heroFloat 10s ease-in-out infinite reverse;
}
.hero-glow-3 {
    width: 300px; height: 300px; top: 30%; left: 55%;
    background: radial-gradient(circle, rgba(129,140,248,.15) 0%, transparent 70%);
    animation: heroFloat 12s ease-in-out infinite 2s;
}
.hero-orb {
    position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.06);
}
.hero-orb-1 {
    width: 300px; height: 300px; top: 10%; right: 8%;
    animation: heroSpin 20s linear infinite;
}
.hero-orb-2 {
    width: 200px; height: 200px; bottom: 15%; left: 5%;
    border-color: rgba(6,182,212,.1);
    animation: heroSpin 15s linear infinite reverse;
}
.hero-orb-3 {
    width: 150px; height: 150px; top: 20%; left: 12%;
    border-style: dashed; border-color: rgba(255,255,255,.04);
    animation: heroSpin 25s linear infinite;
}
.hero-float {
    position: absolute; z-index: 0;
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.03); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.06);
}
.hero-float-1 { top: 18%; left: 8%; animation: heroIconFloat 6s ease-in-out infinite; }
.hero-float-2 { top: 25%; right: 12%; animation: heroIconFloat 7s ease-in-out infinite 1s; }
.hero-float-3 { bottom: 25%; left: 15%; animation: heroIconFloat 8s ease-in-out infinite 2s; }
.hero-float-4 { bottom: 20%; right: 8%; animation: heroIconFloat 6.5s ease-in-out infinite .5s; }
.hero-float-5 { top: 12%; left: 50%; animation: heroIconFloat 9s ease-in-out infinite 1.5s; color: rgba(6,182,212,.4); }
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}
@keyframes heroSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes heroIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: .4; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: .7; }
}
.hero .container { position: relative; z-index: 1; }
.hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    color: var(--accent); background: rgba(6,182,212,.1);
    border: 1px solid rgba(6,182,212,.2); margin-bottom: 24px;
    letter-spacing: .5px; text-transform: uppercase;
}
.hero h1 { font-size: 60px; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -2px; max-width: 820px; margin: 0 auto; }
.hero h1 span {
    background: linear-gradient(135deg, #818CF8 0%, #06B6D4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { font-size: 20px; color: rgba(255,255,255,.6); max-width: 580px; margin: 24px auto 40px; line-height: 1.7; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,.06); border-radius: 50px; color: rgba(255,255,255,.5); font-size: 14px; border: 1px solid rgba(255,255,255,.06); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-stats { display: flex; gap: 24px; font-size: 13px; color: rgba(255,255,255,.35); }
.hero-stats i { margin-right: 5px; font-size: 11px; }
@media (max-width: 768px) {
    .hero { padding: 100px 0 80px; min-height: auto; }
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .hero p { font-size: 17px; }
    .hero-float { display: none; }
    .hero-orb { display: none; }
    .hero-stats { flex-direction: column; gap: 8px; }
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-blue { background: var(--blue-light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-title { font-size: 40px; font-weight: 700; text-align: center; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--gray-600); text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }

/* ============ HOW IT WORKS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; padding: 40px 24px; }
.step-number { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--gray-600); font-size: 15px; }

/* ============ FEATURES ============ */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.feature-block:nth-child(even) { direction: rtl; }
.feature-block:nth-child(even) > * { direction: ltr; }
.feature-block-text h3 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.feature-block-text p { color: var(--gray-600); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
.feature-block-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-block-image img { width: 100%; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-mini { padding: 28px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all .2s; }
.feature-mini:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-mini-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.feature-mini h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feature-mini p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ============ PRICING ============ */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; font-size: 15px; font-weight: 500; }
.pricing-toggle .toggle-switch { width: 52px; height: 28px; border-radius: 14px; background: var(--gray-400); position: relative; cursor: pointer; transition: background .2s; }
.pricing-toggle .toggle-switch.active { background: var(--primary); }
.pricing-toggle .toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--white); transition: left .2s; }
.pricing-toggle .toggle-switch.active::after { left: 27px; }
.pricing-toggle .save-badge { background: var(--success); color: var(--white); padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pricing-card { background: var(--white); border-radius: 16px; padding: 36px; border: 2px solid var(--gray-200); position: relative; transition: all .2s; display: flex; flex-direction: column; }
.pricing-card:hover { border-color: var(--primary); }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 8px 40px rgba(99,102,241,.15); }
.pricing-card.popular::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); padding: 4px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 48px; font-weight: 800; margin: 16px 0 4px; }
.pricing-card .price small { font-size: 16px; font-weight: 400; color: var(--gray-600); }
.pricing-card .price-period { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-features li { padding: 8px 0; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; }
.pricing-card .btn-primary { width: 100%; justify-content: center; }
.pricing-card.popular .btn-primary { padding: 16px 32px; }

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; padding: 20px 0; font-size: 17px; font-weight: 600; text-align: left; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--gray-900); }
.faq-question::after { content: '+'; font-size: 24px; color: var(--gray-500); transition: transform .2s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 0 20px; color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: all .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-image { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-category { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.blog-card-body h3 a { color: var(--gray-900); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.blog-card-meta { padding: 16px 24px; border-top: 1px solid var(--gray-100); font-size: 13px; color: var(--gray-500); }

/* ============ CTA ============ */
.cta-section { text-align: center; }
.cta-section h2 { font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.trust-badges { display: flex; justify-content: center; gap: 32px; margin-top: 40px; font-size: 14px; color: rgba(255,255,255,.5); }
.trust-badges span { display: flex; align-items: center; gap: 6px; }

/* ============ FOOTER ============ */
.sales-footer { background: var(--navy); padding: 60px 0 30px; color: rgba(255,255,255,.6); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .sales-nav-logo img { height: 24px; }
.footer-brand p { margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-links h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer-links a { display: block; padding: 4px 0; color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,.4); font-size: 18px; }
.footer-social a:hover { color: var(--white); }

/* ============ FORMS ============ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.form-input {
    width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
    border-radius: 10px; font-size: 15px; transition: border-color .2s; font-family: var(--font);
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder { color: var(--gray-500); }

/* ============ SHOWCASE CAROUSEL ============ */
.showcase-carousel { overflow: hidden; margin: 0 -24px; padding: 20px 0; }
.showcase-track { display: flex; gap: 24px; animation: showcaseScroll 20s linear infinite; width: max-content; }
.showcase-track:hover { animation-play-state: paused; }
.showcase-card { flex-shrink: 0; width: 340px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); transition: transform .3s; }
.showcase-card:hover { transform: scale(1.03); }
.showcase-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
@keyframes showcaseScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .showcase-card { width: 280px; } .showcase-card img { height: 190px; } }

/* ============ SOCIAL PROOF ============ */
.counter-row { display: flex; justify-content: center; gap: 60px; margin: 48px 0; }
.counter-item { text-align: center; }
.counter-value { font-size: 36px; font-weight: 800; color: var(--primary); }
.counter-label { font-size: 14px; color: var(--gray-600); }

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .2s;
    text-decoration: none; font-size: 28px;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .sales-nav-links { display: none; }
    .sales-nav-right { display: none; }
    .nav-mobile-toggle { display: block; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .hero { padding: 60px 0 80px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-block { grid-template-columns: 1fr; }
    .feature-block:nth-child(even) { direction: ltr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .counter-row { gap: 24px; flex-wrap: wrap; }
    .trust-badges { flex-wrap: wrap; gap: 16px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ============ BLOG POST CONTENT ============ */
.section div[style*="line-height:1.9"] h2 { font-size: 24px; font-weight: 700; margin: 32px 0 12px; color: var(--gray-900); }
.section div[style*="line-height:1.9"] h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--gray-900); }
.section div[style*="line-height:1.9"] p { margin-bottom: 16px; }
.section div[style*="line-height:1.9"] ul, .section div[style*="line-height:1.9"] ol { margin: 16px 0; padding-left: 24px; }
.section div[style*="line-height:1.9"] li { margin-bottom: 8px; }
.section div[style*="line-height:1.9"] img { border-radius: 12px; margin: 24px 0; }
.section div[style*="line-height:1.9"] blockquote { border-left: 3px solid var(--primary); padding: 12px 20px; margin: 24px 0; background: var(--gray-50); border-radius: 0 8px 8px 0; }
.section div[style*="line-height:1.9"] code { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: 14px; }
.section div[style*="line-height:1.9"] pre { background: var(--navy); color: var(--white); padding: 20px; border-radius: 12px; overflow-x: auto; margin: 24px 0; }
.section div[style*="line-height:1.9"] pre code { background: none; padding: 0; color: inherit; }

/* ============ AI WIZARD ============ */
.wizard-container { max-width: 600px; margin: 0 auto; min-height: 400px; }
.wizard-progress { height: 4px; background: var(--gray-200); border-radius: 2px; margin-bottom: 40px; overflow: hidden; }
.wizard-progress-bar { height: 100%; background: var(--primary); border-radius: 2px; transition: width .4s ease; width: 25%; }
.wizard-step-counter { text-align: center; font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }

.wizard-step { display: none; animation: wizardFadeIn .3s ease; }
.wizard-step.active { display: block; }
@keyframes wizardFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.wizard-step h2 { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.wizard-step p.wizard-desc { text-align: center; color: var(--gray-600); margin-bottom: 32px; font-size: 16px; }

.wizard-input { width: 100%; padding: 16px 20px; border: 2px solid var(--gray-200); border-radius: 12px; font-size: 18px; font-family: var(--font); transition: border-color .2s; }
.wizard-input:focus { outline: none; border-color: var(--primary); }

.wizard-nav { display: flex; justify-content: space-between; margin-top: 32px; }
.wizard-nav .btn-back { padding: 12px 24px; background: none; border: none; color: var(--gray-600); font-size: 15px; cursor: pointer; font-family: var(--font); }
.wizard-nav .btn-back:hover { color: var(--gray-900); }

/* Name suggestions */
#nameSuggestions { display: none; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.suggestion-chip { padding: 8px 18px; border-radius: 20px; border: 1px solid var(--gray-200); background: var(--white); font-size: 14px; cursor: pointer; font-family: var(--font); transition: all .2s; }
.suggestion-chip:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* Style cards */
.wizard-styles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wizard-style-card { padding: 20px; border: 2px solid var(--gray-200); border-radius: 12px; cursor: pointer; transition: all .2s; text-align: center; }
.wizard-style-card:hover { border-color: var(--primary); }
.wizard-style-card.selected { border-color: var(--primary); background: var(--primary-light); }
.wizard-style-card .style-preview { height: 60px; border-radius: 8px; margin-bottom: 12px; }
.wizard-style-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.wizard-style-card p { font-size: 12px; color: var(--gray-600); }

.wizard-error { color: #c00; font-size: 14px; text-align: center; margin-top: 12px; padding: 8px; background: #fee; border-radius: 8px; }

/* Loading screen */
.wizard-loading { text-align: center; padding: 40px 0; }
.wizard-loading h2 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.loading-progress { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; max-width: 400px; margin: 0 auto 32px; }
.loading-progress-bar { height: 100%; background: var(--primary); border-radius: 3px; transition: width .5s ease; width: 0; }

.loading-steps { text-align: left; max-width: 360px; margin: 0 auto; }
.loading-step { padding: 10px 0; font-size: 15px; color: var(--gray-400); display: flex; align-items: center; gap: 12px; transition: color .3s; }
.loading-step .step-icon { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--gray-300); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; transition: all .3s; }
.loading-step.done { color: var(--gray-800); }
.loading-step.done .step-icon { background: var(--success); border-color: var(--success); color: var(--white); }

/* Success screen */
.wizard-success { text-align: center; padding: 40px 0; animation: wizardFadeIn .5s ease; }
.wizard-success .success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--success); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 24px; }
.wizard-success h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.wizard-success .success-url { font-size: 16px; color: var(--primary); margin-bottom: 32px; display: block; }
.wizard-success .success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ INLINE SVG SIZING ============ */
/* Global: SVGs inherit color, no default size (each context sets its own) */
svg { fill: currentColor; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* Default inline link icon size (plain <a> with arrow) */
a svg { width: 12px; height: 12px; }

/* Buttons override: slightly larger */
.btn-primary svg, .btn-secondary svg, .btn-outline svg, .btn-nav-cta svg { width: 14px; height: 14px; }

/* Hero floating icons */
.hero-float svg { width: 20px; height: 20px; color: rgba(255,255,255,.25); }
.hero-float-5 svg { color: rgba(6,182,212,.4); }

/* Hero chip, stats, nav */
.hero-chip svg { width: 13px; height: 13px; }
.hero-stats svg { width: 11px; height: 11px; }
.nav-link-login svg { width: 14px; height: 14px; }

/* Feature mini icon box */
.feature-mini-icon svg { width: 20px; height: 20px; }

/* Trust badges */
.trust-badges svg { width: 13px; height: 13px; }

/* Footer social icons */
.footer-social a svg { width: 16px; height: 16px; }

/* WhatsApp float button */
.whatsapp-float svg { width: 28px; height: 28px; color: white; }

/* Sized wrapper divs/spans: SVG fills the wrapper */
.hero-float svg,
.feature-mini-icon svg,
.footer-social a svg,
.whatsapp-float svg { display: block; }

/* Inline wrappers with explicit width/height (support page, features detail) */
[style*="width:28px"] > svg,
[style*="width:18px"] > svg { width: 100%; height: 100%; display: block; }
