/* ==========================================
   CALIGRAFANDO — Design System (Competitor-Inspired)
   Mobile-First · High-Conversion Landing Page
   ========================================== */

:root {
    /* Core Palette */
    --orange: #FF6B35;
    --orange-dark: #E55A26;
    --orange-glow: rgba(255, 107, 53, 0.25);
    --navy: #1A365D;
    --navy-deep: #0F2240;
    --navy-light: #2C5282;

    /* Backgrounds */
    --bg-cream: #FDFBF7;
    --bg-warm: #F7F2EB;
    --bg-card: #FFFFFF;

    /* Text */
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-muted: #718096;

    /* Accents */
    --green: #38A169;
    --gold: #D69E2E;
    --red-soft: #FC8181;

    /* Typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Shape */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 8px 30px rgba(255, 107, 53, 0.35);

    /* Spacing */
    --section-pad: 4.5rem 1.25rem;
}

/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* =====================
   LAYOUT
   ===================== */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: var(--section-pad);
}

/* =====================
   TYPOGRAPHY UTILITIES
   ===================== */
.text-orange {
    color: var(--orange);
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    text-align: center;
    font-size: 1.65rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

.price-slashed {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9em;
}

.tag-free {
    color: var(--green);
    font-weight: 700;
}

/* =====================
   ANIMATIONS
   ===================== */
.reveal {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.fade-up {
    transform: translateY(35px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.zoom-in {
    transform: scale(0.92);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}

.delay-4 {
    transition-delay: 0.48s;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: var(--shadow-orange);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.55);
        transform: scale(1.02);
    }
}

.pulse {
    animation: pulse-glow 2.8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =====================
   CTA BUTTON (global)
   ===================== */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.15rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
    transition: all 0.25s ease;
    text-align: center;
}

.cta-hero {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
    margin-bottom: 20px;
}

.cta-hero:active {
    transform: scale(0.98);
}

.cta-white {
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow-soft);
}

.cta-white:active {
    transform: scale(0.98);
}

/* =====================
   SCARCITY BAR
   ===================== */
.scarcity-bar {
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    background: linear-gradient(175deg, #FFF5EE 0%, var(--bg-cream) 60%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.hero .container {
    text-align: center;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.hero-bg-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #FFF0E6;
    color: #C05621;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.12);
}

.hero-pill-icon {
    font-size: 1rem;
}

.hero-expert-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: var(--shadow-heavy);
}

.hero-expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.hero h1 em {
    font-style: italic;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-mockup {
    margin-bottom: 2rem;
}

.mockup-float {
    position: relative;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.mockup-book {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy);
    max-height: 350px;
    object-fit: cover;
}

.mockup-badge {
    position: absolute;
    bottom: -12px;
    right: -10px;
    background: var(--navy);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: var(--shadow-card);
}

.hero-micro {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.hero-micro i {
    color: var(--green);
    font-size: 1rem;
}

/* =====================
   BEFORE / AFTER
   ===================== */
.before-after {
    background: var(--bg-warm);
}

.ba-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.ba-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ba-side img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red-soft);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.label-after {
    background: var(--green);
}

.ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
    background: var(--navy);
    color: #fff;
    font-size: 1rem;
}

/* =====================
   FEATURES / METHOD
   ===================== */
.features {
    background: var(--bg-cream);
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover,
.feature-card:focus-within {
    border-bottom-color: var(--orange);
    transform: translateY(-4px);
}

.fc-icon {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =====================
   TARGET AUDIENCE
   ===================== */
.target-audience {
    background: var(--bg-warm);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: #fff;
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.checklist li i {
    color: var(--green);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =====================
   PAIN SECTION (CONTRAST)
   ===================== */
.pain-section {
    background: var(--bg-cream);
}

.pain-inner {
    background: var(--navy);
    color: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.pain-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
}

.pain-inner h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pain-inner p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

/* =====================
   DELIVERABLES
   ===================== */
.deliverables {
    background: var(--bg-cream);
}

.deliver-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.deliver-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.deliver-img {
    position: relative;
}

.deliver-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deliver-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.deliver-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.deliver-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.deliver-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =====================
   CAROUSEL
   ===================== */
.carousel-section {
    background: var(--bg-warm);
}

.carousel {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
    background: #fff;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dot.active {
    background: var(--orange);
    transform: scale(1.35);
}

/* =====================
   BONUS CARDS (Visual)
   ===================== */
.bonuses {
    background: var(--bg-cream);
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card.featured {
    border: 2px solid var(--orange);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.bonus-card-img {
    position: relative;
    overflow: hidden;
}

.bonus-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s;
}

.bonus-card:hover .bonus-card-img img {
    transform: scale(1.05);
}

.bonus-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--navy);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tag-gold {
    background: linear-gradient(135deg, var(--gold), #F6AD55);
    color: var(--navy);
}

.bonus-card-body {
    padding: 2rem 1.5rem 2rem;
    text-align: center;
}

.bonus-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.bonus-tag-inline {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tag-gold-inline {
    background: linear-gradient(135deg, var(--gold), #F6AD55);
    color: var(--navy);
}

.bonus-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.bonus-card-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* =====================
   EXPERT
   ===================== */
.expert {
    background: var(--bg-warm);
}

.expert-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.expert-photo-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.expert-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.expert-info {
    padding: 1.75rem 1.5rem 2rem;
}

.expert-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.expert-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.expert-info p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================
   PRICING
   ===================== */
.pricing {
    background: var(--bg-cream);
}

.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-card {
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 2.25rem;
    text-align: center;
    position: relative;
}

/* Premium Card */
.price-card.premium {
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-heavy);
}

.price-card.premium h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.pc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pc-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    margin: 1rem 0 0.3rem;
}

.pc-curr {
    font-size: 1.2rem;
    font-weight: 700;
}

.pc-val {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-body);
}

.pc-cents {
    font-size: 1.2rem;
    font-weight: 700;
}

.pc-sub {
    font-size: 0.78rem;
    opacity: 0.65;
    margin-bottom: 1.5rem;
}

.pc-list {
    text-align: left;
    margin-bottom: 1.75rem;
}

.pc-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-list li i {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pc-list li i.ph-fill.ph-check-circle {
    color: var(--green);
}

.pc-list li i.ph-fill.ph-gift {
    color: var(--orange);
}

.pc-list .li-bonus {
    font-weight: 500;
}

.cta-premium {
    background: var(--orange);
    color: #fff;
}

/* Basic Card */
.price-card.basic {
    background: #fff;
    border: 2px solid #E2E8F0;
    box-shadow: var(--shadow-soft);
}

.price-card.basic h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.basic-price .pc-val {
    color: var(--navy);
}

.price-card.basic .pc-list li {
    border-bottom-color: #f0f0f0;
    color: var(--text-secondary);
}

.price-card.basic .pc-list li i.ph-fill.ph-check-circle {
    color: var(--green);
}

.li-disabled {
    opacity: 0.45;
}

.li-disabled i {
    color: var(--text-muted) !important;
}

.cta-basic {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-size: 0.9rem;
}

/* Security */
.security-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
}

.security-bar i {
    font-size: 1.5rem;
    color: var(--green);
}

.security-bar p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* =====================
   GUARANTEE
   ===================== */
.guarantee {
    background: var(--bg-warm);
}

.guarantee-card {
    background: #fff;
    border: 3px solid var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.guarantee-seal {
    font-size: 4.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
    line-height: 1;
}

.guarantee-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.guarantee-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================
   SOCIAL PROOF
   ===================== */
.social-proof {
    background: var(--bg-cream);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testi-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-header strong {
    display: block;
    font-size: 0.95rem;
}

.testi-stars {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.testi-bubble {
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    position: relative;
}

.testi-bubble::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: var(--bg-warm);
    transform: rotate(45deg);
}

.testi-bubble p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================
   FAQ
   ===================== */
.faq {
    background: var(--bg-warm);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
}

.faq-q i {
    transition: transform 0.3s;
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-cta {
    margin-top: 2rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--navy-deep);
    color: #fff;
}

.footer .container {
    text-align: center;
    padding: 2.5rem 1.25rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.4;
    line-height: 1.5;
}

/* =====================
   MODAL UPSELL
   ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 34, 64, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-warm);
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #eee;
}

.modal-icon {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.modal-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.modal-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-decline {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    padding: 0.5rem;
}

/* =====================
   DESKTOP (>768px)
   ===================== */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .cards-grid {
        flex-direction: row;
    }

    .feature-card {
        flex: 1;
    }

    .deliver-grid {
        flex-direction: row;
    }

    .deliver-card {
        flex: 1;
    }

    .bonus-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bonus-card.featured {
        grid-column: 1 / -1;
    }

    .pricing-stack {
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    .price-card {
        flex: 1;
    }

    .testimonials {
        flex-direction: row;
    }

    .testi-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
}