/* basic.css – WebLite • v3.0 – Mobile-First Complete Redesign */

/* ===== DESIGN TOKENS ===== */
:root {
    --primary-light: #8b5cf6;
    --primary: #6d28d9;
    --secondary: #3b82f6;
    --accent: #10b981;
    --text-dark: #1e293b;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-soft: #f1f5f9;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 8px 20px -4px rgb(0 0 0 / 0.1), 0 4px 8px -4px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 16px 32px -6px rgb(0 0 0 / 0.12), 0 6px 12px -4px rgb(0 0 0 / 0.08);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-bg: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: var(--white);
    margin: 0;
}

/* ===== KEYFRAMES ===== */
@keyframes wave { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(14deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(30px); } }
@keyframes animated-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.3); } 50% { box-shadow: 0 0 20px 8px rgba(109, 40, 217, 0.15); } }
@keyframes count-up { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes slide-in-right { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SCROLL ANIMATION HELPERS ===== */
.animate-on-scroll,
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible,
.animate-on-load.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

/* ===== GENERAL SECTION STYLING (Mobile-First) ===== */
section {
    padding: 3.5rem 1.25rem;
}
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title h2 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 0.8rem;
    line-height: 1.3;
}
.section-title .section-subtitle,
.section-title .fit-tagline,
.big-cta .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* ===== INLINE CTA BARS ===== */
.section-inline-cta {
    margin-top: 2rem;
    border: 1px solid #ddd6fe;
    background: var(--gradient-bg);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    text-align: center;
}
.section-inline-cta p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}
.section-inline-cta .btn-start {
    margin-top: 0;
    padding: 0.85rem 1.3rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    text-decoration: none;
    margin-top: 1.5rem;
    cursor: pointer;
}
.btn-start i {
    transition: transform 0.3s ease;
}
.btn-start:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.btn-start:hover i {
    transform: rotate(12deg);
}
.btn-start:active {
    transform: translateY(-1px) scale(0.99);
}
.btn-start.is-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid #c4b5fd;
    box-shadow: none;
}
.btn-start.is-ghost:hover {
    background: #ede9fe;
    box-shadow: none;
}

/* ===== HERO (Mobile-First) ===== */
.basic-hero.reimagined {
    padding: 5rem 1.25rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, #f5e0ff, #d1eaff);
    background-size: 200% 200%;
    animation: animated-gradient 20s ease infinite;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.basic-hero.reimagined .hero-content,
.basic-hero.reimagined .hero-ill {
    z-index: 2;
    width: 100%;
}
.basic-hero.reimagined .hero-content {
    text-align: center;
}
.basic-hero.reimagined h1 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-dark);
}
.basic-hero.reimagined .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.basic-hero.reimagined .tagline {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}
.hero-badge i {
    color: #ef4444;
}

/* Hero CTA */
.hero-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
}
.hero-cta-actions .btn-start {
    margin-top: 0;
    justify-content: center;
    width: 100%;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.trust-item i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* Hero Illustration */
.hero-ill {
    text-align: center;
}
.hero-ill img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,.1));
}
.wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

/* Background Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 18s ease-in-out infinite;
    pointer-events: none;
}
.shape.s1 { width: 200px; height: 200px; top: -60px; left: 5%; background: var(--primary-light); }
.shape.s2 { width: 160px; height: 160px; bottom: -80px; right: 10%; background: var(--secondary); animation-delay: -5s; }
.shape.s3 { width: 120px; height: 120px; top: 50%; right: 45%; background: var(--primary); animation-delay: -10s; }

/* ===== PAIN POINTS SECTION ===== */
.pain-points {
    background: var(--white);
    padding-top: 4rem;
}
.pain-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
.pain-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}
.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pain-card:hover::before,
.pain-card.is-active::before {
    opacity: 1;
}
.pain-card:hover,
.pain-card.is-active {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef2f2, #fde8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.pain-icon i {
    font-size: 1.3rem;
    color: #ef4444;
}
.pain-card h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}
.pain-problem {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0 0 1rem;
}
.pain-solution {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #166534;
}
.pain-solution i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ===== BENEFITS SECTION ===== */
.basic-benefits {
    background-color: var(--bg-light);
}
.benefit-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
.benefit-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}
.benefit-icon-wrap i {
    font-size: 1.5rem;
    color: var(--primary);
}
.benefit-card h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}
.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--white);
    position: relative;
}
.steps-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-right: 3rem;
}
.steps-line {
    position: absolute;
    right: 18px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-light), var(--secondary));
    border-radius: 3px;
}
.step-card {
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-md);
}
.step-number {
    position: absolute;
    right: -3rem;
    top: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: 'Varela Round', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
    z-index: 2;
}
.step-card h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--text-dark);
}
.step-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ===== PRICING SECTION ===== */
.price-value {
    background-color: #f7f9ff;
}
.pv-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
    align-items: center;
}
.pv-price {
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 35px -10px rgba(109, 40, 217, 0.2);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--primary);
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    animation: pulse-glow 3s ease-in-out infinite;
}
.pv-price .price-label {
    font-family: 'Varela Round', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.pv-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}
.pv-currency {
    font-size: 1.8rem;
    vertical-align: super;
    margin-inline-end: 0.15rem;
}
.pv-cycle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}
.pv-old {
    font-size: 0.9rem;
    color: #ef4444;
    text-decoration: line-through;
}
.pv-savings {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    color: #166534;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-top: 0.6rem;
    border: 1px solid #bbf7d0;
}
.pv-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1rem;
    flex-grow: 1;
}
.btn-start.cta-price {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 1.1rem 2rem;
}
.pv-value {
    flex-grow: 1;
    text-align: right;
    width: 100%;
}
.pv-value h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text-dark);
    text-align: center;
}
.pv-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pv-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.pv-list li i {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.pv-list li div {
    display: flex;
    flex-direction: column;
}
.pv-list li strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}
.pv-list li span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== FIT-YOU SECTION ===== */
.fit-you {
    background: linear-gradient(180deg, var(--white) 0%, #f7f9ff 100%);
}
.fit-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
.fit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.fit-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.fit-card h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}
.fit-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ===== WHY US SECTION ===== */
.why-basic.highlight {
    background: var(--bg-light);
}
.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 3rem 1.5rem;
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
}
.why-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 3.5rem 1.5rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(109, 40, 217, 0.25);
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}
.why-card:hover .why-icon {
    transform: translateX(-50%) scale(1.08);
}
.why-icon i {
    font-size: 1.6rem;
    color: var(--white);
}
.why-card h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: var(--text-dark);
}
.why-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: right;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}
.client-name {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.client-title {
    margin: 2px 0 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.testimonial-body {
    flex-grow: 1;
    margin: 0 0 12px 0;
}
.testimonial-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
}
.testimonial-rating {
    color: #ffc107;
    font-size: 0.95rem;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

/* ===== PRO HELP ===== */
.pro-help {
    background-color: var(--bg-light);
}
.ph-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}
.ph-text {
    flex: 1 1 100%;
}
.ph-text h2 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.ph-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}
.ph-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.ph-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    font-weight: 500;
}
.ph-list i {
    color: var(--primary-light);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.ph-badge {
    flex: 1 1 200px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    text-align: center;
    color: var(--primary);
    max-width: 240px;
}
.ph-price {
    font-family: 'Varela Round', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}
.ph-currency {
    font-size: 1.8rem;
    vertical-align: super;
    margin-inline-end: 0.1rem;
}
.ph-unit {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* ===== FAQ ===== */
.faq-section {
    background-color: #f7f9ff;
}
.faq-container {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    transition: margin 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] {
    margin-bottom: 1rem;
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.08);
}
.faq-item summary {
    font-family: 'Varela Round', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: color 0.3s ease;
}
.faq-item[open] summary {
    color: var(--primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.faq-item[open] summary i {
    transform: rotate(180deg);
}
.faq-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
}
.faq-item[open] .faq-content {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
    transition: max-height 0.8s ease-in-out, padding 0.4s ease;
}
.faq-content p {
    margin: 0;
    padding-top: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== BIG CTA ===== */
.big-cta {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(140, 92, 246, 0.15), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.15), transparent 40%);
    background-color: #f7f9ff;
    text-align: center;
    padding: 4rem 1.25rem;
}
.big-cta h2 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 0.8rem;
}
.big-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    margin-top: 1.25rem;
}
.big-cta .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px -5px rgb(0 0 0 / 0.15);
}
.big-cta .btn i {
    transition: transform 0.3s ease;
}
.big-cta .btn:hover i {
    transform: rotate(15deg);
}

/* Final Trust */
.final-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.final-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}
.final-trust i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ===========================================================
   TABLET BREAKPOINT (min-width: 600px)
   =========================================================== */
@media (min-width: 600px) {
    section {
        padding: 4.5rem 2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }

    /* Hero */
    .basic-hero.reimagined h1 {
        font-size: 2.4rem;
    }
    .hero-cta-actions {
        flex-direction: row;
        justify-content: center;
    }
    .hero-cta-actions .btn-start {
        width: auto;
    }
    .hero-ill img {
        max-width: 400px;
    }

    /* Pain Points */
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Benefits */
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fit You */
    .fit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        padding: 1.75rem;
    }

    /* Inline CTAs */
    .section-inline-cta {
        justify-content: space-between;
    }
    .section-inline-cta .btn-start {
        width: auto;
    }

    /* Steps */
    .steps-container {
        padding-right: 3.5rem;
    }

    /* Pro Help */
    .ph-text {
        flex: 2 1 400px;
        text-align: right;
    }

    /* Big CTA */
    .big-cta h2 {
        font-size: 2rem;
    }
}

/* ===========================================================
   DESKTOP BREAKPOINT (min-width: 960px)
   =========================================================== */
@media (min-width: 960px) {
    section {
        padding: 5.5rem 2rem;
    }
    .section-title h2 {
        font-size: 2.4rem;
    }
    .section-title {
        margin-bottom: 3.5rem;
    }

    /* Hero - Side by Side */
    .basic-hero.reimagined {
        flex-direction: row;
        padding: 6rem 3rem 5rem;
        gap: 3rem;
    }
    .basic-hero.reimagined .hero-content,
    .basic-hero.reimagined .hero-ill {
        flex: 1 1 420px;
        max-width: 540px;
    }
    .basic-hero.reimagined .hero-content {
        text-align: right;
    }
    .basic-hero.reimagined h1 {
        font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    }
    .hero-cta-actions {
        justify-content: flex-end;
    }
    .hero-trust {
        justify-content: flex-end;
    }
    .hero-ill img {
        max-width: 500px;
    }
    .shape.s1 { width: 300px; height: 300px; top: -80px; }
    .shape.s2 { width: 240px; height: 240px; }
    .shape.s3 { width: 180px; height: 180px; }

    /* Pain Points */
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Benefits */
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Steps */
    .steps-container {
        padding-right: 4rem;
    }
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        right: -3.5rem;
    }
    .step-card {
        padding: 2rem;
    }

    /* Pricing - Side by Side */
    .pv-wrap {
        flex-direction: row;
        align-items: stretch;
    }
    .pv-value h3 {
        text-align: right;
        font-size: 1.8rem;
    }
    .pv-price {
        padding: 2.5rem;
    }
    .pv-amount {
        font-size: 4rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 2rem;
    }

    /* Big CTA */
    .big-cta {
        padding: 5.5rem 2rem;
    }
    .big-cta h2 {
        font-size: 2.4rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll,
    .animate-on-load {
        opacity: 1;
        transform: none;
    }
}

/* ===== FOCUS VISIBLE (Accessibility) ===== */
.btn-start:focus-visible,
.big-cta .btn:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .basic-hero.reimagined,
    .big-cta,
    .hero-trust,
    .final-trust,
    .section-inline-cta {
        display: none;
    }
}
