/* Pure Monk Website - Neo-Victorian Futurism Theme */

/* CSS Variables */
:root {
    --primary-bg: #1A1A1A;
    --accent-copper: #c77f57;
    --accent-rose-gold: #e0a078;
    --accent-gradient: linear-gradient(135deg, #c77f57 0%, #e0a078 100%);
    --secondary-text: #444444;
    --body-text-color-new: #E0E0E0;
    --body-text-color-fallback: #F0F0F0;
    --body-text-color-alternative: #D0C0B0;
    --white: #ffffff;
    --black: #000000;
    --dark-grey: #2a2a2a;
    --light-grey: #666666;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    /* Animation Timing */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s ease;
    --transition-slow: 1.2s ease;
}

/* Performance hints: prefer will-change for animated elements to promote GPU compositing */
.will-change-transform { will-change: transform, opacity; backface-visibility: hidden; }

/* Apply will-change to commonly animated elements */
.monk-fruit-shape, .fruit-main, .vein, .fruit-glow-core, .orb-circuit-border, .orb-outer-glow, .circuit-line, .spark-particle, .circuit-node, .logo-img, .nav-logo, .circuit-pattern {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--primary-bg);
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}

/* Mobile font size adjustment for improved legibility */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* Custom Cursor Effects */
body * {
    cursor: inherit;
}

button, a, input, textarea, .interactive {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent-copper) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    opacity: 0;
}

.custom-cursor.active {
    opacity: 1;
    transform: scale(1.5);
    background: radial-gradient(circle, var(--accent-rose-gold) 0%, var(--accent-copper) 50%, transparent 70%);
}

    .founder-image {
         display: flex;
         align-items: center;
         justify-content: center;
         position: relative;
    }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Pre-registration Modal / Component Styles */
.pre-reg-overlay {
    position: fixed;
         overflow: hidden;
         position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    padding: 24px;
}

         /* object-position: center; */
.pre-reg-modal {
    width: 100%;
    max-width: 560px;
    background: var(--dark-grey);
    border-radius: 12px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 40px rgba(199,127,87,0.04);
    position: relative;
    color: var(--body-text-color-new);
    border: 1px solid rgba(199,127,87,0.06);
}

.pre-reg-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--light-grey);
    font-size: 18px;
    cursor: pointer;
}

.pre-reg-brand { text-align: center; margin-bottom: 6px; }
.pre-reg-logo { width: 72px; opacity: 0.95; filter: drop-shadow(0 6px 14px rgba(199,127,87,0.06)); }

.pre-reg-title { font-family: var(--font-serif); color: var(--accent-copper); font-size: 22px; text-align: center; margin-bottom: 6px; }
.pre-reg-subtitle { color: var(--body-text-color-new); text-align: center; font-size: 13px; margin-bottom: 18px; opacity: 0.95; }

.pre-reg-form { display: grid; gap: 12px; }
.pre-reg-label { font-family: var(--font-sans); font-weight: 700; font-size: 12px; color: var(--light-grey); margin-bottom: 4px; }

.pre-reg-input-wrap { display:flex; align-items:center; gap:10px; background: #191919; border: 1px solid #3b3b3b; padding: 8px 10px; border-radius: 6px; }
.pre-reg-icon { color: var(--accent-copper); display:inline-flex; align-items:center; justify-content:center; }
.pre-reg-input { flex:1; background: transparent; border: none; outline: none; color: var(--body-text-color-new); font-size: 14px; padding: 8px 4px; }
.pre-reg-input::placeholder { color: #777777; }
.pre-reg-input:focus { box-shadow: 0 0 8px rgba(199,127,87,0.12); }

.pre-reg-actions { margin-top: 6px; display:flex; justify-content:center; }
.pre-reg-button { background: var(--accent-copper); color: var(--white); border: none; padding: 12px 28px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: all 0.22s ease; box-shadow: 0 8px 30px rgba(199,127,87,0.08); }
.pre-reg-button.loading { opacity: 0.9; }
.pre-reg-button:disabled { opacity: 0.6; cursor: not-allowed; }
.pre-reg-button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(199,127,87,0.14); }

.pre-reg-message { margin-top: 12px; text-align: center; font-size: 14px; }
.pre-reg-message.success { color: #4CAF50; }
.pre-reg-message.error { color: #F44336; }

.pre-reg-privacy { font-size: 12px; color: #9a9a9a; text-align: center; margin-top: 10px; }

.pre-reg-footer { text-align: center; margin-top: 14px; }
.pre-reg-footer-logo { width: 48px; opacity: 0.7; filter: grayscale(0.9) brightness(1.1) drop-shadow(0 6px 14px rgba(0,0,0,0.6)); }

@media (max-width: 640px) {
    .pre-reg-modal { padding: 20px; max-width: 420px; }
    .pre-reg-title { font-size: 18px; }
}

/* Priority slider styles used in index modal */
.priority-wrap { display:flex; flex-direction:column; gap:8px; }
.priority-wrap input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; background: linear-gradient(90deg,#2b2b2b,#222); border-radius: 8px; outline: none; }
.priority-wrap input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-copper); box-shadow: 0 6px 18px rgba(199,127,87,0.2); cursor: pointer; }
.priority-wrap input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-copper); box-shadow: 0 6px 18px rgba(199,127,87,0.2); cursor: pointer; }
.priority-labels { display:flex; justify-content:space-between; font-size:12px; color:var(--light-grey); }
.priority-labels span { flex:1; text-align:center; }
.priority-labels span.active { color: var(--accent-copper); font-weight:700; }

/* modal overlay tweaks for index page */
.modal-overlay { position: fixed; inset: 0; display:flex; align-items:center; justify-content:center; background: rgba(0,0,0,0.55); z-index: 900; }
.modal-container { background: var(--dark-grey); border-radius: 10px; padding: 20px; width: 100%; max-width: 520px; box-shadow: 0 20px 60px rgba(0,0,0,0.7); border: 1px solid rgba(199,127,87,0.06); }
.modal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.modal-header h2 { margin:0; font-family:var(--font-serif); color:var(--accent-copper); }
.modal-close { background:transparent; border:none; color:var(--light-grey); font-size:20px; cursor:pointer; }
.modal-body p { color:var(--body-text-color-new); margin-bottom:12px; }
.preregister-form .form-group { margin-bottom:10px; }
.preregister-form label { display:block; color:var(--light-grey); font-size:13px; margin-bottom:6px; }
.preregister-form input[type=text], .preregister-form input[type=email], .preregister-form input[type=tel] { width:100%; padding:10px 12px; background:#111; border:1px solid #333; color:var(--body-text-color-new); border-radius:6px; }
.preregister-form .btn-primary { background:var(--accent-copper); color:var(--white); padding:10px 18px; border-radius:8px; border:none; cursor:pointer; font-weight:700; }
.form-messages { margin-top:12px; }
.message { display:none; padding:10px; border-radius:6px; }
.success-message { background: rgba(76,175,80,0.08); color:#4CAF50; }
.error-message { background: rgba(244,67,54,0.06); color:#F44336; }


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
    transition: all var(--transition-fast);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px; /* increased to accommodate larger logo */
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(199, 127, 87, 0.12) 0%, transparent 75%);
    backdrop-filter: blur(6px);
    transition: all var(--transition-smooth);
    min-width: 140px; /* reserve space so logo isn't cramped */
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(199, 127, 87, 0.2) 0%, rgba(224, 160, 120, 0.1) 50%, transparent 70%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.7;
    /* aura removed for improved logo visibility */
    display: none;
}

@keyframes logoAura {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.nav-logo:hover {
    /* keep hover subtle but remove glow */
    background: radial-gradient(circle, rgba(199, 127, 87, 0.06) 0%, rgba(224, 160, 120, 0.02) 50%, transparent 70%);
    box-shadow: none;
}

.nav-logo:hover::before {
    /* noop - aura disabled */
}

.nav-logo .logo-img {
    height: 132px; /* larger logo for desktop */
    width: auto;
    /* remove glow filters/animations to make logo clearer */
    filter: none !important;
    transition: transform var(--transition-smooth);
    animation: none !important;
}

/* generic logo class so other logos follow the same sizing unless overridden */
.logo-img { height: 110px; width: auto; }

/* Ensure header doesn't visually overlap content when larger */
.navbar + .container, .navbar + .hero, .navbar + .hero-compact, .navbar + .page-hero {
    margin-top: 120px; /* push content down to make space for taller navbar */
}

/* Responsive: scale logo down on smaller viewports */
@media (max-width: 1024px) {
    .nav-container { height: 108px; }
    .nav-logo { min-width: 110px; padding: 10px; }
    .nav-logo .logo-img { height: 96px; }
    .logo-img { height: 84px; }
    .navbar + .container, .navbar + .hero, .navbar + .hero-compact, .navbar + .page-hero { margin-top: 108px; }
}

/* --- Privacy Policy Page Custom Styles --- */
.policy-section {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(199,127,87,0.08), 0 1.5px 0 rgba(224,160,120,0.04);
    padding: 48px 0 32px 0;
    margin: 48px 0 32px 0;
}
.policy-content {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(34, 34, 34, 0.98);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(199,127,87,0.06);
    padding: 36px 32px 28px 32px;
}
.policy-header {
    border-bottom: 1.5px solid var(--accent-copper);
    margin-bottom: 32px;
    padding-bottom: 12px;
    text-align: left;
}
.policy-header .effective-date {
    color: var(--accent-copper);
    font-size: 1.1rem;
    font-family: var(--font-serif);
    letter-spacing: 0.02em;
}
.policy-section-item {
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(199,127,87,0.07);
}
.policy-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-section-item h2 {
    font-family: var(--font-serif);
    color: var(--accent-copper);
    font-size: 1.6rem;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.policy-section-item p {
    color: var(--body-text-color-alternative);
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.policy-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    color: var(--body-text-color-new);
    font-size: 1.05rem;
}
.policy-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--accent-copper);
    font-size: 1.3em;
    top: 0.1em;
}
.contact-info-box {
    background: rgba(199,127,87,0.08);
    border-left: 4px solid var(--accent-copper);
    padding: 18px 22px;
    border-radius: 8px;
    margin-top: 10px;
    color: var(--body-text-color-new);
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(199,127,87,0.04);
}
.contact-info-box p {
    margin-bottom: 4px;
}
.page-hero-content .page-title {
    font-family: var(--font-serif);
    color: var(--accent-copper);
    font-size: 2.6rem;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.page-hero-content .page-subtitle {
    color: var(--body-text-color-alternative);
    font-size: 1.2rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .policy-content {
        padding: 22px 8px 18px 8px;
    }
    .policy-section {
        padding: 24px 0 16px 0;
        margin: 24px 0 16px 0;
    }
}
}

@media (max-width: 768px) {
    .nav-container { height: 84px; }
    .nav-logo { min-width: 84px; padding: 8px; }
    .nav-logo .logo-img { height: 64px; }
    .logo-img { height: 56px; }
    .navbar + .container, .navbar + .hero, .navbar + .hero-compact, .navbar + .page-hero { margin-top: 84px; }
}

.nav-logo .logo-img:hover {
    /* keep a slight scale on hover but remove glow */
    filter: none !important;
    transform: scale(1.04);
}

@keyframes logoGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 30px rgba(199,127,87,0.18), 0 0 8px rgba(224,160,120,0.06);
        opacity: 0.95;
    }
    100% {
        transform: scale(1.06);
        box-shadow: 0 20px 50px rgba(199,127,87,0.28), 0 0 18px rgba(224,160,120,0.10);
        opacity: 1;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-copper);
    text-shadow: 0 0 8px rgba(199, 127, 87, 0.5);
}

.nav-link:hover::after {
    width: 100%;
    animation: electricLine 0.5s ease;
}

@keyframes electricLine {
    0% { box-shadow: 0 0 0px rgba(199, 127, 87, 0.5); }
    50% { box-shadow: 0 0 8px rgba(199, 127, 87, 0.8); }
    100% { box-shadow: 0 0 4px rgba(199, 127, 87, 0.6); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--accent-copper);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Circuit Pattern Animation */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(199, 127, 87, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(224, 160, 120, 0.08) 1px, transparent 1px),
        linear-gradient(45deg, transparent 49%, rgba(199, 127, 87, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(199, 127, 87, 0.03) 50%, transparent 51%);
    background-size: 60px 60px, 40px 40px, 80px 80px, 80px 80px;
    animation: circuitFlow 20s linear infinite;
}

.circuit-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(199, 127, 87, 0.05) 90deg, transparent 180deg, rgba(224, 160, 120, 0.03) 270deg, transparent 360deg);
    animation: circuitGlow 8s ease-in-out infinite alternate;
}

@keyframes circuitFlow {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(-10px); }
    75% { transform: translateX(-15px) translateY(-2px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes circuitGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Mist Effect */
.mist-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(42, 42, 42, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 42, 42, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(42, 42, 42, 0.2) 0%, transparent 50%);
    animation: mistDrift 25s ease-in-out infinite;
}

@keyframes mistDrift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px); 
        opacity: 0.6; 
    }
    33% { 
        transform: translateX(20px) translateY(-15px); 
        opacity: 0.4; 
    }
    66% { 
        transform: translateX(-15px) translateY(10px); 
        opacity: 0.5; 
    }
}

/* Energy Particles */
.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.energy-particles::before,
.energy-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--accent-copper) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.energy-particles::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.energy-particles::after {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
        box-shadow: 0 0 20px rgba(199, 127, 87, 0.8);
    }
}

/* Hero Container */
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-serif);

/* ====== Why Us specific styles ====== */
.whyus-hero {
    padding: 140px 0 120px;
    position: relative;
    color: var(--body-text-color-new);
    background: linear-gradient(180deg, rgba(26,26,26,1) 0%, rgba(15,15,15,1) 100%);
    overflow: hidden;
}

.whyus-hero .whyus-hero-inner {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.whyus-main-heading {
    font-family: var(--font-serif);
    color: var(--accent-copper);
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(199,127,87,0.08);
}

.whyus-subheading {
    color: var(--body-text-color-new);
    font-family: var(--font-sans);
    font-size: 18px;
    margin-bottom: 22px;
    opacity: 0.95;
}

.lead-paragraph {
    color: var(--body-text-color-new);
    font-size: 16px;
    line-height: 1.7;
    margin: 12px auto;
    max-width: 820px;
    text-align: left;
}

.visual-suggestions { position: relative; height: 80px; margin-top: 18px; }
.glowing-lines {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(199,127,87,0.9), transparent);
    box-shadow: 0 0 16px rgba(199,127,87,0.25);
    animation: expandLines 3s ease-in-out infinite;
    opacity: 0.9;
}

.ethereal-mist {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 36px;
    background: radial-gradient(closest-side, rgba(26,26,26,0.0), rgba(26,26,26,0.6));
    filter: blur(8px);
    opacity: 0.8;
    pointer-events: none;
}

@keyframes expandLines {
    0% { transform: translateX(-50%) scaleX(0.6); opacity: 0.2 }
    50% { transform: translateX(-50%) scaleX(1.05); opacity: 1 }
    100% { transform: translateX(-50%) scaleX(0.75); opacity: 0.25 }
}

/* Section panels */
.section { padding: 80px 0; }
.section-padding { padding: 80px 0; }
.dark-panel { background: rgba(18,18,18,0.6); border-top: 1px solid rgba(199,127,87,0.03); border-bottom: 1px solid rgba(199,127,87,0.03); }
.light-panel { background: linear-gradient(180deg, rgba(26,26,26,0.85), rgba(20,20,20,0.9)); }

.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.section-grid.reverse { grid-template-columns: 1fr 1fr; }
.section-visual { display:flex; align-items:center; justify-content:center; }
.section-content { color: var(--body-text-color-new); }

.section-heading { font-family: var(--font-serif); color: var(--accent-copper); font-size: 32px; margin-bottom: 10px; }

.small-note { color: var(--light-grey); margin-top: 10px; font-size: 13px; }

.copper-icon { color: var(--accent-copper); font-size: 20px; display:inline-flex; align-items:center; justify-content:center; }
.icon-circle { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(180deg, rgba(199,127,87,0.06), rgba(224,160,120,0.03)); display:flex; align-items:center; justify-content:center; border:1px solid rgba(199,127,87,0.08); box-shadow: 0 6px 30px rgba(199,127,87,0.03); }

.promise-panel .promise-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.promise-list { list-style: none; margin: 20px 0; padding: 0; text-align: left; display: inline-block; }
.promise-list li { padding: 10px 0; color: var(--body-text-color-new); font-size: 16px; }

.explore-btn { display:inline-block; padding: 12px 20px; background: var(--accent-gradient); color: #111; border-radius: 8px; text-decoration: none; font-weight: 700; transition: transform var(--transition-fast); }
.explore-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(199,127,87,0.12); }

/* Responsive adjustments */
@media (max-width: 900px) {
    .section-grid, .section-grid.reverse { grid-template-columns: 1fr; }
    .whyus-main-heading { font-size: 36px; }
    .lead-paragraph { text-align: left; }
}

/* Accessibility: focus states */
.explore-btn:focus { outline: 3px solid rgba(199,127,87,0.18); }

/* Small footer */
.small-footer { padding: 30px 0; text-align:center; color: var(--light-grey); border-top:1px solid rgba(199,127,87,0.03); }

/* Placeholder animations & classes for future JS/GSAP enhancements */
.animate-fade-in-up { opacity: 0; transform: translateY(10px); transition: all 0.7s ease; }
.animate-fade-in-up.in-view { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.12s; }
.animate-delay-2 { transition-delay: 0.24s; }
.animate-delay-3 { transition-delay: 0.36s; }

/* Simple utility */
.container .center { text-align:center; }

/* ===== Hero compact (screenshot match) ===== */
.hero-compact { padding: 80px 0 30px; position: relative; }
.hero-center { text-align: center; max-width: 980px; margin: 0 auto; }
.hero-main-title { font-family: var(--font-serif); font-size: 56px; color: var(--accent-copper); letter-spacing: 0.4px; margin: 0 0 14px; line-height: 1.05; font-weight: 700; text-shadow: 0 6px 24px rgba(0,0,0,0.55); }
.hero-main-title {
    /* match section heading style so page headings read as a single theme */
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.copper-rule { width: 320px; max-width: 70%; height: 2px; background: linear-gradient(90deg, rgba(199,127,87,0.98), rgba(224,160,120,0.85)); border: none; margin: 10px auto 20px; box-shadow: 0 0 18px rgba(199,127,87,0.12); }
.hero-subtitle { color: rgba(255,244,236,0.9); font-family: var(--font-sans); font-style: normal; margin-bottom: 18px; font-size: 16px; }
.hero-lead { color: var(--body-text-color-new); max-width: 860px; margin: 10px auto 0; font-size: 15px; line-height: 1.9; opacity: 0.95; }

/* ===== Feature cards grid ===== */
.feature-cards { position: relative; padding-bottom: 80px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.feature-card { background: rgba(22,22,22,0.6); padding: 26px; border-radius: 8px; border: 1px solid rgba(199,127,87,0.04); box-shadow: 0 10px 30px rgba(0,0,0,0.6); min-height: 220px; display:flex; flex-direction:column; }
.card-icon { font-size: 30px; margin-bottom: 12px; display:flex; align-items:center; justify-content:center; }
.identity-icon { width:48px; height:48px; display:block; }
.identity-logo { width:56px; height:56px; object-fit:contain; }
.identity-icon--small { width:36px; height:36px; }
.card-title { font-family: var(--font-serif); color: var(--accent-copper); font-size: 18px; margin-bottom: 10px; }
.card-text { color: var(--body-text-color-new); font-size: 14px; line-height: 1.6; }

.bottom-mist { position: absolute; left: 0; right: 0; bottom: -20px; height: 120px; background: radial-gradient(closest-side, rgba(26,26,26,0), rgba(26,26,26,0.85)); filter: blur(14px); pointer-events: none; }

@media (max-width: 980px) {
    .card-grid { grid-template-columns: 1fr; }
    .hero-main-title { font-size: 34px; }
    .copper-rule { width: 90%; }
}

/* Comparison table styles */
.comparison-wrap { margin-top: 28px; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; background: linear-gradient(180deg, rgba(30,30,30,0.8), rgba(22,22,22,0.65)); border-radius: 10px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.01), 0 8px 30px rgba(0,0,0,0.6); }
.comparison-table thead th { background: var(--accent-copper); color: #111; font-weight: 700; padding: 14px 18px; text-align: left; font-family: var(--font-serif); }
.comparison-table tbody td { padding: 18px; color: var(--body-text-color-new); border-top: 1px solid rgba(199,127,87,0.03); vertical-align: top; }
.comparison-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.01); }
.comparison-table tbody tr td:first-child { width: 28%; font-weight: 600; color: var(--accent-rose-gold); }

/* Responsive: stack table rows into cards on small screens */
@media (max-width: 720px) {
    .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr { display: block; }
    .comparison-table thead { display: none; }
    .comparison-table tbody tr { margin-bottom: 16px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(199,127,87,0.03); }
    .comparison-table tbody td { display: flex; justify-content: space-between; padding: 12px 14px; }
    .comparison-table tbody td::before { content: attr(data-label); font-weight: 700; color: var(--accent-copper); margin-right: 12px; }
}

/* Additional fixes to avoid invisible table content and improve spacing */
.comparison-table th,
.comparison-table td {
    color: var(--body-text-color-new) !important;
    font-size: 15px;
    line-height: 1.7;
}

.comparison-table tbody td {
    padding-top: 16px;
    padding-bottom: 16px;
}

.comparison-table tbody tr td:nth-child(2),
.comparison-table tbody tr td:nth-child(3) {
    color: var(--body-text-color-new);
}

/* If other styles collide, force background visibility for tbody */
.comparison-table tbody { background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(18,18,18,0.6)); }

/* Small improvement: ensure table fits container and doesn't collapse */
.comparison-wrap { overflow: visible; }

    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(199, 127, 87, 0.3);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(199, 127, 87, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(199, 127, 87, 0.6)); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--body-text-color-new);
    margin-bottom: 40px;
    font-weight: 400;
}

/* CTA Button */
.cta-button {
    position: relative;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--accent-copper);
    color: var(--accent-copper);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button span {
    position: relative;
    z-index: 2;
    transition: color var(--transition-smooth);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-smooth);
    z-index: 1;
}

.cta-button:hover::before {
    width: 300%;
    height: 300%;
}

.cta-button:hover span {
    color: var(--white);
}

.cta-button:hover {
    border-color: var(--accent-rose-gold);
    box-shadow: 
        0 0 20px rgba(199, 127, 87, 0.4),
        inset 0 0 20px rgba(199, 127, 87, 0.1);
}

.button-arc {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(45deg, transparent 30%, var(--accent-copper) 50%, transparent 70%);
    opacity: 0;
    animation: buttonArc 2s linear infinite;
}

.cta-button:hover .button-arc {
    opacity: 1;
}

@keyframes buttonArc {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Showcase */
.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-circle {
    position: relative;
    width: 520px; /* increased so product is more prominent */
    height: 520px; /* increased so product is more prominent */
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* allow page background to show through */
}

.circle-glow {
    /* glow removed to improve product visibility */
    display: none;
}

.circle-glow::before {
    /* removed decorative outer glow */
    content: none;
}

@keyframes circleGlow {
    0% { 
        box-shadow: 
            0 0 20px rgba(199, 127, 87, 0.3),
            inset 0 0 20px rgba(199, 127, 87, 0.1);
        transform: scale(1);
    }
    100% { 
        box-shadow: 
            0 0 40px rgba(199, 127, 87, 0.6),
            inset 0 0 30px rgba(199, 127, 87, 0.2);
        transform: scale(1.05);
    }
}

@keyframes outerGlow {
    0% { 
        box-shadow: 0 0 30px rgba(224, 160, 120, 0.2);
        transform: scale(1) rotate(0deg);
    }
    100% { 
        box-shadow: 0 0 50px rgba(224, 160, 120, 0.4);
        transform: scale(1.1) rotate(180deg);
    }
}

.product-image {
    width: 360px; /* larger product image for clearer visibility */
    height: auto;
    z-index: 2;
    position: relative;
    background: transparent; /* ensure image transparency shows through */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all var(--transition-smooth);
}

.floating {
    animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    33% { 
        transform: translateY(-15px) rotate(2deg);
    }
    66% { 
        transform: translateY(-8px) rotate(-1deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-copper);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0px); opacity: 1; }
    50% { transform: rotate(-45deg) translateY(10px); opacity: 0.5; }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.feature-card[data-delay="200"] {
    animation-delay: 0.2s;
}

.feature-card[data-delay="400"] {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-copper);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(199, 127, 87, 0.2);
}

.feature-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
    position: relative;
}

.icon-hexagon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    margin: 0 auto;
    position: relative;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--accent-copper);
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.feature-card p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Usage Section */
.usage-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.usage-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
}

.usage-item[data-step="2"] {
    animation-delay: 0.3s;
}

.usage-item[data-step="3"] {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--accent-copper);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.step-content p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

.usage-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-lifestyle {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.lifestyle-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--accent-gradient);
    border-radius: 30px;
    opacity: 0.1;
    animation: lifestyleGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes lifestyleGlow {
    0% { transform: scale(0.95); opacity: 0.1; }
    100% { transform: scale(1.05); opacity: 0.2; }
}

.accent {
    color: var(--accent-copper);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(199, 127, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199, 127, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-copper);
    border: 2px solid var(--accent-copper);
}

.btn-secondary:hover {
    background: var(--accent-copper);
    color: var(--white);
    transform: translateY(-3px);
}

.hashtag {
    margin-top: 60px;
    font-size: 1.5rem;
    color: var(--accent-copper);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(199, 127, 87, 0.5);
    text-align: center;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: rgba(17, 17, 17, 0.95);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(199, 127, 87, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    /* match header logo sizing for visual consistency */
    height: 132px; /* match header `.nav-logo .logo-img` */
    margin-bottom: 20px;
    filter: none !important;
    transition: transform var(--transition-smooth);
    animation: none !important;
}

@media (max-width: 1024px) {
    .footer-logo img { height: 96px; }
}

@media (max-width: 768px) {
    .footer-logo img { height: 64px; }
}

.footer-logo img:hover {
    filter: 
        drop-shadow(0 0 18px rgba(199, 127, 87, 0.9))
        drop-shadow(0 0 35px rgba(224, 160, 120, 0.7))
        drop-shadow(0 0 6px rgba(199, 127, 87, 1))
        brightness(1.15);
    transform: scale(1.05);
}

.footer-logo p {
    color: var(--secondary-text);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    color: var(--accent-copper);
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a,
.social-link {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.link-group ul li a:hover,
.social-link:hover {
    color: var(--accent-copper);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(68, 68, 68, 0.3);
    color: var(--light-grey);
}

/* Founder Social Links On Hover */
.founder-card {
    position: relative;
}
.social-links-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(20px);
    z-index: 2;
}
.founder-card.card-hovered .social-links-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.social-icon {
    width: 32px;
    height: 32px;
    color: #E0E0E0;
    margin: 0 10px;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon:hover {
    color: #c77f57;
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .usage-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .product-circle {
        width: 280px;
        height: 280px;
    }
    
    .product-image {
        width: 180px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(199, 127, 87, 0.2), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.transition { transition: all var(--transition-fast); }
.transition-smooth { transition: all var(--transition-smooth); }
.transition-slow { transition: all var(--transition-slow); }

/* Additional Page Styles */

/* Page Hero for sub-pages */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-hero-content {
    z-index: 2;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--body-text-color-new);
    max-width: 600px;
    margin: 0 auto;
}

/* Active navigation state */
.nav-link.active {
    color: var(--accent-copper);
    text-shadow: 0 0 8px rgba(199, 127, 87, 0.5);
}

.nav-link.active::after {
    width: 100%;
}

/* Content sections */
.content-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text p {
    color: var(--body-text-color-new);
    line-height: 1.7;
    margin-bottom: 30px;
}

.mission-points {
    margin-top: 40px;
}

.mission-point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.point-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(199, 127, 87, 0.2));
    transition: all 0.3s ease;
}

.mission-point:hover .icon-svg {
    filter: drop-shadow(0 8px 24px rgba(199, 127, 87, 0.4)) brightness(1.15);
    transform: scale(1.1);
}

.point-content h4 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monk-silhouette {
    width: 120px;
    height: 120px;
    background: var(--accent-gradient);
    border-radius: 50%;
    position: relative;
    animation: gentleGlow 4s ease-in-out infinite alternate;
    opacity: 0.35; /* reduce visual weight */
    z-index: 0; /* keep behind interactive content */
}

.meditation-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotateGlow 20s linear infinite;
}

@keyframes gentleGlow {
    0% { 
        box-shadow: 0 0 30px rgba(199, 127, 87, 0.3);
        transform: scale(1); 
    }
    100% { 
        box-shadow: 0 0 50px rgba(224, 160, 120, 0.5);
        transform: scale(1.05); 
    }
}

@keyframes rotateGlow {
    from { 
        transform: translate(-50%, -50%) rotate(0deg);
        border-color: rgba(199, 127, 87, 0.3);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg);
        border-color: rgba(224, 160, 120, 0.5);
    }
}

/* Identity Section */
.identity-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.identity-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    transition: all var(--transition-smooth);
}

/* Ensure identity cards render above decorative silhouettes */
.identity-card {
    position: relative;
    z-index: 2;
}

.identity-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px; /* reserve larger space for icon/logo */
    position: relative;
}

/* Values icons: match identity icon presentation */
.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px; /* larger reserve for big circular image */
    position: relative;
    margin-bottom: 8px;
}

.value-icon::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(231, 111, 81, 0.04);
    border: 1px solid rgba(199, 127, 87, 0.06);
    pointer-events: none;
    z-index: 0;
}

.value-icon > svg {
    position: relative;
    z-index: 1;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

/* Image variant for values (topic images) */
.value-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

/* Make logo image match SVG icon size and alignment */
.card-icon img.identity-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    display: block;
}

/* SVG identity icons: enforce consistent sizing */
.identity-icon {
    width: 92px;
    height: 92px;
    display: block;
}

/* Subtle circular plate behind each icon for contrast */
.card-icon::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(231, 111, 81, 0.04);
    border: 1px solid rgba(199, 127, 87, 0.06);
    pointer-events: none;
    z-index: 0;
}

/* Ensure icon elements sit above the plate */
.card-icon > img,
.card-icon > .identity-icon {
    position: relative;
    z-index: 1;
}

/* Increase SVG stroke weight and soft fill for readability */
.identity-icon g,
.identity-icon path,
.identity-icon circle {
    stroke-width: 2.4; /* slightly stronger stroke */
}
.identity-icon g[fill] { fill-opacity: 0.14; }

/* Slightly smaller on narrow viewports */
@media (max-width: 700px) {
    .card-icon {
        height: 110px;
    }
    .card-icon img.identity-logo,
    .identity-icon {
        width: 80px;
        height: 80px;
    }
    .card-icon::before {
        width: 100px;
        height: 100px;
        top: 10px;
    }
    /* values smaller on mobile */
    .value-icon {
        height: 160px;
    }
    .value-icon::before {
        width: 120px;
        height: 120px;
        top: 10px;
    }
    .value-image,
    .value-icon > svg {
        width: 100px;
        height: 100px;
    }
}

.identity-card h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.identity-card p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Journey/Timeline Section */
.journey-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: 4px solid var(--primary-bg);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -120px;
    top: -5px;
    font-weight: bold;
    color: var(--accent-copper);
    font-size: 0.9rem;
}

.timeline-content h4 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Founders Section */
.founders-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.founder-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 40px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    transition: all var(--transition-smooth);
}

.founder-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.founder-image { display:flex; align-items:center; justify-content:center; }
.placeholder-avatar {
    /* match the grid column width so layout is stable */
    width: 120px;
    height: 120px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden; /* ensure larger images are clipped to the circle */
}

/* FIX: force circular avatars to center/crop identically */
.founder-image img,
.placeholder-avatar img {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 50% !important;
}

.founder-info h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 5px;
}

.founder-role {
    color: var(--accent-rose-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-bio {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(42, 42, 42, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    transition: all var(--transition-smooth);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* value-icon styles are defined earlier to ensure centered plate and image sizing */

.value-item h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Why Us Page Specific Styles */

.difference-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.difference-card {
    padding: 40px 30px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    text-align: center;
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.difference-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-copper);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.difference-icon {
    margin-bottom: 30px;
}

.difference-icon .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.difference-card h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.difference-card p {
    color: var(--body-text-color-new);
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    text-align: left;
}

.benefit-list li {
    color: var(--accent-copper);
    margin-bottom: 8px;
    padding-left: 0;
}

/* Science Section */
.science-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.science-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--body-text-color-new);
    margin-bottom: 40px;
    line-height: 1.6;
}

.science-points {
    margin-top: 40px;
}

.science-point {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.point-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-content h4 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.point-content p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

.science-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.molecular-diagram {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.molecule-center {
    position: absolute;
    text-align: center;
    z-index: 2;
}

.molecule-center span {
    font-family: monospace;
    font-size: 1rem;
    color: var(--accent-copper);
    font-weight: bold;
}

.molecule-center p {
    margin-top: 5px;
    color: var(--accent-rose-gold);
    font-size: 0.9rem;
}

.molecule-orbit {
    position: absolute;
    border: 1px solid var(--accent-copper);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbitRotate 10s linear infinite;
}

.orbit-1 {
    width: 100px;
    height: 100px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 150px;
    height: 150px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    animation-duration: 16s;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Comparison Table */
.comparison-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.comparison-table {
    margin-top: 60px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(199, 127, 87, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--accent-gradient);
    color: var(--white);
    font-weight: bold;
    padding: 20px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: rgba(42, 42, 42, 0.3);
}

.feature {
    color: var(--white);
    font-weight: 500;
}

.sway-value {
    color: var(--accent-copper);
    font-weight: bold;
    text-align: center;
}

.competitor-value, .artificial-value {
    color: var(--body-text-color-new);
    text-align: center;
}

.excellent {
    color: var(--accent-copper);
    position: relative;
}

.excellent::after {
    content: '✓';
    margin-left: 5px;
    color: var(--accent-rose-gold);
}

.poor {
    color: #ff6b6b;
    opacity: 0.7;
}

/* Quality Section */
.quality-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.quality-item {
    padding: 40px 30px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    text-align: center;
    transition: all var(--transition-smooth);
}

.quality-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

/* Style quality images to be consistent size */
.quality-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
    border-radius: 70%;
}

.quality-item h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 15px;
}

.quality-item p {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Community Section */
.community-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.community-values {
    margin-top: 30px;
}

.community-values .value-item {
    background: transparent;
    border: none;
    text-align: left;
    padding: 20px 0;
    box-shadow: none;
}

.community-values .value-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.community-values .value-item h4 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.testimonials h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 30px;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    padding: 25px;
    background: rgba(42, 42, 42, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
}

.stars {
    color: var(--accent-copper);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-item p {
    color: var(--body-text-color-new);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent-rose-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    padding: 30px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--accent-copper);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    color: var(--accent-copper);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.faq-answer {
    color: var(--body-text-color-new);
    line-height: 1.6;
}

/* Contact Page Specific Styles */

.contact-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.form-intro {
    color: var(--body-text-color-new);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--accent-copper);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(199, 127, 87, 0.2);
    border-radius: 10px;
    background: rgba(42, 42, 42, 0.6);
    color: var(--white);
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-copper);
    box-shadow: 0 0 0 3px rgba(199, 127, 87, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--body-text-color-new);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.submit-btn {
    position: relative;
    padding: 18px 36px;
    background: var(--accent-gradient);
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(199, 127, 87, 0.4);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 30px;
    background: transparent;
    border-radius: 15px;
    border: none;
    text-align: center;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: rgba(231, 111, 81, 0.06);
    border: none;
}

.contact-card h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--secondary-text);
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    color: var(--accent-copper);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-rose-gold);
}

.hours {
    color: var(--light-grey);
    font-size: 0.9rem;
    margin-top: 10px;
    display: block;
}

.contact-address {
    color: var(--secondary-text);
    font-style: normal;
    line-height: 1.5;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.section-intro {
    text-align: center;
    color: var(--secondary-text);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Social Section */
.social-section {
    padding: 120px 0;
    background: var(--primary-bg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.social-card {
    padding: 30px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all var(--transition-smooth);
    display: block;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.social-card h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.social-card p {
    color: var(--secondary-text);
    line-height: 1.5;
    margin-bottom: 15px;
}

.social-handle {
    color: var(--accent-rose-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.map-container {
    margin-top: 40px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(199, 127, 87, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.map-placeholder p {
    color: var(--accent-copper);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder span {
    color: var(--secondary-text);
}

/* Enhanced Why Us Page Animations */

/* Hero Title Animations */
.hero-main-title {
    animation: titleGlowEnhanced 3s ease-in-out infinite alternate;
}

/* Utility for copper-colored hero headings used on Why Us and About pages */
.copper-heading {
    color: var(--accent-copper) !important;
    font-family: var(--font-serif) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes titleGlowEnhanced {
    0% {
        text-shadow: 
            0 0 10px rgba(199, 127, 87, 0.5),
            0 0 20px rgba(224, 160, 120, 0.3),
            0 0 5px rgba(199, 127, 87, 0.8);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(199, 127, 87, 0.8),
            0 0 35px rgba(224, 160, 120, 0.6),
            0 0 8px rgba(199, 127, 87, 1);
    }
}

/* Keep hero compact on smaller screens */
@media (max-width: 720px) {
    .hero-main-title { font-size: 28px !important; margin-bottom: 12px; }
    .copper-rule { width: 80% !important; }
    .hero-compact { padding: 60px 0 20px; }
}

.hero-sub-text {
    animation: subtleTypewriter 2s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes subtleTypewriter {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Introduction Section */
.enhanced-intro-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.4;
    animation: electricWave 3s ease-in-out infinite;
}

@keyframes electricWave {
    0%, 100% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 0.6; transform: scaleX(1.2); }
}

.glow-title {
    position: relative;
    animation: titleAppear 1s ease-out;
}

.glow-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    animation: underlineGrow 1s ease-out 0.5s forwards;
}

@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes underlineGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.typewriter-text {
    opacity: 0;
    animation: typewriterFade 1.5s ease-out 1s forwards;
}

@keyframes typewriterFade {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Clarification Section */
.product-clarification-section {
    padding: 120px 0;
    background: var(--primary-bg);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-rose-gold);
    font-size: 1.3rem;
    margin-bottom: 80px;
    font-style: italic;
}

.clarification-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.clarification-block {
    opacity: 0;
    transform: translateY(50px);
}

.clarification-block.animate-in {
    animation: blockSlideIn 1s ease-out forwards;
}

@keyframes blockSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.clarification-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(199, 127, 87, 0.1);
    position: relative;
    overflow: hidden;
}

.clarification-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.clarification-content:hover::before {
    opacity: 0.1;
}

.clarification-content.reverse {
    grid-template-columns: 2fr 1fr;
}

.clarification-content.reverse .clarification-image {
    order: 2;
}

.clarification-content.reverse .clarification-text {
    order: 1;
}

/* Monkfruit Visual */
.monkfruit-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.fruit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-copper) 0%, var(--accent-rose-gold) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: fruitPulse 3s ease-in-out infinite;
}

.fruit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(199, 127, 87, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: fruitGlow 4s ease-in-out infinite alternate;
}

.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(199, 127, 87, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 8s linear infinite;
}

.energy-rings::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(224, 160, 120, 0.3);
    border-radius: 50%;
    animation: ringRotate 6s linear infinite reverse;
}

@keyframes fruitPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fruitGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Allulose Visual */
.allulose-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.molecule-structure {
    position: relative;
    width: 100%;
    height: 100%;
}

.molecule-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(199, 127, 87, 0.6);
    animation: nodeFloat 4s ease-in-out infinite;
}

.molecule-node:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.molecule-node:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.molecule-node:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.molecule-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.molecule-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(199, 127, 87, 0.4) 49%, rgba(199, 127, 87, 0.4) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(199, 127, 87, 0.4) 49%, rgba(199, 127, 87, 0.4) 51%, transparent 52%);
    animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.clarification-text h3 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.clarification-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    animation: titleUnderline 0.8s ease-out 0.3s forwards;
}

@keyframes titleUnderline {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Enhanced Comparison Section */
.enhanced-comparison-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
}

.visual-comparison {
    margin: 60px 0;
    opacity: 0;
    transform: translateY(30px);
}

.visual-comparison.animate-in {
    animation: slideUpFade 1s ease-out forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 20px;
    margin-bottom: 40px;
}

.sugar-side, .sway-side {
    text-align: center;
    padding: 20px;
}

.sugar-side h4 {
    color: #ff6b6b;
    font-family: var(--font-serif);
    margin-bottom: 20px;
}

.sway-side h4 {
    color: var(--accent-copper);
    font-family: var(--font-serif);
    margin-bottom: 20px;
}

.negative-effects, .positive-effects {
    position: relative;
    height: 60px;
}

.effect-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.effect-particle.bad {
    background: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.effect-particle.good {
    background: var(--accent-copper);
    box-shadow: 0 0 10px rgba(199, 127, 87, 0.5);
}

.effect-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.effect-particle:nth-child(2) { left: 50%; animation-delay: 1s; }
.effect-particle:nth-child(3) { left: 80%; animation-delay: 2s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px); opacity: 1; }
    50% { transform: translateY(-20px); opacity: 0.5; }
}

.vs-divider {
    padding: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    animation: vsPulse 2s ease-in-out infinite;
}

@keyframes vsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(199, 127, 87, 0.6); }
}

/* Revolution Section */
.revolution-section {
    padding: 120px 0;
    background: var(--primary-bg);
    position: relative;
}

.revolution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
}

.revolution-content.animate-in {
    animation: revolutionFadeUp 1s ease-out forwards;
}

@keyframes revolutionFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.community-silhouettes {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.silhouette {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.8;
    animation: silhouetteFloat 4s ease-in-out infinite;
}

.person-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.person-2 {
    top: 60%;
    left: 60%;
    animation-delay: 1.3s;
}

.person-3 {
    top: 10%;
    right: 20%;
    animation-delay: 2.6s;
}

@keyframes silhouetteFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(199, 127, 87, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.sway-product-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, var(--accent-copper) 0%, var(--accent-rose-gold) 100%);
    border-radius: 5px;
    transform: translate(-50%, -50%);
    animation: productGlow 2s ease-in-out infinite alternate;
}

@keyframes productGlow {
    0% {
        box-shadow: 0 0 10px rgba(199, 127, 87, 0.4);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        box-shadow: 0 0 20px rgba(199, 127, 87, 0.8);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.revolution-text {
    text-align: left;
}

.hashtag-large {
    font-size: 1.8rem;
    color: var(--accent-copper);
    font-weight: bold;
    margin: 30px 0;
    text-shadow: 0 0 15px rgba(199, 127, 87, 0.5);
    animation: hashtagGlow 3s ease-in-out infinite alternate;
}

@keyframes hashtagGlow {
    0% { text-shadow: 0 0 10px rgba(199, 127, 87, 0.3); }
    100% { text-shadow: 0 0 20px rgba(199, 127, 87, 0.8); }
}

.revolution-btn {
    margin-top: 30px;
    padding: 20px 40px;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 1024px) {
    .clarification-content,
    .clarification-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .clarification-content.reverse .clarification-image,
    .clarification-content.reverse .clarification-text {
        order: unset;
    }
    
    .revolution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-visual {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .enhanced-comparison-table .table-header,
    .enhanced-comparison-table .table-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .monkfruit-visual,
    .allulose-visual {
        width: 150px;
        height: 150px;
    }
    
    .community-silhouettes {
        width: 250px;
        height: 250px;
    }
    
    .hashtag-large {
        font-size: 1.4rem;
    }
}

/* Monk Fruit Showcase - Professional Image Display */

.monk-fruit-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.fruit-image-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: fruitImageEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    /* keep container transparent so PNG transparency shows through */
    background-color: transparent;
}

@keyframes fruitImageEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.fruit-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(199, 127, 87, 0.4)) brightness(1.15) contrast(1.2) saturate(1.2);
    transition: all 0.4s ease;
    background: transparent;
    mix-blend-mode: lighten;
}

.fruit-image-container:hover .fruit-image {
    filter: drop-shadow(0 30px 60px rgba(199, 127, 87, 0.6)) brightness(1.25) contrast(1.3) saturate(1.3);
    transform: scale(1.05);
}

/* Accent Border Animation */
.fruit-accent-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #e76f51;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: borderPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderPulse {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(231, 111, 81, 0.3),
            inset 0 0 15px rgba(199, 127, 87, 0.1);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 35px rgba(231, 111, 81, 0.6),
            inset 0 0 20px rgba(199, 127, 87, 0.2);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.fruit-image-container:hover .fruit-accent-border {
    animation: borderPulseHover 2s ease-in-out infinite;
}

@keyframes borderPulseHover {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(231, 111, 81, 0.5),
            inset 0 0 20px rgba(199, 127, 87, 0.2);
    }
    50% {
        box-shadow: 
            0 0 45px rgba(231, 111, 81, 0.8),
            inset 0 0 25px rgba(199, 127, 87, 0.3);
    }
}


/* Responsive Monk Fruit Showcase */
@media (max-width: 768px) {
    .fruit-image-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .monk-fruit-showcase {
        min-height: 300px;
    }
    
    .fruit-image-container {
        width: 200px;
        height: 200px;
    }
    
    .fruit-stem-indent {
        width: 12px;
        height: 8px;
    }
    
    .fruit-glow-core {
        width: 16px;
        height: 16px;
    }
}

/* Pre-registration Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--primary-bg);
    border: 2px solid rgba(199, 127, 87, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px) scale(0.9);
    transition: all var(--transition-smooth);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(199, 127, 87, 0.1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
    position: relative;
}

.modal-header h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-copper);
    margin: 0;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--accent-copper);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(199, 127, 87, 0.1);
    color: var(--accent-rose-gold);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.modal-body > p {
    color: var(--body-text-color-new);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.preregister-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preregister-form .form-group {
    display: flex;
    flex-direction: column;
}

.preregister-form label {
    color: var(--accent-copper);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.preregister-form input {
    padding: 15px;
    border: 2px solid rgba(199, 127, 87, 0.2);
    border-radius: 10px;
    background: rgba(42, 42, 42, 0.6);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.preregister-form input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.preregister-form input:focus {
    outline: none;
    border-color: var(--accent-copper);
    box-shadow: 0 0 0 3px rgba(199, 127, 87, 0.1);
    background: rgba(42, 42, 42, 0.8);
}

.preregister-form input:valid {
    border-color: rgba(199, 127, 87, 0.4);
}

.preregister-form .btn-primary {
    margin-top: 10px;
    justify-self: center;
}

.form-messages {
    margin-top: 20px;
    margin-bottom: 20px;
}

.message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: messageSlide 0.4s ease;
}

.message.show {
    display: block;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #66bb6a;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ef5350;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-note {
    color: var(--light-grey);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
    margin-top: 20px;
    font-style: italic;
}

/* Responsive Modal Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 25px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
        padding-right: 50px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .preregister-form input {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
