:root {
    /* Xehat Palette */
    --bg-main: #FFFFFF;
    --text-dark: #000000;

    --xehat-blue: #1F5C75;
    /* Teal Blue Right Card */
    --xehat-btn: #154559;
    /* Join Now Btn */

    --card-blue-light: #D0E6F0;
    /* Left Card 1 */
    --card-gray-light: #F3F4F6;
    /* Left Card 2 */
    --card-blue-pale: #D9E4EF;
    /* Left Card 3 */

    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Instrument Serif', serif;

    --radius-xl: 3rem;
    --radius-lg: 2rem;
    --radius-md: 1.5rem;
    
    /* New Colors for sections */
    --success-bg: #F0FDF4;
    --success-border: #DCFCE7;
    --success-text: #16A34A;
    
    --error-bg: #FEF2F2;
    --error-border: #FEE2E2;
    --error-text: #DC2626;

    /* Advanced Level / Accent Burgundy */
    --burgundy-pastel: #8B2E3F;
    --burgundy-light: #FBECEF;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-dark);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.main-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 80px;
    /* Space for scroll btn */
}

/* --- NAV --- */
.xehat-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: black;
}

.nav-center {
    display: flex;
    gap: 12px;
}

.nav-pill {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    background: white;
    border: 1.5px solid #E5E7EB;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-pill:hover {
    background: #F9FAFB;
    border-color: var(--xehat-blue);
    color: var(--xehat-blue);
}

.btn-join {
    background-color: var(--burgundy-pastel);
    color: white;
    padding: 12px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-join:hover {
    transform: scale(1.05);
    background-color: #722634; /* Even darker burgundy on hover */
}


/* --- HERO GRID --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: 700px;
    margin-bottom: 100px;
}

/* --- LEFT COLUMN --- */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.hero-supra-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--xehat-blue);
    margin-bottom: 10px;
}

.xehat-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
}

.xehat-title .accent-serif {
    font-style: italic;
    font-size: 1.05em;
}

.hidden-h1 {
    display: inline-block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.inline-avatars {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 100px;
    padding: 4px 12px;
    vertical-align: middle;
    margin: 0 8px;
}

.inline-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: -10px;
    border: 2px solid white;
}

.inline-avatars img:last-child {
    margin-right: 0;
}

.inline-pill-img {
    display: inline-flex;
    vertical-align: middle;
    width: 80px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 8px;
    position: relative;
    top: 5px;
    /* Visual alignment fix */
}

.inline-pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 90%;
}

/* 3 Card Row */
.bento-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.bento-box {
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.2s;
}

.bento-box:hover {
    transform: translateY(-5px);
}

.bg-blue-light {
    background-color: var(--card-blue-light);
}

.bg-gray-light {
    background-color: var(--card-gray-light);
}

.bg-blue-pale {
    background-color: var(--card-blue-pale);
}

.bg-burgundy-light {
    background-color: var(--burgundy-light);
}

.box-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.bento-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.1;
}

.bento-desc {
    font-size: 0.85rem;
    color: #555;
    margin-top: 8px;
    line-height: 1.3;
}

/* Wide Card */
.bento-wide-card {
    background: #EFF6FF;
    /* Very light blue */
    border-radius: var(--radius-lg);
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
}

.stretch-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.heart-ui {
    padding: 30px;
    z-index: 2;
}

.heart-label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.bars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.bars span {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.bars span:nth-child(1) {
    width: 30px;
}

.bars span:nth-child(2) {
    width: 50px;
    background: black;
}

.bars span:nth-child(3) {
    width: 40px;
}

.bpm-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
}

.hit-cardio-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}


/* --- RIGHT COLUMN --- */
.hero-right {
    height: 100%;
}

.big-blue-card {
    background-color: var(--xehat-blue);
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Changed from visible to hidden to contain image */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Pills & Floaters */
.pill-tag {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.top-right {
    top: 30px;
    right: 30px;
}

.float-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: var(--xehat-blue);
    padding: 10px 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 100px;
    font-weight: 700;
}

.left-mid {
    top: 40%;
    left: 30px;
    pointer-events: none;
}

.float-group-right {
    position: absolute;
    top: 50%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-pill {
    background: rgba(21, 69, 89, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    cursor: default;
}

.float-pill.white {
    background: white;
    color: var(--xehat-blue);
    font-weight: 700;
}

/* Corner Stat Card */
.corner-stat-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 2rem;
    padding: 24px 32px;
    min-width: 200px;
    z-index: 10;
}

.corner-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.corner-stat-card p {
    color: #666;
    margin: 4px 0 12px;
}

.stat-avatars {
    display: flex;
    align-items: center;
}

.stat-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: -10px;
    border: 2px solid white;
}

.stat-avatars span {
    margin-left: 16px;
    font-weight: 700;
    font-size: 0.9rem;
}

.corner-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.corner-icon:hover {
    background: #f0f0f0;
}

/* Scroll Btn */
.scroll-down-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 20;
    cursor: pointer;
    transition: transform 0.2s;
}

.scroll-down-btn:hover {
    transform: translateX(-50%) translateY(45%);
}

.scroll-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.scroll-down-btn span {
    font-weight: 600;
    font-size: 0.8rem;
}


/* --- SECTIONS GENERAL --- */
.section-container {
    margin-top: 120px;
    margin-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* --- LEVELS SECTION --- */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.level-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    transform: translateY(-10px);
}

.level-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--xehat-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.level-badge.advanced {
    background: var(--burgundy-pastel);
}

.level-badge.intermediate {
    background: #E5E7EB;
    color: #4B5563;
    border: 1px solid #D1D5DB;
}

.level-badge.beginner {
    background: var(--xehat-blue);
}

/* --- PRICING THEMES --- */
.pricing-card.beginner-theme {
    border-top: 4px solid var(--xehat-blue);
}
.pricing-card.beginner-theme h3 {
    color: var(--xehat-blue);
}
.pricing-card.beginner-theme .included-tag {
    background: #DCFCE7;
    color: #166534;
}

.pricing-card.intermediate-theme {
    border-top: 4px solid #9CA3AF;
}
.pricing-card.intermediate-theme h3 {
    color: #4B5563;
}
.pricing-card.intermediate-theme .included-tag {
    background: #DCFCE7;
    color: #166534;
}

.pricing-card.advanced-theme {
    border-top: 4px solid var(--burgundy-pastel);
}
.pricing-card.advanced-theme h3 {
    color: var(--burgundy-pastel);
}
.pricing-card.advanced-theme .included-tag {
    background: #DCFCE7;
    color: #166534;
}

.level-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.level-content {
    padding: 30px;
    padding-top: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.level-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.level-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.level-features {
    list-style: none;
    margin-top: auto;
}

.level-features li {
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
}

/* --- COMMUNITY SECTION --- */
.community-section {
    background: var(--xehat-blue);
    border-radius: var(--radius-xl);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin-bottom: 100px;
}

.community-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.community-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.community-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feat-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.community-image {
    position: relative;
    height: 100%;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- PRICING SECTION --- */
.pricing-section {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

/* Replaced by New Pricing Styles below */
/* .pricing-card { ... } */

.btn-pricing {
    display: block;
    background: var(--xehat-blue);
    color: white;
    padding: 16px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s;
    text-align: center;
}

.btn-pricing:hover {
    transform: scale(1.02);
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* --- FOOTER --- */
.site-footer {
    border-top: 1px solid #eee;
    padding-top: 60px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================================================
   NEW CONTENT STYLES
   ========================================================================== */

/* --- HERO HIGHLIGHT TEXT --- */
.highlight-text {
    color: var(--xehat-blue);
    display: block;
    margin-top: 12px;
    font-size: 2.5rem; /* Make it slightly smaller than main title but prominent */
    line-height: 1.1;
}


/* --- BENEFITS GRID (8 items) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-card {
    background: #f9f9f9;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.benefit-number {
    background: var(--xehat-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(31, 92, 117, 0.2);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}


/* --- QUOTE BANNERS --- */
.quote-banner {
    background: var(--card-blue-pale);
    padding: 80px 40px;
    text-align: center;
    margin: 100px 0;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

/* Optional deco for quote */
.quote-banner::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 10rem;
    color: rgba(255,255,255,0.4);
    font-family: serif;
    line-height: 0;
}

.quote-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--xehat-blue);
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.secondary-quote {
    background: var(--card-gray-light);
}

.secondary-quote h2 {
    color: #333;
}


/* --- "FOR WHOM" SECTION --- */
.whofor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.whofor-card {
    padding: 50px;
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yes-card {
    background: var(--success-bg);
    border: 2px solid var(--success-border);
}

.no-card {
    background: var(--error-bg);
    border: 2px solid var(--error-border);
}

.whofor-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.yes-card h3 {
    color: #14532D;
}

.no-card h3 {
    color: #7F1D1D;
}

.check-list, .cross-list {
    list-style: none;
    text-align: left;
    margin-bottom: auto; /* Push footer text down */
}

.check-list li, .cross-list li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success-text);
    font-weight: 800;
    font-size: 1.2rem;
}

.cross-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--error-text);
    font-weight: 800;
    font-size: 1.2rem;
}

.card-footer-text {
    margin-top: 40px;
    font-weight: 700;
    color: var(--xehat-blue);
    font-size: 1.2rem;
    text-align: center;
    background: rgba(255,255,255,0.6);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.8);
}


/* --- FAQs SECTION --- */
.faq-section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
    background: white;
    border-radius: 12px;
    transition: all 0.2s;
}

.faq-item:hover {
    background: #fafafa;
}

.faq-item.active {
    background: #fdfdfd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 24px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-family: var(--font-main);
    outline: none;
}

.faq-question:after {
    content: "+";
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--xehat-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--xehat-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    padding-top: 10px; /* Add slight top padding for breathing room */
}

/* Remove hardcoded max-height for active state since JS handles it */
.faq-item.active .faq-answer {
    /* max-height handled by JS */
}


/* --- NEW PRICING SECTION STYLES --- */
.pricing-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Individual Plans Grid as Value Stack */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
    opacity: 0.8; /* Slight fade to show comparison */
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Disabled/Comparison Style */
.disabled-plan {
    background: #fafafa;
    border-color: #eee;
    color: #888;
}

.disabled-plan h3 {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.disabled-plan .price {
    text-decoration: line-through;
    opacity: 0.5;
    color: #888;
    justify-content: center;
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.disabled-plan .included-tag {
    background: #DCFCE7;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto 15px;
}

.disabled-plan .pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #777;
}

/* Main Offer Centered */
.main-offer {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1F5C75 0%, #0F3545 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: white;
    position: relative;
    box-shadow: 0 30px 60px rgba(31, 92, 117, 0.25);
    border: 2px solid var(--burgundy-pastel);
}

.popular-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy-pastel);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.offer-content-vertical {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.offer-content-vertical h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.offer-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.price-comparison {
    margin: 20px 0;
}

.value-row {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.crossed-price {
    text-decoration: line-through;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-left: 8px;
}

.final-price {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.final-price .amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.final-price .currency {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.final-price .period {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    align-self: flex-end;
    margin-bottom: 12px;
}

.offer-checklist {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
}

.offer-checklist li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.large-cta {
    font-size: 1.5rem !important;
    padding: 20px 50px !important;
    background: var(--burgundy-pastel) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(139, 46, 63, 0.3) !important;
}

.large-cta:hover {
    transform: scale(1.05);
    background-color: #722634 !important;
    box-shadow: 0 15px 35px rgba(139, 46, 63, 0.4) !important;
}

.guarantee-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .xehat-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-center {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .big-blue-card {
        min-height: 500px;
        border-radius: var(--radius-lg);
    }

    .scroll-down-btn {
        display: none;
    }

    .bento-row {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .community-section {
        grid-template-columns: 1fr;
    }
    
    .community-image {
        height: 300px;
    }

    /* Benefits responsive */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* For Whom responsive */
    .whofor-grid {
        grid-template-columns: 1fr;
    }

    .quote-banner h2 {
        font-size: 1.6rem;
    }

    /* Pricing Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide stack on mobile if too long, or keep it stacked */
    .pricing-card.disabled-plan {
        padding: 20px;
    }

    .offer-checklist {
        padding: 20px;
    }
    
    .final-price .amount {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .xehat-title {
        font-size: 2.5rem;
    }
    
    .highlight-text {
        font-size: 1.8rem;
    }
}

/* --- ABOUT PAGE --- */
.about-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 100px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 120px;
}

.bio-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.bio-img-container:hover .bio-img {
    transform: scale(1.03);
}

.bio-content {
    padding: 20px;
}

.bio-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--xehat-blue);
    margin-bottom: 8px;
    line-height: 1.1;
}

.bio-age {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    margin-left: 10px;
}

.bio-role {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy-pastel);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    background: var(--burgundy-light);
    padding: 6px 16px;
    border-radius: 50px;
}

.bio-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.cta-section-simple {
    text-align: center;
    background: var(--xehat-blue);
    padding: 80px 20px;
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: 80px;
}

.cta-section-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section-simple p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .bio-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bio-row.reverse .bio-content {
        order: 0; /* Reset order on mobile so text is always below/above consistently if desired, or keep generic flow */
    }
    
    .bio-img-container {
        height: 400px;
    }
}