/* ============================================
   ZSENIFÉSZEK - Premium Subscription Landing
   Bold, Colorful, High-Converting Design
   Brand Colors: Teal, Mint, Lavender, Peach, Pink
   ============================================ */

/* --- Typography --- */
/* Fraunces & DM Sans removed — uses Quicksand (headings) + Nunito (body) from styles.css */

/* --- Extended CSS Variables --- */
:root {
    /* Brand Colors - Inherited from styles.css */
    /* --teal-dark, --teal, etc. are already defined globally */


    /* Typography - uses global --font-display and --font-body from styles.css */

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #e8f5f3 0%, #fef9f5 40%, #f5f0f8 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    --gradient-warm: linear-gradient(135deg, var(--peach-light) 0%, var(--pink-light) 50%, var(--lavender-light) 100%);
    --gradient-mint: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--peach) 0%, var(--pink) 50%, var(--lavender) 100%);
    --gradient-cta: linear-gradient(135deg, var(--orange) 0%, var(--peach-dark) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-teal: rgba(26, 95, 106, 0.08);

    /* Shadows - Colorful */
    --shadow-teal: 0 20px 60px rgba(26, 95, 106, 0.2);
    --shadow-peach: 0 20px 60px rgba(245, 184, 138, 0.3);
    --shadow-lavender: 0 20px 60px rgba(184, 169, 201, 0.3);
    --shadow-soft: 0 4px 24px rgba(26, 95, 106, 0.08);
    --shadow-medium: 0 12px 40px rgba(26, 95, 106, 0.12);
    --shadow-strong: 0 24px 80px rgba(26, 95, 106, 0.18);

    /* Borders */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-blob: 60% 40% 50% 50% / 50% 50% 40% 60%;
}

/* --- Keyframe Animations --- */
@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 148, 90, 0.4);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(232, 148, 90, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    }

    25% {
        border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 40% 50% 60% 40% / 60% 40% 50% 50%;
    }

    75% {
        border-radius: 50% 40% 50% 60% / 50% 60% 40% 50%;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Base Overrides --- */
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal-dark);
}

/* --- Decorative Background Elements --- */
.page-bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: var(--radius-blob);
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-morph 20s ease-in-out infinite, float 15s ease-in-out infinite;
}

.bg-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--mint);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.bg-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--lavender);
    bottom: 20%;
    left: -150px;
    animation-delay: -5s;
}

.bg-blob-3 {
    width: 400px;
    height: 400px;
    background: var(--peach);
    top: 40%;
    right: -100px;
    animation-delay: -10s;
}

.bg-blob-4 {
    width: 350px;
    height: 350px;
    background: var(--pink);
    bottom: -100px;
    left: 30%;
    animation-delay: -15s;
}

/* Hero section removed — now in v2-landing.css */

/* ============================================
   SECTION IMAGES (Problem, Dream, Community)
   ============================================ */
.section-image {
    margin: var(--space-lg) auto var(--space-xl);
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.section-image--problem {
    max-height: 400px;
}

.section-image--problem img {
    max-height: 400px;
    object-position: center 30%;
}

.section-image--dream {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-teal);
}

.section-image--community {
    max-width: 700px;
    border-radius: var(--radius-md);
}

/* Testimonial avatars, guarantee image, final CTA background — now in v2-landing.css */

/* ============================================
   SECTION STYLING
   ============================================ */
.sub-section {
    position: relative;
    padding: var(--space-xl) 0;
}

.sub-section-mint {
    background: linear-gradient(180deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
}

.sub-section-lavender {
    background: linear-gradient(180deg, var(--lavender-light) 0%, #f8f5fb 100%);
}

.sub-section-peach {
    background: linear-gradient(180deg, var(--peach-light) 0%, var(--cream-warm) 100%);
}

.sub-section-teal {
    background: var(--gradient-teal);
    color: white;
}

.sub-section-teal .section-title,
.sub-section-teal .section-tag,
.sub-section-teal p {
    color: white;
}

.sub-section-teal .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

/* Dark section – deep teal gradient for CTA blocks */
.sub-section-dark {
    background: linear-gradient(135deg, #0d3b43 0%, var(--teal-dark) 40%, #1a5f6a 100%);
    color: white;
}

.sub-section-dark h2,
.sub-section-dark h3,
.sub-section-dark h4,
.sub-section-dark p,
.sub-section-dark li,
.sub-section-dark .section-title,
.sub-section-dark .section-tag {
    color: white;
}

.sub-section-dark .section-tag {
    background: rgba(255, 255, 255, 0.15);
}

/* Alt section – subtle alternating background */
.sub-section-alt {
    background: linear-gradient(180deg, var(--cream) 0%, #faf7f4 100%);
}

/* Section Headers */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--teal-dark);
    color: white;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto var(--space-lg);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    font-size: 1.15rem;
    line-height: 1.7;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.problem-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-sunset);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:nth-child(1) {
    --card-color: var(--peach);
}

.problem-card:nth-child(2) {
    --card-color: var(--pink);
}

.problem-card:nth-child(3) {
    --card-color: var(--lavender);
}

.problem-card:nth-child(4) {
    --card-color: var(--mint);
}

.problem-card:nth-child(5) {
    --card-color: var(--teal-light);
}

.problem-card:nth-child(6) {
    --card-color: var(--orange);
}

.problem-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--card-color), color-mix(in srgb, var(--card-color) 70%, white));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--card-color) 30%, transparent);
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--teal-dark);
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.problem-conclusion {
    max-width: 750px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--teal-lightest) 0%, var(--mint-light) 100%);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--teal);
    text-align: center;
}

.problem-conclusion p {
    color: var(--teal-dark);
    font-size: 1.05rem;
}

/* ============================================
   DREAM SECTION
   ============================================ */
.dream-list {
    max-width: 750px;
    margin: 0 auto var(--space-xl);
}

.dream-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid transparent;
}

.dream-item:nth-child(1) {
    border-left-color: var(--mint);
}

.dream-item:nth-child(2) {
    border-left-color: var(--teal-light);
}

.dream-item:nth-child(3) {
    border-left-color: var(--lavender);
}

.dream-item:nth-child(4) {
    border-left-color: var(--peach);
}

.dream-item:nth-child(5) {
    border-left-color: var(--pink);
}

.dream-item:nth-child(6) {
    border-left-color: var(--orange);
}

.dream-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.dream-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-dark);
}

.dream-item p {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.dream-item strong {
    color: var(--teal-dark);
    font-weight: 700;
}

.dream-transition {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal-dark);
    padding: var(--space-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TIERS / SOLUTION SECTION
   ============================================ */
.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    font-size: 1.1rem;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.tier-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.tier-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

/* Tier Colors — Lila (Bagolypatika), Türkiz (Szárnysegéd), Rózsaszín (Mesterkurzus) */
.tier-card.tier-sos::before {
    background: linear-gradient(90deg, #b8a9c9, #9585aa);
}

.tier-card.tier-learn::before {
    background: linear-gradient(90deg, #1a5f6a, #7bccc8);
}

.tier-card.tier-master::before {
    background: linear-gradient(90deg, #f2c4d0, #e5a3b5);
}

.tier-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
}

.tier-card.tier-sos .tier-number {
    background: #e8e2f0;
    color: #6b5b7b;
}

.tier-card.tier-learn .tier-number {
    background: #d4efed;
    color: #1a5f6a;
}

.tier-card.tier-master .tier-number {
    background: #fce8ed;
    color: #c4788a;
}

.tier-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tier-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xs);
}

.tier-card.tier-sos .tier-name {
    color: #9585aa;
}

.tier-card.tier-learn .tier-name {
    color: #1a5f6a;
}

.tier-card.tier-master .tier-name {
    color: #e5a3b5;
}

.tier-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.tier-subtitle {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.tier-card>p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.tier-features {
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.tier-features h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
}

.tier-features ul {
    list-style: none;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tier-features li::before {
    content: '✓';
    font-weight: bold;
    flex-shrink: 0;
}

.tier-card.tier-sos .tier-features li::before {
    color: #9585aa;
}

.tier-card.tier-learn .tier-features li::before {
    color: #1a5f6a;
}

.tier-card.tier-master .tier-features li::before {
    color: #e5a3b5;
}

.tier-quote {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: auto;
}

.tier-card.tier-sos .tier-quote {
    background: #e8e2f0;
}

.tier-card.tier-learn .tier-quote {
    background: #d4efed;
}

.tier-card.tier-master .tier-quote {
    background: #fce8ed;
}

.tier-quote cite {
    display: block;
    margin-top: var(--space-xs);
    font-style: normal;
    font-weight: 600;
    color: var(--teal-dark);
    font-size: 0.85rem;
}

/* ============================================
   COURSE TABLE
   ============================================ */
.course-table-wrapper {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.course-table th,
.course-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
}

.course-table thead {
    background: var(--gradient-teal);
    color: white;
}

.course-table th {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.course-table tbody tr {
    border-bottom: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
}

.course-table tbody tr:hover {
    background: var(--mint-light);
}

.course-table tbody tr:last-child {
    background: linear-gradient(90deg, var(--peach-light), var(--pink-light));
    font-weight: 600;
    border-bottom: none;
}

.course-table .price-old {
    text-decoration: line-through;
    color: var(--text-light);
}

.course-table .check {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1rem;
}

.table-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
    border-radius: var(--radius-lg);
    margin-top: var(--space-md);
    box-shadow: var(--shadow-soft);
}

.table-summary-value strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--teal-dark);
}

.table-summary-price .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
}

.table-summary-price .new {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.comparison-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.comparison-card.highlight {
    background: var(--gradient-teal);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-teal);
}

.comparison-card.highlight h3 {
    color: white;
}

.comparison-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--teal-dark);
}

.comp-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.comparison-card:not(.highlight) .comp-price {
    color: var(--text-muted);
}

.comparison-card.highlight .comp-price {
    color: var(--peach);
}

.comp-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.comparison-card li.pro::before {
    content: '✓';
    color: var(--mint-dark);
    font-weight: bold;
}

.comparison-card li.con::before {
    content: '✗';
    color: var(--pink-dark);
    font-weight: bold;
}

.comparison-card.highlight li.pro::before {
    color: var(--peach);
}

.comparison-box {
    max-width: 650px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--peach-light), var(--pink-light));
    border-radius: var(--radius-lg);
    text-align: center;
    border: 3px solid var(--peach);
}

.comparison-box h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
}

.comparison-box p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.comparison-box .result {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange-dark);
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.community-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.community-card:nth-child(1)::before {
    background: var(--gradient-teal);
}

.community-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--peach), var(--orange));
}

.community-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--lavender), var(--pink));
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.community-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.community-card:nth-child(1) .community-icon {
    background: var(--mint-light);
}

.community-card:nth-child(2) .community-icon {
    background: var(--peach-light);
}

.community-card:nth-child(3) .community-icon {
    background: var(--lavender-light);
}

.community-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.community-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Monthly Themes */
.monthly-themes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.theme-item {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-top: 3px solid;
}

.theme-item:nth-child(1) {
    border-color: var(--mint);
}

.theme-item:nth-child(2) {
    border-color: var(--lavender);
}

.theme-item:nth-child(3) {
    border-color: var(--peach);
}

.theme-item:nth-child(4) {
    border-color: var(--pink);
}

.theme-item:nth-child(5) {
    border-color: var(--teal-light);
}

.theme-item:nth-child(6) {
    border-color: var(--orange);
}

.theme-item:nth-child(7) {
    border-color: var(--mint);
}

.theme-item:nth-child(8) {
    border-color: var(--lavender);
}

.theme-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.theme-month {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.theme-topic {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   EXPERT SECTION
   ============================================ */
.expert-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.expert-image {
    position: relative;
}

.expert-image-frame {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--mint-light), var(--lavender-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--teal);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.expert-image-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 3px solid white;
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}

.expert-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-cta);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-peach);
}

.expert-badge .number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.expert-badge .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.expert-content .section-tag {
    margin-bottom: var(--space-md);
}

.expert-name {
    font-size: 2.25rem;
    margin-bottom: var(--space-xs);
}

.expert-role {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: var(--space-lg);
}

.expert-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--teal-dark);
    padding: var(--space-md);
    background: var(--mint-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.expert-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--teal-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.expert-content>p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.expert-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--cream-dark);
}

.expert-stat {
    text-align: center;
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    min-width: 100px;
}

.expert-stat .number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-dark);
    line-height: 1.2;
}

.expert-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Testimonials section removed — now in v2-landing.css */

/* Pricing section removed — now in v2-landing.css */

/* Guarantee section removed — now in v2-landing.css */

/* FAQ section removed — now in v2-landing.css */

/* ============================================
   LEAD MAGNET SECTION
   ============================================ */
.leadmagnet-card {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.leadmagnet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--peach-light);
    border-radius: 50%;
    opacity: 0.5;
}

.leadmagnet-visual {
    position: relative;
    z-index: 1;
}

.leadmagnet-preview {
    aspect-ratio: 0.75;
    background: linear-gradient(135deg, var(--peach-light) 0%, var(--pink-light) 50%, var(--lavender-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    box-shadow: var(--shadow-medium), 0 20px 40px rgba(245, 184, 138, 0.3);
    transform: rotate(-3deg);
    transition: all 0.3s ease;
}

.leadmagnet-preview:hover {
    transform: rotate(0deg) scale(1.02);
}

.leadmagnet-preview .icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
}

.leadmagnet-preview h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-align: center;
    color: var(--teal-dark);
}

.leadmagnet-content {
    position: relative;
    z-index: 1;
}

.leadmagnet-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.leadmagnet-content>p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.leadmagnet-benefits {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.leadmagnet-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.leadmagnet-benefits li::before {
    content: '✓';
    color: var(--orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.leadmagnet-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.leadmagnet-form input {
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.leadmagnet-form input:focus {
    outline: 2px solid var(--teal-light);
    outline-offset: 2px;
    border-color: var(--teal-light);
    box-shadow: 0 0 0 4px rgba(123, 204, 200, 0.2);
}

.leadmagnet-form .btn {
    background: var(--gradient-cta);
    justify-content: center;
    padding: 14px 24px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-peach);
}

.leadmagnet-gdpr {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--space-xs);
}

/* Final CTA section removed — now in v2-landing.css */

/* ============================================
   SUMMARY BOX
   ============================================ */
.summary-box {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: linear-gradient(135deg, white 0%, var(--mint-light) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--mint);
}

.summary-box h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.summary-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.summary-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px dashed var(--teal-lightest);
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list li::before {
    content: '✓';
    color: var(--teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.summary-price {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 2px solid var(--teal-lightest);
}

.summary-price .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
}

.summary-price .new {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

/* Sticky CTA bar removed — now in v2-landing.css */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {

    .tiers-grid,
    .comparison-grid,
    .community-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .comparison-card.highlight {
        transform: none;
        order: -1;
    }

    .expert-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .expert-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .expert-quote {
        text-align: center;
    }

    .expert-quote::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .expert-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .monthly-themes {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadmagnet-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leadmagnet-visual {
        order: -1;
        max-width: 220px;
        margin: 0 auto;
    }

    .leadmagnet-preview {
        transform: rotate(0deg);
    }

    .leadmagnet-benefits {
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 768px) {
    .monthly-themes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .tier-card {
        padding: var(--space-lg);
    }

    .table-summary {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .expert-stats {
        gap: var(--space-sm);
    }

    .expert-stat {
        min-width: 80px;
        padding: var(--space-sm);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .bg-blob {
        animation: none !important;
    }
}

/* Urgency banner removed — now in v2-landing.css */

/* ============================================
   HERO UNDER-SUBTITLE
   ============================================ */
.hero-under-subtitle {
    background: linear-gradient(135deg, #fef9f5 0%, #f5f0f8 100%);
    border-bottom: 1px solid rgba(184, 169, 201, 0.2);
    padding: var(--space-md) 0;
    text-align: center;
}

.hero-under-subtitle-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero-under-subtitle-text {
        font-size: 1.1rem;
    }
}

/* Urgency deadline box removed — now in v2-landing.css */

/* ============================================
   PERSONA SECTION — "Melyik vagy te?"
   ============================================ */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: start;
}

.persona-card {
    border-radius: var(--radius-lg);
    padding: 96px var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
    position: relative;
    overflow: visible;
    margin-top: 72px;
}

/* Colour variant backgrounds */
.persona-card.persona-lila {
    background: linear-gradient(160deg, #f3eef8 0%, #e8e0f0 40%, #ddd4ea 100%);
}
.persona-card.persona-turkiz {
    background: linear-gradient(160deg, #e6f4f2 0%, #d4efed 40%, #c5e8e4 100%);
}
.persona-card.persona-rozsaszin {
    background: linear-gradient(160deg, #fdf0f3 0%, #fce4eb 40%, #f8d6e0 100%);
}

.persona-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

/* ---- Avatar — centred, overlapping top edge ---- */
.persona-avatar {
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

/* Double-ring: white inner border + persona-colour outer ring */
.persona-card.persona-lila .persona-avatar {
    box-shadow:
        0 0 0 5px #fff,
        0 0 0 9px #b8a9c9,
        0 10px 32px rgba(181, 163, 201, 0.5);
}
.persona-card.persona-turkiz .persona-avatar {
    box-shadow:
        0 0 0 5px #fff,
        0 0 0 9px #7bccc8,
        0 10px 32px rgba(26, 95, 106, 0.35);
}
.persona-card.persona-rozsaszin .persona-avatar {
    box-shadow:
        0 0 0 5px #fff,
        0 0 0 9px #e5a3b5,
        0 10px 32px rgba(229, 163, 181, 0.5);
}

.persona-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.persona-card:hover .persona-avatar img {
    transform: scale(1.07);
}

/* ---- Card body content ---- */
.persona-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}
.persona-card.persona-lila h3 { color: #6b5080; }
.persona-card.persona-turkiz h3 { color: #1a5f6a; }
.persona-card.persona-rozsaszin h3 { color: #b85070; }

.persona-quote {
    font-style: italic;
    color: var(--text-muted);
    margin: 0 0 var(--space-md);
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    position: relative;
}
.persona-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 2.8rem;
    line-height: 0;
    position: absolute;
    top: 22px;
    left: 10px;
    opacity: 0.18;
}

.persona-card.persona-lila .persona-quote   { background: #ede7f6; }
.persona-card.persona-turkiz .persona-quote  { background: #d4efed; }
.persona-card.persona-rozsaszin .persona-quote { background: #fce8ed; }

.persona-tier-tag {
    display: inline-block;
    padding: 7px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}
.persona-card.persona-lila .persona-tier-tag {
    background: #e8e2f0;
    color: #6b5080;
}
.persona-card.persona-turkiz .persona-tier-tag {
    background: #d4efed;
    color: #1a5f6a;
}
.persona-card.persona-rozsaszin .persona-tier-tag {
    background: #fce8ed;
    color: #9e3d5a;
}

.persona-bullets {
    list-style: none;
    text-align: left;
    padding: 0 var(--space-sm);
    margin: 0;
}
.persona-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.persona-bullets li:last-child { border-bottom: none; }
.persona-bullets li::before {
    content: '✓';
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.persona-card.persona-lila .persona-bullets li::before   { color: #9585aa; }
.persona-card.persona-turkiz .persona-bullets li::before  { color: #1a5f6a; }
.persona-card.persona-rozsaszin .persona-bullets li::before { color: #e5a3b5; }

.persona-closing {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--teal-dark);
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, #e8e2f0 0%, #d4efed 50%, #fce8ed 100%);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(26, 95, 106, 0.12);
    border: 2px solid rgba(149, 133, 170, 0.3);
    line-height: 1.5;
}

.persona-closing-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #9585aa, #1a5f6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .persona-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .persona-card {
        padding: 88px var(--space-sm) var(--space-md);
        margin-top: 64px;
    }

    .persona-avatar {
        width: 120px;
        height: 120px;
        top: -54px;
    }

    .persona-quote {
        font-size: 0.85rem;
        padding: 10px 10px;
        margin-bottom: var(--space-sm);
    }

    .persona-tier-tag {
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .persona-bullets {
        padding: 0 var(--space-xs);
    }

    .persona-bullets li {
        font-size: 0.83rem;
        gap: 6px;
        padding: 6px 0;
    }
}

@media (max-width: 768px) {
    .persona-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .persona-card {
        margin-top: 72px;
        padding: 88px var(--space-lg) var(--space-lg);
    }

    .persona-avatar {
        width: 130px;
        height: 130px;
        top: -58px;
    }

    .persona-quote {
        margin: 0 var(--space-sm) var(--space-md);
    }

    .persona-bullets {
        padding: 0 var(--space-md);
    }
}

/* ============================================
   TIER GROUP HEADERS (Course cards)
   ============================================ */
.tier-group {
    margin-bottom: var(--space-xl);
}

.tier-group-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
}

.tier-group-header .tier-group-emoji {
    font-size: 2rem;
}

.tier-group-header h3 {
    font-size: 1.35rem;
    margin: 0;
}

.tier-group-header .tier-group-motto {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.85;
    margin-left: auto;
}

.tier-group-lila {
    background: linear-gradient(135deg, #e8e2f0 0%, #d9d0e6 100%);
    border-left: 5px solid #9585aa;
}

.tier-group-lila h3 { color: #6b5b7b; }
.tier-group-lila .tier-group-motto { color: #7b6b8a; }

.tier-group-turkiz {
    background: linear-gradient(135deg, #d4efed 0%, #b8e2df 100%);
    border-left: 5px solid #1a5f6a;
}

.tier-group-turkiz h3 { color: #1a5f6a; }
.tier-group-turkiz .tier-group-motto { color: #267a7a; }

.tier-group-rozsaszin {
    background: linear-gradient(135deg, #fce8ed 0%, #f5d5df 100%);
    border-left: 5px solid #e5a3b5;
}

.tier-group-rozsaszin h3 { color: #c4788a; }
.tier-group-rozsaszin .tier-group-motto { color: #b86d80; }

@media (max-width: 768px) {
    .tier-group-header {
        flex-wrap: wrap;
    }
    .tier-group-header .tier-group-motto {
        margin-left: 0;
        width: 100%;
    }
}

/* ============================================
   FUTURE PACING / "ÉLŐ ORGANIZMUS" BLOCK
   ============================================ */
.future-pacing-block {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, #e8e2f0 0%, #d4efed 50%, #fce8ed 100%);
    border-radius: var(--radius-lg);
    max-width: 850px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.future-pacing-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
}

.future-pacing-block > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.future-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.future-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--space-sm) var(--space-lg);
    background: white;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--teal-dark);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.future-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.future-badge-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .future-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Monthly Themes — extra items (9-12) */
.theme-item:nth-child(9) { border-color: var(--peach); }
.theme-item:nth-child(10) { border-color: var(--pink); }
.theme-item:nth-child(11) { border-color: var(--teal-light); }
.theme-item:nth-child(12) { border-color: var(--orange); }

.theme-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--space-md);
}

/* Monthly themes: 3 columns for 12 items */
.monthly-themes {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .monthly-themes {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   PRODUCT CARD GRID (for course cards section)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.card-tier-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.tier-label-rozsaszin {
    background: #fce4ec;
    color: #c2185b;
}

.tier-label-turkiz {
    background: #e0f5f3;
    color: #1a5f6a;
}

.tier-label-lila {
    background: #ede7f6;
    color: #6a3d9a;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--cream-dark);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.product-card .product-card-image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--cream);
    margin-bottom: 0;
    border-radius: 0;
}

.product-card .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-content h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
}

.product-card-content > p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.product-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .products-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid,
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Guarantee visual section removed — now in v2-landing.css */

/* ============================================
   SECTION IMAGES - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .section-image {
        margin: var(--space-md) auto var(--space-lg);
        border-radius: var(--radius-md);
    }

    .section-image--problem {
        max-height: 280px;
    }

    .section-image--problem img {
        max-height: 280px;
    }
}

/* ============================================
   FONT REDUCTION — Drop Fraunces & DM Sans
   ============================================ */
/* Fraunces and DM Sans import removed from top;
   all elements now use --font-display (Quicksand) and --font-body (Nunito) */

/* Urgency banner enhancements removed — now in v2-landing.css */

/* Hero mobile CTA removed — now in v2-landing.css */

/* ============================================
   MID-PAGE CTA BUTTONS
   ============================================ */
.mid-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.btn-ghost-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost-teal:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

/* ============================================
   COMPARISON RIBBON
   ============================================ */
.comparison-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-cta);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    white-space: nowrap;
    z-index: 2;
}

.comparison-card.highlight {
    position: relative;
    border: 3px solid var(--teal);
}

/* ============================================
   COMMUNITY DETAIL BADGES
   ============================================ */
.community-detail {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 6px 16px;
    background: var(--teal-lightest);
    color: var(--teal-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-xl);
}

/* ============================================
   MOBILE ACCORDION FOR TIER GROUPS
   ============================================ */
@media (max-width: 768px) {
    .tier-group-header {
        cursor: pointer;
        position: relative;
    }
    .tier-group-header::after {
        content: '▼';
        font-size: 0.75rem;
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    .tier-group-collapsed .tier-group-header::after {
        transform: rotate(-90deg);
    }
    .tier-group-collapsed .products-grid {
        display: none;
    }
}

/* ============================================
   RUNNING TOTAL BAR
   ============================================ */
.catalog-running-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-teal);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-teal);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.catalog-running-total.animated {
    opacity: 1;
    transform: translateY(0);
}

.running-total-item {
    text-align: center;
}

.running-total-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}

.running-total-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.running-total-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
    .catalog-running-total {
        gap: var(--space-md);
        padding: var(--space-md);
    }
    .running-total-number {
        font-size: 1.5rem;
    }
}

/* Pricing enhancements removed — now in v2-landing.css */

/* Sticky CTA dual option removed — now in v2-landing.css */

/* ============================================
   STAGGERED CARD ANIMATIONS
   ============================================ */
.card-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PERSONA CARD HOVER — TIER COLOR GLOW
   ============================================ */
.persona-card.persona-lila:hover {
    box-shadow: 0 20px 60px rgba(149, 133, 170, 0.4);
}
.persona-card.persona-turkiz:hover {
    box-shadow: 0 20px 60px rgba(26, 95, 106, 0.3);
}
.persona-card.persona-rozsaszin:hover {
    box-shadow: 0 20px 60px rgba(229, 163, 181, 0.4);
}

/* Trust badge pulse removed — now in v2-landing.css */

/* Testimonial bold outcomes removed — now in v2-landing.css */

/* FAQ CTA removed — now in v2-landing.css */

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .page-bg-shapes {
        display: none;
    }

    body {
        background: white;
    }
}