/* BASE RESET & VARIABLES - ULTRA PREMIUM AESTHETIC */
:root {
    --bg-color: #FDFDFB; 
    --text-primary: #1C1A17; 
    --text-secondary: #74706A; 
    
    --accent-green: #80b583;
    --accent-terracotta: #bc9e7e;
    --accent-beige: #ece5dc;
    --accent-yellow: #e4c271; 
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body { background-color: var(--bg-color); color: var(--text-primary); font-family: 'Outfit', sans-serif; line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }

h1, h2, h3, h4, .logo, .price { font-family: 'Playfair Display', serif; }

/* TYPOGRAPHY */
h1 { font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1.05; font-weight: 500; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--text-primary); }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--text-primary); }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; max-width: 550px; margin-bottom: 24px; }
.subtitle { font-size: 1.15rem; font-family: 'Outfit', sans-serif; color: var(--text-secondary); background: transparent; }
.accent-italic { font-style: italic; color: var(--accent-terracotta); font-weight: 400; }
.mt-1 { margin-top: 24px; }

/* STICKY FLOATING CTA */
.floating-sticky-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: var(--text-primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.floating-sticky-cta:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: var(--accent-green);
    box-shadow: 0 20px 50px rgba(128,181,131,0.4);
}

/* NAVIGATION */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 24px 5%; position: fixed; width: 100%; top: 0; z-index: 100; background: rgba(253, 253, 251, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.03); }
.logo { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); }
.logo span { color: var(--accent-green); }
.nav-links a { color: var(--text-secondary); text-decoration: none; margin: 0 20px; font-weight: 400; font-size: 0.95rem; font-family: 'Outfit', sans-serif; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--text-primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; border-radius: 100px; font-weight: 500; font-family: 'Outfit', sans-serif; text-decoration: none; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; font-size: 0.95rem; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--text-primary); color: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); background-color: var(--accent-green); }
.btn-ghost { color: var(--text-primary); background: transparent; border-bottom: 1px solid rgba(0,0,0,0.2); border-radius: 0; padding: 6px 0; }
.btn-ghost:hover { color: var(--accent-terracotta); border-bottom-color: var(--accent-terracotta); }

.btn-play-v1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 8px 24px 8px 8px;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.btn-play-v1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.15);
}
.btn-play-v1 .play-icon-small {
    width: 32px;
    height: 32px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.btn-play-v1:hover .play-icon-small {
    background: var(--accent-terracotta);
}
.btn-play-v1 .play-icon-small svg {
    fill: #fff;
    margin-left: 2px;
}

/* HERO SECTION */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 60px; padding: 180px 5% 100px; min-height: 90vh; max-width: 1300px; margin: 0 auto; }
.pill-badge { display: inline-block; padding: 6px 16px; border: 1px solid rgba(0,0,0,0.08); color: var(--text-secondary); border-radius: 50px; font-size: 0.8rem; font-weight: 500; font-family: 'Outfit', sans-serif; letter-spacing: 0.5px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 32px; align-items: center; }
.hero-visual { position: relative; width: 100%; display: flex; justify-content: flex-end; }
.hero-portrait-image { width: 100%; max-width: 550px; border-radius: 24px; box-shadow: 0 32px 64px rgba(0,0,0,0.1); object-fit: cover; height: 600px; position: relative; z-index: 2; transform: rotate(1deg); transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hero-portrait-image:hover { transform: rotate(0deg) scale(1.02); }
.glow-orb { position: absolute; width: 50vw; height: 50vw; border-radius: 50%; filter: blur(100px); z-index: 1; opacity: 0.3; }
.orb-1 { background: radial-gradient(circle, var(--accent-beige) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* LOGO CLOUD */
.logo-cloud { padding: 40px 5% 30px; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.03); text-align: center; }
.logo-cloud p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 32px; font-weight: 500; font-family: 'Outfit', sans-serif; }
.logos-wrapper { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 60px; opacity: 0.5; filter: grayscale(100%); transition: all 0.4s ease; }
.logos-wrapper:hover { filter: grayscale(80%); opacity: 0.7; }
.logos-wrapper img { height: 35px; object-fit: contain; max-width: 140px; }
.text-logo { font-size: 1.25rem; font-weight: 800; font-family: 'Outfit', sans-serif; letter-spacing: -0.5px; opacity: 0.8; }

/* PREMIUM GLASS CARDS & HOVER CARDS */
.glass-card { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 1); border-radius: 20px; padding: 48px; transition: transform 0.4s ease, box-shadow 0.4s ease; box-shadow: 0 4px 24px rgba(0,0,0,0.02), inset 0 2px 0 rgba(255,255,255,1); position: relative; overflow: hidden; }
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.04), inset 0 2px 0 rgba(255,255,255,1); }
.card-yellow::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-yellow); }
.card-green::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-green); }
.card-beige::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-terracotta); }

/* INTERACTIVE HOVER CARDS */
.hover-card { background: #fff; border: 1px solid rgba(0,0,0,0.04); border-radius: 20px; padding: 40px; position: relative; cursor: default; box-shadow: 0 8px 30px rgba(0,0,0,0.03); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; flex-direction: column; justify-content: flex-start; max-height: 140px; overflow: hidden; }
.hover-card:hover { max-height: 600px; padding-bottom: 60px; transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.08); background: #fdfdfb; }
.card-num { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; color: var(--accent-terracotta); margin-bottom: 24px; opacity: 0.8; }
.card-title-wrap { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; gap: 16px; }
.hover-plus { font-size: 1.8rem; font-weight: 300; line-height: 1; color: var(--accent-terracotta); transition: transform 0.5s ease; flex-shrink: 0; }
.hover-card:hover .hover-plus { transform: rotate(45deg); color: var(--text-primary); }
.card-hidden-text { opacity: 0; max-height: 0; margin-top: 0; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; z-index: 1; }
.hover-card:hover .card-hidden-text { opacity: 1; max-height: 500px; margin-top: 32px; }

/* PROBLEM SECTION */
.problem-section { padding: 120px 5%; position: relative; }
.center { text-align: center; margin: 0 auto 60px; display: flex; flex-direction: column; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.icon-wrap { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; background: #ffffff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); }
.icon-wrap svg { width: 22px; height: 22px; stroke: var(--text-primary); stroke-width: 1.5; fill: none; }

/* SCIENCE / DATA SECTION */
.science-section { padding: 100px 5%; background: var(--text-primary); color: #fff; }
.science-layout { max-width: 1000px; margin: 0 auto; }
.science-content h2, .science-content p { color: #fff; }
.science-content .subtitle { color: rgba(255,255,255,0.7); }
.data-accordion { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.factual-case { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.case-header { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 16px; color: var(--accent-yellow); }
.case-body { font-family: 'Outfit', sans-serif; font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; }
.case-body strong { color: #fff; font-weight: 600; }

/* AURASPHERE STYLE VERTICAL TESTIMONIALS */
.testimonial-vertical-section { background: #fff; padding: 120px 5%; }
.testimonial-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.sticky-visual-container { position: sticky; top: 120px; }
.split-image { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); object-fit: cover; height: 500px; margin-top: 32px; }

.testimonial-scroll-side { 
    height: 700px; 
    overflow: hidden; 
    position: relative;
    /* Fade borders out at top and bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}
.testimonial-track {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* CSS Marquee animation for vertical endless scroll */
    animation: scrollVertical 30s linear infinite;
}
.testimonial-track:hover {
    animation-play-state: paused;
}
@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Scrolls exactly halfway (which contains all duplicated items) */
}

.testimonial-track .quote-card { background: #fff; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 16px; padding: 40px; }
.quote-card .quote { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--text-primary); margin-bottom: 24px; }
.author { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 16px; }

/* PROGRAM TIMELINE */
.program-section { padding: 120px 5%; background-color: #ffffff; border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.timeline { display: flex; flex-direction: column; gap: 40px; max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,0.05); z-index: 1; }
.timeline-item { display: flex; gap: 40px; align-items: flex-start; position: relative; z-index: 2; }
.timeline-marker { width: 80px; height: 80px; background: #fff; border: 2px solid var(--accent-terracotta); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--accent-terracotta); flex-shrink: 0; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.timeline-content { flex-grow: 1; padding: 40px; }
.timeline-subtitle { font-family: 'Playfair Display', serif; font-style: italic; color: var(--text-secondary); margin-bottom: 24px; font-size: 1.2rem; }
.timeline-list { list-style: none; margin-left: 0; }
.timeline-list li { margin-bottom: 16px; position: relative; padding-left: 24px; color: var(--text-secondary); line-height: 1.5; }
.timeline-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-terracotta); }
.timeline-list strong { color: var(--text-primary); font-weight: 600; }

/* ABOUT SECTION */
.about-section { padding: 120px 5%; background: linear-gradient(to bottom, transparent, rgba(236, 229, 220, 0.15), transparent); }
.about-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; text-align: left; }
.about-image-wrapper { position: relative; }
.about-image-wrapper img { width: 100%; border-radius: 24px; box-shadow: 0 32px 64px rgba(0,0,0,0.1); object-fit: cover; }
.credential-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 32px; margin-top: 32px; }
.credential h3 { font-family: 'Outfit', sans-serif; margin-bottom: 4px; font-size: 1.2rem; }
.credential span { font-size: 0.85rem; color: var(--text-secondary); }

/* RESOURCES / HUB SECTION */
.hub-section { padding: 120px 5%; }
.resource-card { display: block; background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; padding: 40px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.resource-card:hover { transform: translateY(-4px); border-color: rgba(0,0,0,0.1); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.resource-card h3 { color: var(--text-primary); margin-bottom: 16px; }
.resource-card p { margin-bottom: 24px; font-size: 0.95rem; }
.resource-tag { display: inline-block; padding: 4px 12px; font-size: 0.75rem; background: rgba(0,0,0,0.03); color: var(--text-secondary); border-radius: 4px; margin-bottom: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.read-more { color: var(--accent-terracotta); font-weight: 600; font-size: 0.9rem; }

/* FAQ AEO SECTION */
.faq-section { padding: 100px 5%; background: #ffffff; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-question { width: 100%; border: none; background: transparent; text-align: left; padding: 24px 0; font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question .icon { font-size: 1.5rem; color: var(--accent-terracotta); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 24px; margin-bottom: 0; color: var(--text-secondary); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }

/* CTA SECTION */
.cta-section { padding: 120px 5%; }
.cta-content { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 100px 40px; background: #ffffff; }
.price { font-size: 4rem; color: var(--text-primary); margin-bottom: 32px; font-weight: 400; }

/* FOOTER */
footer { padding: 100px 5% 40px; background-color: transparent; color: var(--text-primary); border-top: 1px solid rgba(0,0,0,0.05); }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MEDIA QUERIES */
@media (max-width: 968px) {
    .hero, .about-layout, .framework-layout { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .testimonial-split { grid-template-columns: 1fr; }
    .sticky-visual-container { position: relative; top: 0; }
    .testimonial-scroll-side { height: 500px; }
    .floating-sticky-cta { bottom: 20px; right: 20px; padding: 12px 24px; font-size: 0.8rem; }
}

/* ================= V2 FUNNEL COMPONENTS ================= */

/* VSL (Video Sales Letter) Hero overlay */
.vsl-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; background: rgba(28, 26, 23, 0.2); border-radius: 24px; transition: background 0.3s; }
.vsl-overlay:hover { background: rgba(28, 26, 23, 0.4); }
.play-circle { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.play-circle svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }
.vsl-overlay:hover .play-circle { transform: scale(1.1); background: rgba(255, 255, 255, 0.3); border-color: #fff; }

/* Dark Contrast Trust Bar */
.trust-bar { background: var(--text-primary); color: #fff; padding: 40px 5%; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); margin-top: -40px; position: relative; z-index: 10; }
.trust-metrics { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.metric { text-align: center; }
.metric h3 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 4px; color: var(--accent-beige); font-family: 'Playfair Display', serif; }
.metric span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; font-family: 'Outfit', sans-serif; font-weight: 500; }

/* Dark Contrast Calculator Banner */
.calculator-banner { background: var(--text-primary); color: #fff; border-radius: 24px; padding: 80px 5%; text-align: center; position: relative; overflow: hidden; max-width: 1200px; margin: 0 auto; box-shadow: 0 32px 64px rgba(0,0,0,0.15); }
.calculator-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 0%, rgba(188, 158, 126, 0.15) 0%, transparent 70%); pointer-events: none; }
.calculator-banner h2 { color: #fff; }
.calculator-banner p { color: rgba(255,255,255,0.7); margin: 24px auto; }
.calculator-banner input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; transition: border-color 0.3s; }
.calculator-banner input:focus { border-color: var(--accent-terracotta); outline: none; }
.calculator-banner input::placeholder { color: rgba(255,255,255,0.4); }
.calculator-banner .btn-primary { background: #fff; color: var(--text-primary); }
.calculator-banner .btn-primary:hover { background: var(--accent-beige); transform: translateY(-2px); }

/* HORIZONTAL ACCORDION GALLERY */
.accordion-gallery {
    display: flex;
    gap: 16px;
    height: 500px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.accordion-item {
    position: relative;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s;
    display: flex;
    flex-direction: column;
}
.accordion-item:hover {
    background: rgba(255,255,255,0.06);
}
.accordion-item[data-state="expanded"] { flex: 5; }
.accordion-item[data-state="compressed"] { flex: 1; }

.accordion-tab {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
    opacity: 1;
    transition: opacity 0.3s 0.1s;
}
.accordion-item[data-state="expanded"] .accordion-tab {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s 0s;
}

.accordion-tab-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    opacity: 0.8;
}
.accordion-tab-icon svg {
    width: 32px;
    height: 32px;
}
.accordion-tab-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 1px;
}

.accordion-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    transition-delay: 0s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    inset: 0;
    padding: 0 60px;
}
.accordion-item[data-state="expanded"] .accordion-content {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.3s;
}
.accordion-inner { width: 450px; max-width: 100%; }

@media (max-width: 968px) {
    .accordion-gallery { flex-direction: column; height: 800px; }
    .accordion-item[data-state="compressed"] { flex: 1; }
    .accordion-item[data-state="expanded"] { flex: 3; }
    .accordion-tab { flex-direction: row; justify-content: flex-start; padding: 20px; align-items: center; gap: 16px; }
    .accordion-tab-title { writing-mode: horizontal-tb; transform: none; margin-top: 0; }
    .accordion-tab-icon { margin-bottom: 0; }
    .accordion-content { padding: 0 30px; }
}
