/* ============================================================
   QUANTUM HARMONIE — Clean Style System
   Rebuilt 2026-04-02
   ============================================================ */

:root {
    --bg: #fbfaf3;
    --bg-alt: #f3f1e8;
    --green: #8e9c8a;
    --green-light: #a8b5a4;
    --green-dark: #6e7d6a;
    --purple: #5d3fd3;
    --purple-light: #7b61e8;
    --purple-dark: #4a2fb0;
    --text: #2a2a28;
    --text-secondary: #6b6b65;
    --text-light: rgba(255,255,255,0.85);
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
    transition-delay: var(--delay, 0s);
    min-width: 0;
    max-width: 100%;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(251, 250, 243, 0.92);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.nav.scrolled {
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-img {
    height: 40px;
    width: auto;
    transition: all var(--transition);
}
.nav.scrolled .nav-logo-img {
    height: 40px;
}
.nav-logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}
.nav.scrolled .nav-logo-text {
    font-size: 18px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--purple); }

/* Nav CTA */
.nav-cta {
    background: #c5a059;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}
.nav-cta:hover {
    background: #b8903f;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.lang-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
}
.lang-btn.active {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}

/* Nav Toggle (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: var(--purple);
    top: -10%; right: -5%;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: var(--green);
    bottom: -15%; left: -10%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 250px; height: 250px;
    background: var(--purple-light);
    top: 40%; left: 50%;
    animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    max-width: 700px;
}
.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-highlight {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 15px;
    color: #ffffff;
    max-width: 520px;
    margin-bottom: 48px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    width: 28px; height: 44px;
    border: 2px solid rgba(93, 63, 211, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-dot {
    width: 4px; height: 8px;
    background: var(--purple);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: inherit;
}
.btn-primary {
    background: #c5a059;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(197,160,89,0.3);
}
.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(93, 63, 211, 0.4);
}
.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(4px); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(0,0,0,0.15);
}
.btn-ghost:hover {
    border-color: var(--purple);
    color: var(--purple);
}
.btn-large {
    padding: 14px 28px;
    font-size: 15px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 120px 0;
}
.section-alt {
    background: var(--bg-alt);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(142, 156, 138, 0.12);
    border-radius: 50px;
}
.section-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--text);
}
.section-title em {
    font-style: italic;
    color: var(--purple);
}

/* ============================================================
   DISCOVER
   ============================================================ */
.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.discover-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}
.discover-text .text-large {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
}
.discover-text strong { color: var(--text); font-weight: 600; }
.discover-text em { color: var(--purple); font-style: italic; }

.discover-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.energy-circle {
    position: relative;
    width: 300px; height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
}
.energy-ring-1 {
    width: 100%; height: 100%;
    border-color: rgba(93, 63, 211, 0.15);
    animation: ringPulse 4s ease-in-out infinite;
}
.energy-ring-2 {
    width: 75%; height: 75%;
    border-color: rgba(142, 156, 138, 0.2);
    animation: ringPulse 4s ease-in-out infinite 1s;
}
.energy-ring-3 {
    width: 50%; height: 50%;
    border-color: rgba(93, 63, 211, 0.25);
    animation: ringPulse 4s ease-in-out infinite 2s;
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}
.energy-core {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(93, 63, 211, 0.3);
    animation: corePulse 3s ease-in-out infinite;
}
.energy-core span {
    font-size: 36px;
    color: white;
    font-weight: 700;
}
@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 40px rgba(93, 63, 211, 0.3); }
    50% { box-shadow: 0 0 80px rgba(93, 63, 211, 0.5); }
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.benefit-icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(93,63,211,0.08), rgba(142,156,138,0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple);
    transition: all var(--transition);
}
.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}
.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.audience-card {
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.audience-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: linear-gradient(180deg, var(--purple), var(--green));
    transition: height 0.6s var(--transition);
}
.audience-card:hover::before { height: 100%; }
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.audience-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(93, 63, 211, 0.1);
    margin-bottom: 16px;
    line-height: 1;
}
.audience-card:hover .audience-number { color: rgba(93, 63, 211, 0.25); }
.audience-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.audience-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   REASONS
   ============================================================ */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.reason-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.reason-icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    transition: all var(--transition);
}
.reason-card:hover .reason-icon {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    transform: scale(1.1);
}
.reason-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}
.reason-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
    background: linear-gradient(135deg, #1a1235 0%, #2d1b69 50%, #1a2a3a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(93,63,211,0.2), transparent);
    top: -200px; right: -100px;
    border-radius: 50%;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.section-tag-light {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}
.cta-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 20px;
}
.cta-title em { color: var(--purple-light); }
.cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================================================
   FOOTER IMAGES
   ============================================================ */
.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 8px;
}

/* ============================================================
   FOOTER MODERNE
   ============================================================ */
.qh-footer-modern {
    background: #1a1235;
    position: relative;
    overflow: hidden;
}
.qh-footer-modern::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(93,63,211,0.12), transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.qh-footer-modern::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(142,156,138,0.08), transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.qh-footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}
.qh-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.qh-footer-brand .footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}
.qh-footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 280px;
    margin: 0 0 28px;
}
.qh-footer-social {
    display: flex;
    gap: 12px;
}
.qh-footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}
.qh-footer-social a:hover {
    border-color: #c5a059;
    color: #c5a059;
    transform: translateY(-2px);
}
.qh-footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 24px;
}
.qh-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.qh-footer-col ul li {
    margin-bottom: 12px;
}
.qh-footer-col ul li a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.qh-footer-col ul li a:hover {
    color: rgba(255,255,255,0.95);
}
.qh-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #c5a059;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
}
.qh-footer-cta-btn:hover {
    background: #b8903f;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,160,89,0.3);
}
.qh-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.qh-footer-bottom {
    padding: 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.qh-footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.qh-footer-bottom-links {
    display: flex;
    gap: 24px;
}
.qh-footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
}
.qh-footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.qh-footer-qi {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: rgba(93,63,211,0.06);
    position: absolute;
    right: 60px;
    bottom: 20px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* ============================================================
   JUSTIFIED GALLERY
   ============================================================ */
.justified-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}
.gallery-item {
    height: 260px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    flex-grow: 1;
    min-width: 200px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:nth-child(1) { flex-basis: 35%; }
.gallery-item:nth-child(2) { flex-basis: 30%; }
.gallery-item:nth-child(3) { flex-basis: 30%; }
.gallery-item:nth-child(4) { flex-basis: 48%; height: 300px; }
.gallery-item:nth-child(5) { flex-basis: 48%; height: 300px; }
.gallery-item:nth-child(6) { flex-basis: 30%; }
.gallery-item:nth-child(7) { flex-basis: 35%; }
.gallery-item:nth-child(8) { flex-basis: 30%; }

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    cursor: pointer;
}
.gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ============================================================
   ANIMATED LOTUS
   ============================================================ */
.hero-lotus {
    position: absolute;
    top: 200px;
    right: 30%;
    z-index: 3;
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(93, 63, 211, 0.3));
}
.lotus-petal-center { animation: lotusPulse 5s ease-in-out infinite; }
@keyframes lotusPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.08); opacity: 0.9; }
}
.lotus-petal-l1 { animation: lotusL1 5s ease-in-out infinite; }
.lotus-petal-l2 { animation: lotusL2 5s ease-in-out infinite; }
.lotus-petal-l3 { animation: lotusL3 5s ease-in-out infinite; }
.lotus-petal-r1 { animation: lotusR1 5s ease-in-out infinite; }
.lotus-petal-r2 { animation: lotusR2 5s ease-in-out infinite; }
.lotus-petal-r3 { animation: lotusR3 5s ease-in-out infinite; }
@keyframes lotusL1 { 0%, 100% { transform: rotate(-15deg); } 50% { transform: rotate(-30deg); } }
@keyframes lotusL2 { 0%, 100% { transform: rotate(-30deg); } 50% { transform: rotate(-55deg); } }
@keyframes lotusL3 { 0%, 100% { transform: rotate(-45deg); } 50% { transform: rotate(-75deg); } }
@keyframes lotusR1 { 0%, 100% { transform: rotate(15deg); } 50% { transform: rotate(30deg); } }
@keyframes lotusR2 { 0%, 100% { transform: rotate(30deg); } 50% { transform: rotate(55deg); } }
@keyframes lotusR3 { 0%, 100% { transform: rotate(45deg); } 50% { transform: rotate(75deg); } }

/* ============================================================
   HERO PARTICLES
   ============================================================ */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--purple);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ============================================================
   CONTACT MOBILE
   ============================================================ */
.section form,
.section [style*="padding"] {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================================
   RESPONSIVE — DESKTOP LARGE (1025px+)
   ============================================================ */
@media (min-width: 1025px) {
    .hero {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        padding-left: calc((100vw - 1100px) / 2);
        padding-right: calc((100vw - 1100px) / 2);
        gap: 60px;
    }
    .hero > .container.hero-content {
        flex: 1 1 auto;
        max-width: 600px;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .hero-lotus {
        position: relative;
        top: auto;
        right: auto;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        opacity: 0.9;
    }
    .hero-lotus svg {
        width: 320px;
        height: 280px;
        filter: drop-shadow(0 0 40px rgba(93, 63, 211, 0.4));
    }
}

/* ============================================================
   RESPONSIVE — TABLET (769px-1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-logo-img { height: 80px; }
    .nav.scrolled .nav-logo-img { height: 80px; }
    .hero-lotus {
        right: 15%;
    }
    .hero-lotus svg {
        width: 110px;
        height: 95px;
    }
}

/* ============================================================
   RESPONSIVE — 1024px and below
   ============================================================ */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .discover-content { gap: 48px; }

    /* Nav becomes hamburger */
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(251,250,243,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 9999;
        overflow-y: auto;
        padding: 100px 40px 60px;
    }
    .nav-links.open {
        display: flex !important;
        animation: menuFadeIn 0.35s ease-out;
    }
    @keyframes menuFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .nav-links li {
        width: 100%;
        max-width: 400px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        list-style: none;
    }
    .nav-links li:first-child {
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links a {
        font-size: 18px;
        color: var(--text);
        display: block;
        padding: 20px 0;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    .nav-links a:hover {
        color: var(--purple);
    }
    .nav-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
    }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hide CTA on mobile */
    .nav-cta { display: none; }


    /* Mobile header: logo left | text center | hamburger right */
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-logo {
        flex: 0 0 auto;
        gap: 0;
    }
    .nav-logo-img { height: 56px; }
    .nav-logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
        max-width: calc(100vw - 180px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hero smaller on mobile */
    .hero { min-height: 70vh; }

    /* Footer responsive */
    .qh-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .qh-footer-qi { font-size: 80px; }
}

/* ============================================================
   RESPONSIVE — 768px and below
   ============================================================ */
@media (max-width: 768px) {
    .hero-content { padding-top: 140px; }
    .hero-title { font-size: 40px; }
    .section { padding: 80px 0; }
    .container { padding: 0 16px; }

    .discover-content { grid-template-columns: 1fr; }
    .discover-visual { order: -1; }
    .energy-circle { width: 220px; height: 220px; }
    .energy-core { width: 70px; height: 70px; }
    .energy-core span { font-size: 28px; }

    .benefits-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }

    .hero-scroll { display: none; }
    .hero-lotus {
        right: 20%;
        top: 160px;
    }
    .hero-lotus svg {
        width: 60px;
        height: 50px;
    }

    /* Gallery 2 col */
    .gallery-item { height: 200px; }
    .gallery-item:nth-child(n) { flex-basis: 48%; min-width: 45%; }
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) { height: 200px; }

    /* Footer */
    .qh-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
    .qh-footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }

    /* Contact */
    .contact-item a,
    .contact-item p[style*='font-weight:600'] {
        font-size: 12px;
        white-space: nowrap;
    }
    form [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    .section [style*="padding:32px"] {
        padding: 24px 16px !important;
    }
}

/* ============================================================
   RESPONSIVE — 480px and below
   ============================================================ */
@media (max-width: 480px) {
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .benefit-card { padding: 32px 20px; }
    .audience-card { padding: 36px 24px; }
    .nav-logo-text { font-size: 12px; max-width: calc(100vw - 160px); }

    /* Gallery 1 col */
    .gallery-item:nth-child(n) { flex-basis: 100%; min-width: 100%; height: 220px; }
}

/* Mobile CTA in hamburger menu */
.nav-cta-mobile { display: none; }
@media (max-width: 1024px) {
    .nav-cta-mobile { display: block; padding-top: 12px; }
    .nav-cta-mobile a {
        display: block;
        background: #c5a059;
        color: #fff !important;
        padding: 12px 24px;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        text-decoration: none;
    }
    .nav-cta-mobile a:hover { background: #b8903f; }
}

/* Tablet landscape (Galaxy Tab S6: 1280x800) */
@media (min-width: 1025px) and (max-height: 900px) {
    .hero {
        min-height: 100vh;
    }
    .hero-content {
        padding-top: 100px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 18px;
        max-width: 550px;
    }
}
