@font-face {
    font-family: 'Avenir Roman';
    src: url('../fonts/avenir-roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --teal-light: #7DE2C7;
    --teal-mid: #4CBFA5;
    --teal-dark: #349980;
    --navy: #1A3C5E;
    --neutral-dark: #333333;
    --cream: #F8F7F2;
    --white: #FFFFFF;
    --accent-gold: #FFD863;
    --font-primary: 'Nunito Sans', 'Avenir Roman', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    --shadow: 0 12px 40px rgba(0,0,0,0.06);
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); color: var(--neutral-dark); background: var(--cream); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== UTILITIES ===================== */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-teal { color: var(--teal-dark); }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 32px; border-radius: 50px; font-weight: 800;
    font-size: 1.05rem; cursor: pointer; border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); white-space: nowrap;
}
.btn-teal { background: var(--teal-mid); color: var(--white); box-shadow: 0 4px 15px rgba(76, 191, 165, 0.3); }
@media (hover: hover) {
    .btn-teal:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(52,153,128,0.4); }
}
.btn-icon {
    width: 32px; height: 32px; background: rgba(255,255,255,0.25);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 18px 0; background: rgba(248, 247, 242, 0.95);
    backdrop-filter: blur(12px); transition: all 0.3s;
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 40px; min-width: 140px; }

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh; padding-top: 120px; padding-bottom: 60px;
    background: var(--cream); position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-mandala-left {
    position: absolute; left: -100px; top: 50%; transform: translateY(-50%);
    width: 400px; opacity: 0.08; pointer-events: none;
}
.hero-mandala-right {
    position: absolute; right: -50px; top: -50px;
    width: 300px; opacity: 0.08; pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-label { 
    font-family: var(--font-accent); color: var(--teal-mid); 
    font-size: 2.2rem; margin-bottom: 10px; display: inline-block;
    transform: rotate(-2deg);
    animation: breathing 4s ease-in-out infinite alternate;
}
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 strong { color: var(--teal-dark); }
.hero-sub { font-size: 1.15rem; color: #555; margin-bottom: 30px; max-width: 500px; line-height: 1.7; }
.hero-img-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-circle {
    width: 100%; aspect-ratio: 1; max-width: 480px;
    border-radius: 50%;
    background: var(--teal-dark); overflow: hidden;
    box-shadow: 0 20px 60px rgba(52,153,128,0.25);
}
.hero-img-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ===================== JOURNEY ===================== */
.journey { background: var(--cream); padding: 100px 0 0; }
.journey h2 { text-align: center; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 60px; }
.journey-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-bottom: -40px; position: relative; z-index: 10;
}
.journey-card {
    background: var(--white); border-radius: var(--radius);
    padding: 40px 24px 30px; position: relative;
    box-shadow: var(--shadow); text-align: center;
    border-top: 4px solid var(--teal-mid);
}
.journey-icon {
    width: 60px; height: 60px; background: var(--teal-mid);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(76, 191, 165, 0.3);
}
.journey-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.journey-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

.journey-bottom {
    background: var(--navy); padding: 80px 0 60px;
    border-radius: 80px 80px 0 0; display: flex; justify-content: center;
}

/* ===================== PAIN SECTION ===================== */
.pain-section { background: var(--cream); padding: 100px 0 0; }
.pain-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.pain-img-wrap { position: relative; display: flex; justify-content: center; }
.pain-img-circle {
    width: 100%; aspect-ratio: 1; max-width: 440px;
    border-radius: 50%; overflow: hidden; background: var(--teal-dark); position: relative;
    box-shadow: var(--shadow);
}
.pain-img-circle img { width: 100%; height: 100%; object-fit: cover; }
.pain-img-real {
    width: 100%; border-radius: 30px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.pain-img-real img { width: 100%; height: auto; object-fit: cover; display: block; }
.pain-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.pain-text .pain-intro { color: #555; margin-bottom: 30px; font-size: 1.1rem; }
.pain-list li {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 1.05rem; color: var(--neutral-dark); font-weight: 700;
}
.pain-list li::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--teal-mid); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(76, 191, 165, 0.2);
}
.pain-cta { margin-top: 40px; }

.pain-dark-banner {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
    border-radius: 80px 80px 0 0;
    padding: 60px 24px; margin-top: 80px; text-align: center;
    position: relative; overflow: hidden;
}
.pain-dark-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.pain-dark-banner h3 {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: white;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* ===================== BENEFITS ===================== */
.benefits { background: var(--cream); padding: 100px 0; }
.benefits h2 { text-align: center; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 60px; color: var(--navy); }
.benefits-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.benefits-col { display: flex; flex-direction: column; gap: 40px; }
.benefits-col.right { align-items: flex-end; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; max-width: 380px; }
.benefit-item.right { flex-direction: row-reverse; text-align: right; }
.benefit-icon-wrap {
    width: 64px; height: 64px; background: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark); flex-shrink: 0; box-shadow: var(--shadow);
}
.benefit-text h4 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.benefit-text p { font-size: 0.95rem; color: #666; line-height: 1.6; }
.benefits-center-col { display: flex; align-items: center; justify-content: center; padding: 0 40px; height: 100%; }
.benefits-divider { height: 100%; border-left: 2px dashed rgba(52,153,128,0.3); min-height: 300px; }
.benefits-cta { text-align: center; margin-top: 80px; }

/* ===================== FOR WHO SECTION ===================== */
.for-who { background: var(--cream); padding: 80px 0 120px; }
.for-who-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.for-who-img-wrap { position: relative; padding-bottom: 80px; }
.for-who-img {
    width: 100%; border-radius: 30px; overflow: hidden; max-height: 560px;
    box-shadow: var(--shadow);
}
.for-who-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.for-who-card {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--white); border-radius: var(--radius);
    padding: 28px 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.for-who-card h4 { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.for-who-card p { font-size: 0.95rem; color: #555; margin-bottom: 24px; line-height: 1.6; }
.for-who-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; color: var(--navy); }
.for-who-text p { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.7; }
.for-who-list li {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 700; color: var(--neutral-dark);
}
.for-who-list li::before {
    content: ''; width: 24px; height: 24px; border-radius: 50%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23349980" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center center;
    background-size: 16px; flex-shrink: 0; background-color: rgba(125, 226, 199, 0.2);
}

/* ===================== REVIEWS ===================== */
.reviews { background: var(--cream); padding: 40px 0 80px; }
.google-badge {
    display: flex; align-items: center; gap: 24px;
    background: var(--white); border-radius: var(--radius);
    padding: 24px 32px; box-shadow: var(--shadow); max-width: 400px;
    margin: 0 auto 60px;
}
.google-badge .stars { color: #FBBC04; font-size: 1.5rem; letter-spacing: 2px; }
.google-badge .rating { font-size: 1.3rem; font-weight: 900; }
.google-badge .label { font-size: 0.85rem; color: #777; margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow); border-top: 4px solid #FBBC04;
}
.review-card .stars { color: #FBBC04; font-size: 1.1rem; margin-bottom: 16px; }
.review-card p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 16px; }
.reviewer-avatar { display: none; }
.reviewer strong { font-size: 1rem; display: block; color: var(--navy); }
.reviewer span { font-size: 0.8rem; color: #888; }

/* ===================== ABOUT SECTION ===================== */
.about { background: var(--cream); padding: 80px 0; }
.about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-video {
    border-radius: 30px; overflow: hidden; position: relative;
    background: #1a1a1a; aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
}
.play-btn {
    width: 80px; height: 80px; background: rgba(255,255,255,0.95);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--teal-dark);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; z-index: 2;
}
.play-btn svg { width: 32px; height: 32px; fill: currentColor; margin-left: 4px; }
@media (hover: hover) {
    .play-btn:hover { transform: scale(1.1); background: var(--white); }
}
.about-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.about h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; color: var(--navy); }
.about p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }

/* ===================== FAQ ===================== */
.faq { background: var(--navy); padding: 100px 0; border-radius: 80px 80px 0 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-left h2 { font-size: clamp(2rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 20px; }
.faq-left p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1.1rem; line-height: 1.6; }
.faq-item {
    background: rgba(255,255,255,0.05); border-radius: 16px;
    margin-bottom: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}
@media (hover: hover) {
    .faq-item:hover { background: rgba(255,255,255,0.08); }
}
.faq-question {
    padding: 24px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; color: white; font-weight: 700; font-size: 1.05rem; gap: 16px;
}
.faq-icon { font-size: 1.5rem; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); flex-shrink: 0; color: var(--teal-light); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 24px 24px; }

/* ===================== LOCATION ===================== */
.location { background: var(--cream); padding: 100px 0; }
.location h2 { text-align: center; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; color: var(--navy); }
.location .sub { text-align: center; color: #666; margin-bottom: 50px; font-size: 1.1rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 450px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.location-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: -60px; position: relative; z-index: 10; padding: 0 40px; }
.loc-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; }
.loc-card .icon { font-size: 2.5rem; margin-bottom: 16px; display: inline-block; }
.loc-card h4 { font-weight: 800; color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.loc-card p { font-size: 0.95rem; color: #666; }

/* ===================== FOOTER ===================== */
.footer { background: #122840; color: white; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo img { height: 60px; margin-bottom: 24px; }
.footer p, .footer li { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; font-weight: 800; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer ul li a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom p { margin-bottom: 8px; }
.footer-socials { display: flex; flex-direction: column; gap: 14px; }
.social-icon {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 0.95rem; transition: color 0.2s, transform 0.2s;
}
.social-icon:hover { color: var(--teal-light); transform: translateX(4px); }
.social-icon svg { flex-shrink: 0; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white; border-radius: 50%;
    width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); z-index: 9999; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float svg { width: 36px; height: 36px; }
@media (hover: hover) {
    .whatsapp-float:hover { transform: scale(1.15) rotate(-5deg); background: #1ebe57; }
}

/* ===================== NATIVE CSS ANIMATIONS ===================== */
@keyframes breathing { from { transform: translateY(0) rotate(-2deg); } to { transform: translateY(-8px) rotate(-2deg); } }
@keyframes floatingShape { from { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; } to { border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%; } }

.pre-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 60px; }
    .benefits-center-col { display: none; }
    .benefit-item { max-width: 100%; }
    .benefit-item.right { flex-direction: row; text-align: left; }
    .location-info { padding: 0; grid-template-columns: 1fr; margin-top: 40px; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
    .hero .container, .pain-layout, .for-who-layout, .about-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-label { margin: 0 auto 10px; }
    .hero-sub { margin: 0 auto 30px; }
    .hero-img-wrap { margin-top: 40px; }
    .journey-cards { grid-template-columns: 1fr 1fr; gap: 40px; }
    .for-who-card { position: static; margin-top: 30px; max-width: 100%; }
    .for-who-list li { justify-content: flex-start; text-align: left; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .pain-dark-banner { border-radius: 40px 40px 0 0; padding: 40px 20px; margin-top: 60px; }
    .journey-bottom { border-radius: 40px 40px 0 0; padding: 60px 0 40px; }
    .faq { border-radius: 40px 40px 0 0; padding: 60px 0; }
}
@media (max-width: 600px) {
    .section { padding: 50px 0; }
    .hero { padding-top: 100px; padding-bottom: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .journey-cards { grid-template-columns: 1fr; }
    .google-badge { flex-direction: column; text-align: center; gap: 16px; }
    .btn { width: 100%; justify-content: center; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 30px; height: 30px; }
    .pain-dark-banner { border-radius: 30px 30px 0 0; }
    .journey-bottom { border-radius: 30px 30px 0 0; padding: 50px 24px 40px; }
    .faq { border-radius: 30px 30px 0 0; padding: 50px 0; }
}
