/* --- Global Resets & Variables --- */
:root {
    --midnight-navy: #0B192C;
    --sunrise-amber: #FF6B35;
    --dawn-sand: #F4F7F6;
    --vitality-green: #16A085;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--midnight-navy);
    color: var(--dawn-sand);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

/* --- Navigation (Sticky & Transparent Blur) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 25, 44, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 35px; width: auto; }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--dawn-sand); letter-spacing: -0.5px; }

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: var(--dawn-sand); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--sunrise-amber); }

.btn-secondary {
    color: var(--dawn-sand) !important;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-secondary:hover { background-color: white; color: var(--midnight-navy) !important; border-color: white; }

/* HIDE GOOGLE TRANSLATE BANNER */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
#google_translate_element { display: none !important; }

/* LANGUAGE TOGGLE STYLE */
.lang-container { display: flex; align-items: center; }
.lang-toggle {
    background: rgba(255, 255, 255, 0.05); color: var(--dawn-sand); border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1.8rem 0.4rem 0.8rem; border-radius: 6px; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 600; cursor: pointer; outline: none;
    transition: all 0.2s ease; appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22242%22%20height%3D%22242%22%20viewBox%3D%220%200%20242%20242%22%3E%3Cpath%20fill%3D%22%23F4F7F6%22%20d%3D%22M236%2063L121%20178%206%2063z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; background-position: right 0.6rem top 50%; background-size: 0.6rem auto;
}
.lang-toggle:hover, .lang-toggle:focus { border-color: var(--sunrise-amber); color: var(--sunrise-amber); }

/* --- Hero Section --- */
.hero { min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; padding: 6rem 5% 4rem; background: radial-gradient(circle at center, #162a45 0%, var(--midnight-navy) 70%); }
.hero-content { max-width: 800px; }
.badge { background: rgba(255, 107, 53, 0.15); color: var(--sunrise-amber); padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 2rem; letter-spacing: 1.5px; border: 1px solid rgba(255, 107, 53, 0.3); }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content .highlight { color: var(--sunrise-amber); }
.hero-content p { font-size: 1.2rem; max-width: 650px; margin: 0 auto 2.5rem; opacity: 0.9; font-weight: 400; }
.cta-group { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-primary { display: inline-block; background-color: var(--sunrise-amber); color: white; padding: 1.1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); }

/* --- Social Proof & Shared Cards --- */
.testimonials-section { background-color: white; padding: 6rem 0; text-align: center; color: var(--midnight-navy); }
.subtitle { font-size: 1.1rem; margin-bottom: 4rem; opacity: 0.7; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.testimonial-card:hover { transform: translateY(-5px); }
.stars { margin-bottom: 1rem; font-size: 1rem; letter-spacing: 2px; }
.quote { font-style: italic; margin-bottom: 1.5rem; font-size: 1.05rem; color: #445; line-height: 1.6; }
.author { font-weight: 700; font-family: var(--font-heading); font-size: 1rem; }
.author span { font-weight: 500; color: var(--vitality-green); display: block; font-size: 0.85rem; margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- How It Works --- */
.how-it-works { background-color: var(--dawn-sand); color: var(--midnight-navy); padding: 6rem 0; text-align: center; }
.how-it-works h2, .testimonials-section h2, .seo-section h2 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 0.5rem; }
.steps-container { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 280px; max-width: 350px; padding: 3rem 2rem; background: white; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); text-align: center; }
.step-number { background-color: var(--vitality-green); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem; margin: 0 auto 1.5rem; }
.step h3 { font-family: var(--font-heading); margin-bottom: 1rem; font-size: 1.4rem; }
.step p { color: #556; font-size: 1rem; }

/* --- Funding --- */
.funding-section { background-color: var(--midnight-navy); padding: 6rem 0; color: var(--dawn-sand); }
.funding-box { background: radial-gradient(circle at top right, #162a45 0%, #0a1525 100%); padding: 0; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; max-width: 900px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.funding-header { padding: 4rem 2rem 1rem; text-align: center; }
.funding-header h2 { font-family: var(--font-heading); font-size: 2.8rem; }
.funding-subtitle { max-width: 600px; margin: 1rem auto 0; opacity: 0.8; line-height: 1.6; font-size: 1.1rem; }
.pledge-card { background: white; color: var(--midnight-navy); margin: 2rem; padding: 4rem 2rem; border-radius: 16px; text-align: center; }
.pledge-card h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.5rem; }
.price { font-size: 3.5rem; font-weight: 800; color: var(--sunrise-amber); margin-bottom: 2rem; font-family: var(--font-heading); }
.one-time { font-size: 1.1rem; font-weight: 500; color: #889; vertical-align: middle; }
.perks-list { list-style: none; text-align: left; max-width: 420px; margin: 0 auto 3rem; }
.perks-list li { margin-bottom: 1.2rem; font-size: 1.1rem; color: #334; }
.full-width { width: 100%; max-width: 400px; display: block; margin: 0 auto; text-align: center; }
.guarantee { font-size: 0.85rem; margin-top: 1.5rem; color: #889; }

/* --- SEO & Futuristic Cards --- */
.seo-section { background-color: var(--dawn-sand); color: var(--midnight-navy); padding: 6rem 0; text-align: center; }
.seo-subtitle { font-size: 1.1rem; margin-bottom: 4rem; color: #556; }
.dark-card { background: linear-gradient(145deg, #112540 0%, #0a1525 100%); padding: 2.5rem; border-radius: 16px; text-align: left; border-top: 4px solid var(--vitality-green); border-bottom: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05); box-shadow: 0 15px 35px rgba(11, 25, 44, 0.2); color: white; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.dark-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11, 25, 44, 0.4); }
.icon-wrap { font-size: 2rem; margin-bottom: 1rem; background: rgba(22, 160, 133, 0.15); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid rgba(22, 160, 133, 0.3); }
.dark-card h3 { font-family: var(--font-heading); margin-bottom: 1rem; font-size: 1.4rem; color: white; }
.dark-card p { color: rgba(255,255,255,0.7); line-height: 1.6; }

/* --- Form --- */
.assessment-section { padding: 6rem 5%; background-color: var(--midnight-navy); text-align: center; }
.assessment-header { margin-bottom: 3rem; }
.assessment-header h2 { font-family: var(--font-heading); font-size: 2.5rem; }
.form-container { max-width: 800px; margin: 0 auto; background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
iframe{ width: 100%; display: block; border: none; }

/* --- Footer --- */
footer { padding: 4rem 5% 2rem; text-align: center; background-color: #050c16; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: white; font-size: 1.2rem; }
.disclaimer { font-size: 0.8rem; margin-top: 1rem; opacity: 0.5; }

/* --- FAQ --- */
.faq-section { background-color: var(--midnight-navy); color: var(--dawn-sand); padding: 6rem 0; }
.faq-section h2 { font-family: var(--font-heading); font-size: 2.8rem; text-align: center; margin-bottom: 0.5rem; color: white; }
.faq-section .subtitle { text-align: center; margin-bottom: 4rem; font-size: 1.1rem; color: rgba(255,255,255,0.7); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.faq-item { background: white; padding: 2.5rem; border-radius: 16px; border-left: 4px solid var(--sunrise-amber); box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: transform 0.2s ease; }
.faq-item:hover { transform: translateY(-5px); }
.faq-item h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 1rem; color: var(--midnight-navy); }
.faq-item p { color: #445; line-height: 1.6; font-size: 1.05rem; }
.faq-item p strong { color: var(--vitality-green); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .nav-links { gap: 10px; }
    .logo-text { font-size: 1.2rem; }
    .logo-img { height: 32px; }

    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.05rem; }

    .grid-cards { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item { padding: 2rem; }

    .pledge-card { padding: 3rem 1.5rem; margin: 1.5rem; }
    .price { font-size: 2.8rem; }
}