/* ===== VARIABLES ===== */
:root {
    --navy: #0d1b2a;
    --navy-light: #1b2d45;
    --navy-mid: #162539;
    --gold: #c9a84c;
    --gold-light: #e0c878;
    --gold-dark: #a88a2e;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --white: #ffffff;
    --off-white: #f8f6f1;
    --gray-light: #e8e6e1;
    --gray: #8a8a8a;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13, 27, 42, 0.97); backdrop-filter: blur(12px);
    padding: 0.8rem 2rem; transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.navbar.scrolled { padding: 0.5rem 2rem; box-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 45px; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important; color: var(--navy) !important; padding: 0.6rem 1.5rem !important; border-radius: 50px; font-weight: 600 !important; box-shadow: 0 2px 10px rgba(201,168,76,0.2); }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: all 0.3s; }
.navbar.menu-open { z-index: 1300; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 1rem 2.2rem; border-radius: 50px;
    font-size: 0.88rem; font-weight: 600; text-decoration: none;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer; border: none; text-align: center;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); box-shadow: 0 4px 15px rgba(201,168,76,0.25); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.2rem 3rem; font-size: 0.95rem; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ===== SECTIONS COMMON ===== */
section { padding: 6rem 2rem; }
.section-container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1.3; margin-bottom: 1.5rem; color: var(--text-dark); }
.section-title span { color: var(--gold); }
.section-title.white { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 650px; margin-bottom: 3rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== HERO (HOME) ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #243b5a 100%);
    position: relative; overflow: hidden; padding-top: 80px;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.1) 0%, transparent 55%);
}
.hero::after {
    content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px;
    border-radius: 50%; border: 1px solid rgba(201,168,76,0.08);
}
.hero-container { max-width: 1200px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3rem; line-height: 1.2; color: var(--white); margin-bottom: 1.5rem; font-weight: 700; }
.hero-content h1 span { color: var(--gold); display: block; font-style: italic; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; font-weight: 300; }
.hero-stats { display: flex; gap: 2.5rem; margin: 2.5rem 0; }
.hero-stat { text-align: center; }
.hero-stat .number { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.hero-stat .label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-image { text-align: right; position: relative; }
.hero-image img {
    max-height: 580px; position: relative; z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}
.hero-image::before {
    content: ''; position: absolute; bottom: 0; right: 0; width: 400px; height: 400px;
    border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    z-index: 1;
}

/* ===== PRODUCT HERO (SUBPAGES) ===== */
.product-hero {
    min-height: 70vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 80px;
}
.product-hero-container { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.product-hero .product-hero-logo { max-height: 120px; margin-bottom: 2rem; }
.product-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; line-height: 1.25; color: var(--white); margin-bottom: 1.2rem; }
.product-hero h1 span { color: var(--gold); }
.product-hero .hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; line-height: 1.7; }
.product-hero-image img { max-height: 480px; filter: drop-shadow(0 15px 40px rgba(0,0,0,0.35)); }

/* Theme colors for product pages */
.theme-mdc { background: linear-gradient(135deg, #0d1b2a 0%, #162a42 50%, #1e3a5f 100%); }
.theme-mdc::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.12) 0%, transparent 50%); }
.theme-msri { background: linear-gradient(135deg, #0d1b2a 0%, #142238 50%, #1a2d47 100%); }
.theme-msri::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(ellipse at 20% 80%, rgba(218,170,52,0.1) 0%, transparent 50%); }
.theme-oasis { background: linear-gradient(135deg, #1a1200 0%, #2d2000 50%, #3d2d00 100%); }
.theme-oasis::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(ellipse at 80% 50%, rgba(218,170,52,0.15) 0%, transparent 50%); }
.theme-mentoria { background: linear-gradient(135deg, #0d1b2a 0%, #1b2d45 100%); }
.theme-mentoria::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.08) 0%, transparent 50%); }

/* ===== PAIN / EMPATHY ===== */
.pain { background: var(--off-white); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.pain-card { background: var(--white); padding: 1.8rem; border-radius: 16px; border-left: 4px solid var(--gold); box-shadow: 0 4px 25px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.pain-card:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(0,0,0,0.1); }
.pain-card p { font-size: 0.95rem; color: var(--text-body); font-style: italic; }
.pain-answer { margin-top: 2.5rem; padding: 3rem; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 20px; color: var(--white); text-align: center; box-shadow: 0 8px 40px rgba(13,27,42,0.3); }
.pain-answer p { font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.5; }
.pain-answer span { color: var(--gold); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.about-image img { width: 100%; max-width: 400px; filter: drop-shadow(0 15px 40px rgba(0,0,0,0.12)); }
.about-credentials { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.credential { background: var(--off-white); padding: 0.6rem 1.2rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; color: var(--navy); border: 1px solid var(--gray-light); }

/* ===== PRODUCTS GRID (HOME) ===== */
.products { background: var(--navy); color: var(--white); }
.products .section-title { color: var(--white); }
.products .section-subtitle { color: rgba(255,255,255,0.6); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-card {
    background: var(--off-white); border: 1px solid var(--gray-light);
    border-radius: 20px; padding: 2.5rem 1.8rem; text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover { background: var(--white); transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.product-card:hover::before { opacity: 1; }
.product-card .product-step { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-dark); margin-bottom: 1.2rem; font-weight: 600; }
.product-card .product-logo-wrap { height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.product-card .product-logo { max-height: 85px; max-width: 160px; object-fit: contain; }
.product-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--navy); }
.product-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; margin-bottom: 1.8rem; min-height: 80px; }
.product-card .btn { width: 100%; font-size: 0.78rem; padding: 0.85rem 1rem; }

/* ===== STRATEGIES ===== */
.strategies { background: var(--off-white); }
.strategies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.strategy-card { background: var(--white); border-radius: 20px; padding: 2.5rem; text-align: center; box-shadow: 0 4px 25px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden; }
.strategy-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.4s ease; }
.strategy-card:hover { transform: translateY(-8px); box-shadow: 0 16px 45px rgba(0,0,0,0.12); }
.strategy-card:hover::after { transform: scaleX(1); }
.strategy-number { font-family: var(--font-heading); font-size: 3.5rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 1rem; }
.strategy-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1rem; color: var(--navy); }
.strategy-card p { font-size: 0.88rem; color: var(--text-body); }

/* ===== FAITH ===== */
.faith { background: linear-gradient(135deg, var(--navy) 0%, #1e3254 100%); text-align: center; padding: 5rem 2rem; position: relative; }
.faith::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:300px; height:300px; border-radius:50%; border:1px solid rgba(201,168,76,0.06); }
.faith-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.faith .cross { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.faith blockquote { font-family: var(--font-heading); font-size: 1.7rem; color: var(--white); font-style: italic; line-height: 1.5; margin-bottom: 1rem; }
.faith cite { font-size: 0.9rem; color: var(--gold); font-style: normal; font-weight: 500; }
.faith .faith-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--off-white); border-radius: 20px; padding: 2rem; position: relative; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.testimonial-card .quote-mark { font-family: var(--font-heading); font-size: 4rem; color: var(--gold); line-height: 1; position: absolute; top: 10px; left: 20px; opacity: 0.25; }
.testimonial-card p { font-size: 0.9rem; font-style: italic; color: var(--text-body); margin-bottom: 1.5rem; padding-top: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 1rem; }
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.testimonial-result { font-size: 0.75rem; color: var(--gold); }

/* ===== CONTACT FORM ===== */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-detail .icon { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.5rem; }
.phone-group { display: flex; gap: 0.5rem; }
.phone-group .ddd-input { width: 80px; flex-shrink: 0; text-align: center; }
.phone-group .phone-input { flex: 1; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--gray-light);
    border-radius: 6px; font-family: var(--font-body); font-size: 0.9rem;
    transition: border-color 0.3s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-group textarea { min-height: 100px; resize: vertical; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #1e3254 100%); padding: 5rem 2rem; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; top:-50px; right:-50px; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%); }
.cta-banner-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.5fr; gap: 3rem; align-items: center; }
.cta-banner h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); margin-bottom: 1rem; }
.cta-banner h2 span { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-banner-image img { max-height: 420px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }

/* ===== DETAIL SECTIONS (subpages) ===== */
.detail-section { padding: 5rem 2rem; }
.detail-section.alt { background: var(--off-white); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
.detail-content h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); margin-bottom: 1rem; line-height: 1.3; }
.detail-content h2 span { color: var(--gold); }
.detail-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.detail-image { text-align: center; }
.detail-image img { max-width: 100%; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* Feature list */
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li { padding: 0.7rem 0; border-bottom: 1px solid var(--gray-light); font-size: 0.92rem; display: flex; align-items: flex-start; gap: 0.8rem; }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.feature-list li:last-child { border-bottom: none; }

/* Included grid */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.included-card { background: var(--white); padding: 1.8rem; border-radius: 10px; text-align: center; box-shadow: 0 2px 15px rgba(0,0,0,0.04); border-top: 3px solid var(--gold); }
.included-card h4 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.included-card p { font-size: 0.82rem; color: var(--gray); }

/* Guarantee */
.guarantee-section { background: var(--navy); color: var(--white); text-align: center; padding: 4rem 2rem; }
.guarantee-section h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.guarantee-section h2 span { color: var(--gold); }
.guarantee-cards { display: flex; gap: 2rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.guarantee-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 2rem; max-width: 350px; }
.guarantee-card h3 { color: var(--gold); font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.5rem; }
.guarantee-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer { background: #070f1a; color: rgba(255,255,255,0.5); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; }
.footer h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.3s; text-decoration: none; font-size: 0.85rem; }
.footer-social a:hover { color: var(--gold); }

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
    position: relative; width: 100%; overflow: hidden; line-height: 0;
}
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }
.wave-divider .shape-fill { fill: var(--off-white); }
.wave-divider-dark .shape-fill { fill: var(--navy); }
.wave-divider-white .shape-fill { fill: var(--white); }
.wave-divider-footer .shape-fill { fill: #070f1a; }
.wave-divider.flip { transform: rotate(180deg); }

/* ===== SECTION WITH BACKGROUND IMAGE ===== */
.section-bg {
    position: relative; background-size: cover; background-position: center; background-attachment: fixed;
}
.section-bg::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(27,45,69,0.88) 100%);
    z-index: 1;
}
.section-bg > * { position: relative; z-index: 2; }
.section-bg-light::before {
    background: linear-gradient(135deg, rgba(248,246,241,0.95) 0%, rgba(255,255,255,0.92) 100%);
}

/* ===== SOFT IMAGE FADE ===== */
.img-soft {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.img-soft-sides {
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at center, black 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 90% at center, black 60%, transparent 100%);
}
.img-glow {
    filter: drop-shadow(0 0 30px rgba(201,168,76,0.15)) drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ===== DECORATIVE ELEMENTS ===== */
.deco-circle {
    position: absolute; border-radius: 50%; pointer-events: none;
    border: 1px solid rgba(201,168,76,0.08);
}
.deco-glow {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

/* ===== INCLUDED CARD IMPROVEMENTS ===== */
.included-card { border-radius: 16px; border-top: 3px solid var(--gold); transition: all 0.3s ease; }
.included-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

/* ===== GUARANTEE CARD IMPROVEMENTS ===== */
.guarantee-card { border-radius: 16px; }

/* ===== SMOOTH SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== EVENT BANNER ===== */
.event-banner {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
    background: linear-gradient(135deg, #0a0f1a 0%, var(--navy) 40%, #1a2d47 100%);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    animation: bannerSlideDown 0.5s ease-out;
}
@keyframes bannerSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.event-banner-container {
    max-width: 1200px; margin: 0 auto; padding: 0.8rem 2rem;
    display: flex; align-items: center; position: relative;
}
.event-banner-content {
    display: flex; align-items: center; gap: 1.5rem; width: 100%;
}
.event-banner-logo {
    height: 55px; flex-shrink: 0;
}
.event-banner-text {
    flex: 1;
}
.event-banner-headline {
    font-size: 0.92rem; color: var(--white); line-height: 1.4; margin: 0;
}
.event-banner-headline strong {
    color: var(--gold);
}
.event-banner-date {
    font-size: 0.75rem; color: var(--gold-light); margin: 0.3rem 0 0; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
}
.event-banner-btn {
    flex-shrink: 0; padding: 0.7rem 1.8rem; font-size: 0.78rem;
    white-space: nowrap; animation: bannerPulse 2s infinite;
}
@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(201,168,76,0.25); }
    50% { box-shadow: 0 4px 25px rgba(201,168,76,0.5); }
}
.event-banner-close {
    position: absolute; top: 50%; right: 0.5rem; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.5rem;
    cursor: pointer; padding: 0.3rem 0.6rem; line-height: 1; transition: color 0.3s;
    width: auto; height: auto;
}
.event-banner-close:hover { color: var(--white); background: none; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .event-banner-content { flex-wrap: wrap; justify-content: center; text-align: center; gap: 0.8rem; }
    .event-banner-logo { height: 45px; }
    .event-banner-headline { font-size: 0.85rem; }
    section { padding: 4rem 1.5rem; }
    .hero-container, .product-hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1, .product-hero h1 { font-size: 2.2rem; }
    .hero-image, .product-hero-image { display: none; }
    .hero-stats { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .about-grid, .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; text-align: center; direction: ltr; }
    .about-image, .detail-image { text-align: center; }
    .about-credentials { justify-content: center; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card .product-logo-wrap { height: 100px; }
    .product-card .product-logo { max-height: 90px !important; max-width: 180px !important; }
    .strategies-grid, .included-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-banner-container { grid-template-columns: 1fr; text-align: center; }
    .cta-banner-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .pain-answer p { font-size: 1.15rem; }
    .faith blockquote { font-size: 1.4rem; }
    .faith { padding: 3.5rem 1.5rem; }
    .cta-banner { padding: 3.5rem 1.5rem; }
    .section-bg { background-attachment: scroll; }
}
@media (max-width: 600px) {
    .event-banner-container { padding: 0.6rem 1rem; }
    .event-banner-logo { height: 38px; }
    .event-banner-headline { font-size: 0.8rem; }
    .event-banner-date { font-size: 0.68rem; }
    .event-banner-btn { padding: 0.6rem 1.2rem; font-size: 0.72rem; }
    section { padding: 3rem 1rem; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13, 27, 42, 0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; z-index: 1200; }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.1rem; letter-spacing: 2px; }
    .nav-cta { padding: 0.8rem 2rem !important; font-size: 1rem !important; }
    .hamburger { display: flex; z-index: 1201; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
    .hero-content h1, .product-hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .hero-stat .number { font-size: 1.8rem; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 2rem 1.5rem; }
    .product-card .product-logo-wrap { height: 90px; }
    .product-card .product-logo { max-height: 80px !important; max-width: 160px !important; }
    .product-card p { min-height: auto; }
    .pain-answer { padding: 2rem; }
    .pain-answer p { font-size: 1.05rem; }
    .faith blockquote { font-size: 1.2rem; }
    .faith { padding: 3rem 1rem; }
    .cta-banner { padding: 3rem 1rem; }
    .cta-banner h2 { font-size: 1.6rem; }
    .contact-form { padding: 1.5rem; }
    .btn { padding: 0.85rem 1.8rem; font-size: 0.82rem; }
    .btn-lg { padding: 1rem 2rem; font-size: 0.88rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .guarantee-cards { flex-direction: column; align-items: center; }
}
