:root {
    --primary: #0F2B3D;
    --primary-dark: #081C2B;
    --accent: #E68A2E;
    --accent-light: #F27B4A;
    --navy-mid: #1A2F47;
    --steel: #2E4057;
    --light-bg: #F4F6F9;
    --text-muted: #6B7A8D;
    --border: #DDE3EC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #fff;
    color: var(--primary);
    line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.top-bar a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ── FOUNDER CARD ── */
.founder-bar {
    background: var(--light-bg);
    border-bottom: 3px solid var(--accent);
    padding: 20px 0;
}

.founder-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}

.founder-inner img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.founder-inner .name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.01em;
}

.founder-inner .tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.founder-inner .promise {
    font-size: 0.82rem;
    color: var(--steel);
    margin-top: 4px;
    font-style: italic;
}

/* ── HERO ── */
.hero-section {
    background: var(--primary);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    background: var(--accent);
    opacity: 0.06;
    border-radius: 50%;
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: var(--accent);
    opacity: 0.04;
    border-radius: 50%;
    animation: orbFloat 13s ease-in-out infinite reverse;
}

.hero-section h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-section h1 span {
    color: var(--accent);
}

.hero-section .lead {
    color: #A8BCCF;
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto 1.8rem;
}

.hero-checks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
}

.hero-checks span {
    font-size: 0.88rem;
    color: #A8BCCF;
}

.hero-checks i {
    color: #4ADE80;
    margin-right: 6px;
}

/* ── BUTTONS ── */
.btn-primary-custom {
    background-color: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 6px;
    padding: 14px 36px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(230, 138, 46, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 138, 46, 0.4);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 12px 36px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-secondary-custom:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--accent);
    border-radius: 6px;
    padding: 12px 32px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-outline-custom:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* ── OFFER BAND ── */
.offer-band {
    background: var(--light-bg);
    border-top: 4px solid var(--accent);
    padding: 52px 0;
    text-align: center;
}

.offer-band h2 {
    font-size: 2rem;
    color: var(--primary);
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-big span {
    color: var(--accent);
}

.launch-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* ── PAIN SECTION ── */
.pain-section {
    background: var(--primary);
    color: #fff;
    padding: 52px 0;
    text-align: center;
}

.pain-section h2 {
    font-size: 2.2rem;
    color: #fff;
}

.pain-section h2 span {
    color: var(--accent);
}

.pain-section p {
    color: #A8BCCF;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── INCLUDES ── */
.includes-section {
    padding: 60px 0;
    background: #fff;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
}

.check-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.steps-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    border-top: 3px solid var(--accent);
}

/* ── STYLES PICKER ── */
.styles-section {
    padding: 60px 0;
    background: #fff;
}

.style-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.style-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.style-card .img-wrap {
    background: var(--light-bg);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.style-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

/* ── PREVIEW ── */
.preview-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.preview-phone {
    max-width: 380px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.preview-phone-top {
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-phone-body {
    padding: 20px 16px;
}

/* ── SEO ── */
.seo-section {
    padding: 60px 0;
    background: #fff;
}

/* ── WHY US ── */
.whyus-section {
    padding: 64px 0;
    background: var(--primary);
    color: #fff;
}

.whyus-section .section-title { color: #fff; }
.whyus-section .title-bar { background: var(--accent); }

.speed-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(230,138,46,0.15);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.whyus-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.whyus-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.whyus-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.whyus-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .whyus-grid { grid-template-columns: 1fr; }
}

.search-pill {
    font-family: monospace;
    background: var(--light-bg);
    border: 1px solid var(--border);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    margin: 4px;
    color: var(--primary);
}

/* ── PRICING ── */
.pricing-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
    margin-top: 2.5rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-top-color: var(--accent);
    box-shadow: 0 8px 32px rgba(230,138,46,0.12);
}

.plan-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.plan-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.plan-best-for {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    min-height: 2.4em;
}

.plan-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.plan-price sup {
    font-size: 1.4rem;
    vertical-align: super;
    font-weight: 700;
}

.plan-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.plan-features li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--steel);
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li i.fa-check-square { color: var(--accent); }
.plan-features li i.fa-minus { color: var(--border); }

.plan-features li.dim {
    color: var(--text-muted);
    opacity: 0.6;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

/* ── TRUST ── */
.trust-section {
    background: var(--primary);
    color: #fff;
    padding: 52px 0;
    text-align: center;
}

.trust-section h2 {
    color: #fff;
    font-size: 2rem;
}

.trust-section p {
    color: #A8BCCF;
}

.llc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: #A8BCCF;
    margin-top: 16px;
}

/* ── CONTACT ── */
.contact-section {
    padding: 64px 0;
    background: #fff;
}

.btn-sms {
    background: transparent;
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-sms:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.form-field {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    transition: border-color 0.2s;
    background: #fff;
}

.form-field:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 138, 46, 0.15);
}

/* ── FOOTER ── */
footer {
    background: var(--primary);
    color: #6B7A8D;
    text-align: center;
    padding: 28px;
    font-size: 0.82rem;
    border-top: 3px solid var(--accent);
}

footer .ps {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #A8BCCF;
}

footer .ps a {
    color: var(--accent);
    text-decoration: none;
}

footer .ps a:hover {
    text-decoration: underline;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.title-bar {
    width: 48px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 10px auto 2rem;
}

/* ── ANIMATIONS & TRANSITIONS ── */
html { scroll-behavior: smooth; }

#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    pointer-events: none;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-12px, -18px) scale(1.08); }
}

@keyframes badgePop {
    from { opacity: 0; transform: scale(0.75); }
    to   { opacity: 1; transform: scale(1); }
}

/* Hero entrance — staggered */
.hero-section h1        { animation: fadeUp 0.8s ease both; }
.hero-section .lead     { animation: fadeUp 0.8s ease 0.18s both; }
.hero-section > div > .row > div > a.btn-primary-custom { animation: fadeUp 0.8s ease 0.32s both; }
.hero-section > div > .row > div > div.small { animation: fadeUp 0.8s ease 0.42s both; }
.hero-checks            { animation: fadeUp 0.8s ease 0.52s both; }

/* Scroll-reveal utility */
.will-anim {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-anim.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Article cards hover */
section a > div[style*="background:#fff"] {
    transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}
section a:hover > div[style*="background:#fff"] {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1) !important;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 52px 0 44px;
    }

    .price-big {
        font-size: 3.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .founder-inner {
        flex-direction: column;
        text-align: center;
    }
}
