@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ===== Root Variables ===== */
:root {
    --primary-dark: #0f0f0f;
    --teal-dark: #2d4a35;
    --teal-medium: #4a7055;
    --teal-light: #ede5d5;
    --accent-gold: #d4a74a;
    --accent-pink: #fce0d5;
    --text-light: #f5f5f5;
    --text-dark: #2a2a2a;
    --bg-dark: #0f0f0f;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --gray-secondary: #c8c3c9;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    --font-heading: 'Sora', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
}

.section-intro {
    font-size: 1.3rem;
    color: var(--teal-medium);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-medium), #b8922a);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 146, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 146, 42, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-medium);
    border: 2px solid var(--teal-medium);
}

.btn-secondary:hover {
    background: var(--teal-medium);
    color: white;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    background: var(--teal-medium);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: #b8922a;
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 167, 74, 0.1);
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-serif);
    background: linear-gradient(135deg, var(--accent-gold), var(--teal-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--teal-medium);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 5px 8px;
}

.lang-btn:hover {
    color: var(--teal-medium);
}

.lang-btn.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.lang-divider {
    color: rgba(245, 245, 245, 0.3);
    font-weight: 300;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, rgba(15, 15, 15, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--teal-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: rgba(245, 245, 245, 0.95);
}

.hero-metrics {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin-top: 3rem;
    text-align: center;
}

.metric {
    background: rgba(184, 146, 42, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(184, 146, 42, 0.2);
}

.metric h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.metric p {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.8);
}

/* ===== Jessyca Intro Section ===== */
.jessyca-intro {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    padding: 5rem 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(156, 208, 211, 0.1);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.jessyca-name {
    margin-bottom: 2.5rem;
}

.jessyca-name p {
    color: var(--teal-medium);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.jessyca-name h3 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin: 0;
}

.intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 1.8rem;
    text-align: justify;
}

.intro-closing {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--teal-light);
    font-style: italic;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 208, 211, 0.3);
}

/* ===== Problem Section ===== */
.problem {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(212, 167, 74, 0.1);
}

.problem h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.symptom-item {
    background: rgba(184, 146, 42, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--teal-medium);
    transition: all 0.3s ease;
}

.symptom-item:hover {
    background: rgba(184, 146, 42, 0.1);
    transform: translateY(-5px);
}

.symptom-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.symptom-item h4 {
    color: var(--teal-medium);
    margin-bottom: 0.5rem;
}

.problem-deep {
    background: rgba(184, 146, 42, 0.08);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.problem-deep h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.highlight-box {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(184, 146, 42, 0.1);
    border: 2px solid var(--teal-medium);
    border-radius: 8px;
}

.highlight-box p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

/* ===== Pattern Section ===== */
.pattern {
    padding: 5rem 0;
    background: var(--primary-dark);
}

.pattern h2 {
    color: var(--teal-medium);
}

.pattern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.pattern-text h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
}

.pattern-list {
    list-style: none;
    margin: 1.5rem 0;
}

.pattern-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: rgba(245, 245, 245, 0.9);
}

.pattern-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--teal-medium);
    font-size: 1.3rem;
}

.pattern-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.pattern-consequence {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 167, 74, 0.1);
    border-left: 4px solid var(--accent-gold);
    font-style: italic;
}

.responses {
    margin-top: 3rem;
    text-align: center;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.response-item {
    background: rgba(184, 146, 42, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.response-item h4 {
    color: var(--teal-medium);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.response-item p {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===== Solution Section ===== */
.solution {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-dark) 100%);
}

.solution h2 {
    color: var(--accent-gold);
}

.core-box {
    background: rgba(184, 146, 42, 0.1);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid rgba(184, 146, 42, 0.3);
    margin: 2rem 0;
}

.core-box h3 {
    color: var(--teal-medium);
    margin-bottom: 1.5rem;
}

.core-list {
    display: grid;
    gap: 1rem;
}

.core-list p {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
}

.core-list p:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
}

.solution-statement {
    text-align: center;
    font-size: 1.4rem;
    margin: 2rem 0;
    color: var(--teal-medium);
    padding: 2rem;
    border: 2px solid var(--teal-medium);
    border-radius: 8px;
}

.kora-system {
    margin-top: 3rem;
}

.kora-system h3 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.system-item {
    background: rgba(184, 146, 42, 0.08);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(184, 146, 42, 0.2);
    transition: all 0.3s ease;
}

.system-item:hover {
    background: rgba(184, 146, 42, 0.15);
    border-color: var(--teal-medium);
    transform: translateY(-5px);
}

.system-item h4 {
    color: var(--teal-medium);
    margin-bottom: 0.8rem;
}

.kora-promise {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 167, 74, 0.1);
    border-radius: 8px;
}

.kora-promise p {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===== Phases Section ===== */
.phases {
    padding: 5rem 0;
    background: var(--primary-dark);
}

.phases h2 {
    color: var(--teal-medium);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.phase-card {
    background: linear-gradient(135deg, rgba(184, 146, 42, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(184, 146, 42, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.phase-card:hover {
    background: linear-gradient(135deg, rgba(184, 146, 42, 0.15) 0%, rgba(212, 167, 74, 0.1) 100%);
    transform: translateY(-10px);
    border-color: var(--teal-medium);
}

.phase-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.phase-card h3 {
    font-size: 1.8rem;
    color: var(--teal-medium);
    margin-bottom: 0.5rem;
}

.phase-subtitle {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-description {
    font-size: 0.95rem;
    margin: 1.5rem 0;
    color: rgba(245, 245, 245, 0.85);
}

.phase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 1.5rem;
}

/* ===== Results Section ===== */
.results {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 100%);
}

.results h2 {
    color: var(--accent-gold);
}

.results-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.timeline-item {
    background: rgba(184, 146, 42, 0.08);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--teal-medium);
}

.timeline-item h3 {
    color: var(--teal-medium);
    margin-bottom: 1.5rem;
}

.timeline-item ul {
    list-style: none;
}

.timeline-item li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: rgba(245, 245, 245, 0.85);
}

.timeline-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.transformation {
    margin-top: 3rem;
    text-align: center;
}

.transformation h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.transformation-grid p {
    background: rgba(184, 146, 42, 0.1);
    padding: 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    color: var(--teal-medium);
}

/* ===== Live Comments Section ===== */
.live-comments {
    padding: 5rem 0;
    background: var(--primary-dark);
    border-top: 2px solid var(--teal-medium);
}

.live-comments h2 {
    color: var(--teal-medium);
}

.comments-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background: rgba(19, 84, 93, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(156, 208, 211, 0.2);
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.comment-stream {
    width: 100%;
}

.comment-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--teal-medium);
    animation: slideIn 0.6s ease;
    display: none;
}

.comment-item.active {
    display: block;
}

.comment-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.comment-author {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.comment-emoji {
    margin-left: 0.5rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comments-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.comment-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(156, 208, 211, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.comment-dot.active {
    background: var(--teal-medium);
    transform: scale(1.3);
    border-color: var(--accent-gold);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--primary-dark);
}

.testimonials h2 {
    color: var(--teal-medium);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(212, 175, 55, 0.08);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== Filter Section ===== */
.filter {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-dark) 100%);
}

.filter h2 {
    color: var(--accent-gold);
}

.filter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.filter-yes, .filter-no {
    background: rgba(184, 146, 42, 0.08);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(184, 146, 42, 0.2);
}

.filter-no {
    border-color: rgba(231, 76, 60, 0.2);
    background: rgba(231, 76, 60, 0.05);
}

.filter-yes h3 {
    color: var(--success-color);
}

.filter-no h3 {
    color: #e74c3c;
}

.filter-yes ul, .filter-no ul {
    list-style: none;
    margin-top: 1.5rem;
}

.filter-yes li, .filter-no li {
    padding: 0.8rem 0 0.8rem 1.8rem;
    position: relative;
    color: rgba(245, 245, 245, 0.85);
}

.filter-yes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.filter-no li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    text-align: center;
    border-top: 2px solid var(--teal-medium);
}

.cta-section h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cta-section > .container > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(245, 245, 245, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.cohort-details {
    background: rgba(184, 146, 42, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(184, 146, 42, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.cohort-details h3 {
    color: var(--teal-medium);
    margin-bottom: 1.5rem;
}

.cohort-details p {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    color: rgba(245, 245, 245, 0.9);
}

.cohort-details strong {
    color: var(--accent-gold);
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--primary-dark);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(184, 146, 42, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--teal-medium);
}

.modal-content h2 {
    color: var(--teal-medium);
    margin-bottom: 2rem;
}

/* ===== Form ===== */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--teal-medium);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(184, 146, 42, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-medium);
    background: rgba(184, 146, 42, 0.1);
    box-shadow: 0 0 10px rgba(184, 146, 42, 0.2);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group button {
    margin-top: 1rem;
}

.success-message {
    text-align: center;
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-message p {
    margin-bottom: 1rem;
    color: rgba(245, 245, 245, 0.9);
}

/* ===== Footer ===== */
.footer {
    background: #000;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--teal-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 245, 245, 0.5);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .language-selector {
        order: -1;
        margin-right: auto;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .jessyca-name h3 {
        font-size: 1.8rem;
    }

    .intro-paragraph {
        font-size: 1rem;
    }

    .comments-container {
        padding: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .pattern-content,
    .filter-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
    }

    .modal-content {
        padding: 2rem;
    }

    .close {
        right: 1.5rem;
        top: 1rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .symptom-grid,
    .response-grid,
    .phases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-intro {
        font-size: 1.1rem;
    }
}

/* =============================================
   KORA Premium Redesign Override
   Visual match for public_html_old theme
   Scope: CSS-only restyle, no markup or script changes
   ============================================= */

:root {
    --primary-dark: #2c1f0e;
    --teal-dark: #2d4a35;
    --teal-medium: #4a7055;
    --teal-light: #ede5d5;
    --accent-gold: #b8922a;
    --accent-pink: #f0d9a0;
    --text-light: #f5f0e8;
    --text-dark: #2c1f0e;
    --bg-dark: #2c1f0e;
    --bg-light: #f5f0e8;
    --border-color: rgba(184, 146, 42, 0.16);
    --success-color: #2d4a35;
    --gray-secondary: #7a5c3c;
    --ivory: #f5f0e8;
    --ivory-dark: #ede5d5;
    --gold: #b8922a;
    --gold-light: #d4a84b;
    --gold-pale: #f0d9a0;
    --earth: #2c1f0e;
    --earth-mid: #4a3520;
    --earth-soft: #7a5c3c;
    --green: #2d4a35;
    --green-soft: #4a7055;
    --shadow: 0 8px 40px rgba(44, 31, 14, 0.15);
    --shadow-lg: 0 24px 80px rgba(44, 31, 14, 0.2);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', sans-serif;
    --font-heading: 'Jost', sans-serif;
}

html {
    background: var(--ivory);
    scroll-padding-top: 96px;
}

body {
    background:
        radial-gradient(circle at 90% 8%, rgba(184, 146, 42, 0.11), transparent 34rem),
        radial-gradient(circle at 10% 38%, rgba(45, 74, 53, 0.08), transparent 28rem),
        var(--ivory);
    color: var(--earth);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(184, 146, 42, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 146, 42, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 80%, transparent);
}

body > * {
    position: relative;
    z-index: 1;
}

::selection {
    background: var(--gold-pale);
    color: var(--earth);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ivory-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.container {
    max-width: 1200px;
    padding: 0 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--earth);
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.9rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 500;
}

h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

p,
li {
    color: var(--earth-soft);
    font-size: 1rem;
}

a {
    color: inherit;
}

.section-intro {
    color: var(--earth-soft);
    font-family: var(--font-sans);
    font-size: 1.04rem;
    font-weight: 300;
    margin: 0 auto 4.5rem;
    max-width: 620px;
    position: relative;
}

.section-intro::before {
    color: var(--gold);
    content: '✦';
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.btn,
.btn-nav,
.btn-primary,
.btn-secondary {
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary,
.btn-nav {
    background: var(--earth);
    border: 1px solid var(--earth);
    box-shadow: none;
    color: var(--ivory);
}

.btn-primary::before,
.btn-nav::before {
    background: var(--gold);
    content: '';
    inset: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-primary:hover,
.btn-nav:hover {
    border-color: var(--gold);
    box-shadow: none;
    color: var(--ivory);
    transform: translateY(-3px);
}

.btn-primary:hover::before,
.btn-nav:hover::before {
    transform: scaleX(1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(44, 31, 14, 0.28);
    color: var(--earth);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    align-items: center;
    background: var(--earth);
    border: 1px solid var(--earth);
    box-shadow: none;
    color: var(--ivory);
    display: inline-flex;
    gap: 0.65rem;
    justify-content: center;
}

.btn-whatsapp::before {
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
    content: '';
    height: 0.72rem;
    width: 0.72rem;
}

.btn-whatsapp:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
}

/* Navigation */
.navbar {
    background: rgba(245, 240, 232, 0.9);
    border-bottom: 1px solid rgba(184, 146, 42, 0.18);
    box-shadow: 0 1px 0 rgba(184, 146, 42, 0.08);
    left: 0;
    padding: 1rem 0;
    position: fixed;
    right: 0;
    transition: var(--transition);
    width: 100%;
}

.navbar .container {
    align-items: center;
}

.nav-brand {
    color: var(--earth);
    gap: 12px;
}

.logo {
    filter: none;
    height: 34px;
    object-fit: contain;
    width: auto;
}

.logo-full {
    height: 42px;
    max-width: 170px;
}

.brand-text {
    background: none;
    color: var(--earth);
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    -webkit-text-fill-color: currentColor;
}

.brand-text::before {
    color: var(--gold);
    content: '✦';
    display: inline-block;
    font-size: 1rem;
    margin-right: 0.55rem;
    animation: kora-spin 12s linear infinite;
    vertical-align: 0.08em;
}

@keyframes kora-spin {
    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    gap: 2.4rem;
}

.nav-links a:not(.btn-nav),
.lang-btn {
    color: var(--earth-mid);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    padding-bottom: 4px;
    position: relative;
    text-transform: uppercase;
}

.nav-links a:not(.btn-nav)::after,
.lang-btn::after {
    background: var(--gold);
    bottom: 0;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    width: 100%;
}

.nav-links a:not(.btn-nav):hover,
.lang-btn:hover,
.lang-btn.active {
    color: var(--earth);
}

.nav-links a:not(.btn-nav):hover::after,
.lang-btn:hover::after,
.lang-btn.active::after {
    transform: scaleX(1);
}

.btn-nav {
    padding: 10px 24px;
}

.language-selector {
    gap: 0.35rem;
}

.lang-divider {
    color: rgba(44, 31, 14, 0.25);
}

/* Hero */
.hero {
    align-items: center;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede5d5 48%, #e4d8c0 100%);
    display: flex;
    justify-content: flex-start;
    min-height: 100vh;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero::before,
.hero::after {
    border-radius: 50%;
    content: '';
    filter: blur(78px);
    opacity: 0.55;
    pointer-events: none;
    position: absolute;
}

.hero::before {
    animation: kora-float 8s ease-in-out infinite;
    background: radial-gradient(circle, rgba(184, 146, 42, 0.2), transparent 70%);
    height: 580px;
    right: -120px;
    top: -190px;
    width: 580px;
}

.hero::after {
    animation: kora-float 9s ease-in-out -3s infinite;
    background: radial-gradient(circle, rgba(45, 74, 53, 0.15), transparent 70%);
    bottom: -90px;
    height: 400px;
    left: 7%;
    width: 400px;
}

@keyframes kora-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-38px) scale(1.05);
    }
}

.hero-background {
    height: 520px;
    left: auto;
    overflow: visible;
    right: clamp(2rem, 7vw, 8rem);
    top: 54%;
    transform: translateY(-50%);
    width: 400px;
    z-index: 1;
}

.hero-background::before {
    border: 1px solid rgba(184, 146, 42, 0.25);
    border-radius: 220px 220px 0 0;
    content: '';
    inset: -20px;
    position: absolute;
    z-index: 2;
}

.hero-background::after {
    color: var(--gold);
    content: '✦';
    font-size: 1.45rem;
    position: absolute;
    right: -12px;
    top: -20px;
    z-index: 3;
    animation: kora-spin 16s linear infinite;
}

.hero-bg-image {
    border-radius: 200px 200px 0 0;
    box-shadow: var(--shadow-lg);
    filter: saturate(0.88) contrast(0.96) brightness(1.04);
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    width: 100%;
}

.hero:hover .hero-bg-image {
    transform: scale(1.04);
}

.hero-overlay {
    display: none;
}

.hero-content {
    margin: 0;
    max-width: 1200px;
    text-align: left;
    width: 100%;
    z-index: 2;
}

.hero-text {
    max-width: 580px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-title {
    background: none;
    color: var(--earth);
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5.8vw, 6rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 1.7rem;
    max-width: 620px;
    text-transform: none;
    -webkit-text-fill-color: currentColor;
}

.hero-title::after {
    color: var(--gold);
    content: ' Method';
    display: block;
    font-style: italic;
}

.hero-subtitle {
    color: var(--earth-soft);
    font-size: 1.08rem;
    line-height: 1.78;
    margin-bottom: 3rem;
    max-width: 490px;
}

.hero-metrics {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    left: max(60px, calc((100vw - 1200px) / 2 + 60px));
    margin: 0;
    max-width: 620px;
    padding-left: 0;
    position: absolute;
    top: calc(50% + 96px);
    z-index: 3;
}

.metric {
    align-items: center;
    background: rgba(44, 31, 14, 0.055);
    border: 1px solid rgba(184, 146, 42, 0.25);
    border-radius: 40px;
    display: flex;
    gap: 0.75rem;
    padding: 10px 18px;
    text-align: left;
}

.metric h3 {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.55rem;
    line-height: 1;
    margin: 0;
}

.metric p {
    color: var(--earth-mid);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

/* Shared sections */
.jessyca-intro,
.problem,
.pattern,
.solution,
.phases,
.results,
.live-comments,
.testimonials,
.filter,
.cta-section {
    background: var(--ivory);
    border: 0;
    padding: 118px 0;
}

.jessyca-intro,
.solution,
.results,
.filter {
    background:
        radial-gradient(circle at 92% 44%, rgba(184, 146, 42, 0.08), transparent 24rem),
        linear-gradient(160deg, #ede5d5 0%, #f5f0e8 100%);
}

.pattern,
.phases,
.testimonials {
    background: var(--ivory);
}

.live-comments,
.cta-section,
.footer {
    background: var(--earth);
}

.problem h2,
.pattern h2,
.solution h2,
.phases h2,
.results h2,
.live-comments h2,
.testimonials h2,
.filter h2,
.cta-section h2,
.intro-text h2 {
    color: var(--earth);
    font-size: clamp(2.45rem, 4vw, 3.8rem);
    line-height: 1.12;
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
}

.problem h2::first-letter,
.pattern h2::first-letter,
.solution h2::first-letter,
.phases h2::first-letter,
.results h2::first-letter,
.filter h2::first-letter,
.intro-text h2::first-letter {
    color: var(--gold);
    font-style: italic;
}

.jessyca-intro {
    overflow: hidden;
    position: relative;
}

.jessyca-intro::after {
    background: radial-gradient(circle, rgba(184, 146, 42, 0.08), transparent 70%);
    border-radius: 50%;
    content: '';
    height: 600px;
    pointer-events: none;
    position: absolute;
    right: -220px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
}

.intro-content {
    max-width: 920px;
}

.intro-text {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(184, 146, 42, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
}

.intro-text h2 {
    text-align: left;
}

.jessyca-name {
    border-top: 1px solid rgba(184, 146, 42, 0.24);
    margin-bottom: 2.4rem;
    padding-top: 1.5rem;
}

.jessyca-name p {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.jessyca-name h3 {
    color: var(--earth);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-style: italic;
}

.intro-paragraph,
.intro-closing {
    color: var(--earth-mid);
    font-size: 1.02rem;
    line-height: 1.85;
    text-align: left;
}

.intro-closing {
    border-color: rgba(184, 146, 42, 0.25);
    color: var(--green);
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.symptom-grid,
.system-grid,
.phases-grid,
.results-timeline,
.transformation-grid,
.testimonials-grid {
    gap: 1.6rem;
}

.symptom-item,
.system-item,
.phase-card,
.timeline-item,
.transformation-grid p,
.testimonial,
.response-item,
.filter-yes,
.filter-no,
.cohort-details,
.problem-deep,
.highlight-box,
.core-box,
.comments-container,
.comment-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 146, 42, 0.15);
    border-left: 0;
    border-radius: var(--radius-lg);
    box-shadow: none;
    color: var(--earth);
    transition: var(--transition);
}

.symptom-item,
.system-item,
.phase-card,
.timeline-item,
.testimonial,
.response-item {
    overflow: hidden;
    position: relative;
}

.symptom-item::before,
.system-item::before,
.phase-card::before,
.timeline-item::before,
.testimonial::before,
.response-item::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    content: '';
    height: 2px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.4s ease;
}

.symptom-item:hover,
.system-item:hover,
.phase-card:hover,
.timeline-item:hover,
.testimonial:hover,
.response-item:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.symptom-item:hover::before,
.system-item:hover::before,
.phase-card:hover::before,
.timeline-item:hover::before,
.testimonial:hover::before,
.response-item:hover::before {
    opacity: 1;
}

.symptom-item .icon {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1;
    opacity: 0.78;
}

.symptom-item h4,
.system-item h4,
.response-item h4,
.timeline-item h3,
.cohort-details h3,
.core-box h3 {
    color: var(--earth);
}

.symptom-item p,
.system-item p,
.phase-description,
.timeline-item li,
.testimonial-text,
.filter-yes li,
.filter-no li,
.cohort-details p,
.problem-deep p,
.highlight-box p,
.core-list p {
    color: var(--earth-soft);
}

.highlight,
.problem-deep h3,
.solution h2,
.results h2,
.phase-number,
.phase-subtitle,
.testimonial-author,
.cohort-details strong {
    color: var(--gold);
}

.problem-deep,
.core-box,
.cohort-details,
.comments-container {
    margin-top: 3.5rem;
    padding: clamp(2rem, 4vw, 3.2rem);
}

.highlight-box,
.solution-statement,
.kora-promise {
    background: rgba(184, 146, 42, 0.08);
    border: 1px solid rgba(184, 146, 42, 0.24);
}

.solution-statement,
.kora-promise p {
    color: var(--green);
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 400;
    line-height: 1.35;
}

.pattern-content {
    gap: 5rem;
}

.pattern-text h3,
.responses h3,
.transformation h3,
.kora-system h3 {
    color: var(--earth);
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 400;
}

.pattern-list li {
    color: var(--earth-mid);
    font-size: 1rem;
}

.pattern-list li::before {
    color: var(--gold);
    content: '✦';
    font-size: 0.95rem;
    top: 0.95rem;
}

.pattern-consequence {
    background: rgba(184, 146, 42, 0.08);
    border-left: 1px solid var(--gold);
    color: var(--green);
}

.pattern-image {
    position: relative;
}

.pattern-image::before {
    border: 1px solid rgba(184, 146, 42, 0.25);
    border-radius: 190px 190px 12px 12px;
    content: '';
    inset: -18px;
    position: absolute;
    z-index: -1;
}

.pattern-image img,
.phase-card img {
    border-radius: 180px 180px 12px 12px;
    box-shadow: var(--shadow-lg);
    filter: saturate(0.88) contrast(0.95);
}

.response-grid {
    gap: 1.6rem;
}

.response-item p {
    color: var(--gold);
}

.phase-card {
    padding: 0;
    text-align: left;
}

.phase-card > :not(img) {
    margin-left: 2rem;
    margin-right: 2rem;
}

.phase-number {
    color: rgba(184, 146, 42, 0.24);
    font-size: 4.4rem;
    margin-top: 2rem;
}

.phase-card h3 {
    color: var(--earth);
    font-size: 2rem;
}

.phase-subtitle {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.phase-card img {
    border-radius: 0;
    box-shadow: none;
    height: 230px;
    margin-top: 1.8rem;
}

.timeline-item {
    border-left: 1px solid rgba(184, 146, 42, 0.15);
}

.timeline-item li::before,
.filter-yes li::before {
    color: var(--green);
    content: '✓';
}

.filter-no li::before,
.core-list p::before {
    color: #8f3d2f;
    content: '×';
}

.transformation-grid p {
    color: var(--green);
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.live-comments,
.cta-section {
    color: var(--ivory);
    overflow: hidden;
    position: relative;
}

.live-comments::before,
.cta-section::before,
.footer::before {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23B8922A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    content: '';
    inset: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
}

.live-comments h2,
.cta-section h2 {
    color: var(--ivory);
}

.live-comments .section-intro,
.cta-section > .container > p {
    color: rgba(245, 240, 232, 0.66);
}

.cta-section .btn-primary,
.cta-section .btn-whatsapp {
    background: var(--ivory);
    border-color: var(--ivory);
    color: var(--earth);
}

.cta-section .btn-primary:hover,
.cta-section .btn-whatsapp:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
}

.comments-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 146, 42, 0.2);
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    min-height: 0;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.comment-item {
    background: rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(184, 146, 42, 0.34);
    margin: 0;
    width: 100%;
}

.comment-text {
    color: rgba(245, 240, 232, 0.85);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
}

.comment-author {
    color: var(--gold-light);
}

.comments-nav {
    align-items: center;
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 0;
}

.comment-dot {
    background: rgba(245, 240, 232, 0.25);
    border: 0;
    cursor: pointer;
    flex: 0 0 auto;
    padding: 0;
}

.comment-dot.active {
    background: var(--gold);
    border-color: var(--gold-light);
}

.section-whatsapp {
    margin-top: 2rem;
}

.section-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 2.4rem;
}

.whatsapp-float {
    align-items: center;
    background: #25d366;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.36);
    color: white;
    display: flex;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 24px;
    transition: var(--transition);
    width: 58px;
    z-index: 1100;
}

.whatsapp-float::before {
    background: currentColor;
    clip-path: polygon(50% 0%, 67% 5%, 82% 16%, 93% 32%, 98% 50%, 94% 68%, 83% 84%, 67% 95%, 49% 100%, 33% 96%, 16% 100%, 20% 83%, 8% 67%, 2% 50%, 7% 31%, 18% 16%, 33% 5%);
    content: '';
    height: 28px;
    width: 28px;
}

.whatsapp-float:hover {
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.48);
    transform: translateY(-4px) scale(1.04);
}

.whatsapp-float span {
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.testimonials {
    background: var(--earth);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23B8922A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.testimonials h2 {
    color: var(--ivory);
}

.testimonials .section-intro {
    color: rgba(245, 240, 232, 0.62);
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 146, 42, 0.2);
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(184, 146, 42, 0.4);
    box-shadow: none;
}

.testimonial-text {
    color: rgba(245, 240, 232, 0.86);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.testimonial-author {
    color: var(--gold-light);
}

.filter-content {
    gap: 1.8rem;
}

.filter-yes,
.filter-no {
    padding: clamp(2rem, 4vw, 3rem);
}

.filter-yes h3,
.filter-no h3 {
    color: var(--earth);
}

.modal {
    background: rgba(44, 31, 14, 0.62);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #fff;
    border: 1px solid rgba(184, 146, 42, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-content h2 {
    color: var(--earth);
}

.close {
    color: var(--gold);
}

.close:hover {
    color: var(--earth);
}

.form-group label {
    color: var(--earth-mid);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--ivory);
    border: 1px solid rgba(184, 146, 42, 0.22);
    border-radius: var(--radius);
    color: var(--earth);
    font-family: var(--font-sans);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--ivory);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 146, 42, 0.1);
}

.success-message h3 {
    color: var(--green);
}

.success-message p {
    color: var(--earth-soft);
}

/* Footer */
.footer {
    border: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.footer .container {
    padding-bottom: 0;
    padding-top: 0;
}

.footer-content {
    gap: 3.5rem;
    grid-template-columns: 2fr 1fr 1fr;
    margin: 0;
    padding: 80px 0 60px;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-section p,
.footer-bottom {
    color: rgba(245, 240, 232, 0.52);
}

.footer-section a {
    color: rgba(245, 240, 232, 0.62);
}

.footer-section a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(184, 146, 42, 0.15);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 24px 0;
}

/* CSS-only motion polish */
@keyframes kora-rise {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-text,
.metric,
.intro-text,
.symptom-item,
.pattern-text,
.pattern-image,
.system-item,
.phase-card,
.timeline-item,
.testimonial,
.filter-yes,
.filter-no,
.cohort-details {
    animation: kora-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.symptom-item:nth-child(2),
.system-item:nth-child(2),
.phase-card:nth-child(2),
.timeline-item:nth-child(2),
.testimonial:nth-child(2) {
    animation-delay: 0.08s;
}

.symptom-item:nth-child(3),
.system-item:nth-child(3),
.phase-card:nth-child(3),
.timeline-item:nth-child(3),
.testimonial:nth-child(3) {
    animation-delay: 0.16s;
}

.symptom-item:nth-child(4),
.system-item:nth-child(4),
.phase-card:nth-child(4),
.testimonial:nth-child(4) {
    animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1080px) {
    .hero {
        flex-direction: column;
        gap: 3.5rem;
        padding-top: 122px;
        text-align: center;
    }

    .hero-background {
        height: 430px;
        margin: 0 auto;
        order: 2;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: min(340px, 74vw);
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-metrics {
        justify-content: center;
        margin: 3.5rem auto 0;
        padding-left: 0;
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .pattern-content,
    .filter-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.75rem 1.1rem;
        justify-content: flex-end;
    }

    .nav-links a:not(.btn-nav),
    .lang-btn {
        font-size: 0.68rem;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .logo {
        height: 30px;
        width: auto;
    }

    .logo-full {
        height: 38px;
        max-width: 150px;
    }

    .hero {
        padding: 125px 0 62px;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }

    .hero-metrics {
        align-items: stretch;
        flex-direction: column;
        margin-top: 3.75rem !important;
        max-width: min(330px, calc(100vw - 48px));
        width: 100%;
    }

    .metric {
        justify-content: center;
        min-height: 56px;
        text-align: center;
    }

    .jessyca-intro,
    .problem,
    .pattern,
    .solution,
    .phases,
    .results,
    .live-comments,
    .testimonials,
    .filter,
    .cta-section {
        padding: 82px 0;
    }

    .section-intro {
        margin-bottom: 3rem;
    }

    .intro-text,
    .problem-deep,
    .core-box,
    .cohort-details,
    .comments-container,
    .filter-yes,
    .filter-no {
        padding: 1.5rem;
    }

    .phase-card > :not(img) {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 60px 0 40px;
    }
}

@media (max-width: 520px) {
    .navbar .container {
        display: block;
    }

    .nav-brand {
        justify-content: center;
        margin-bottom: 0.9rem;
    }

    .nav-links {
        justify-content: center;
    }

    .btn-nav {
        padding: 8px 14px;
    }

    .hero {
        padding-top: 168px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-metrics {
        margin: 3.5rem auto 2.5rem !important;
    }

    .hero-background {
        height: 360px;
        width: min(290px, 78vw);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 16px;
        height: 54px;
        right: 16px;
        width: 54px;
    }
}
