
/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;font-size:16px;color:#1a2332;background:#fff;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,select,textarea{font-family:inherit;font-size:1rem}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5{font-family:'Playfair Display',serif;color:#1a2332;line-height:1.2}
h1{font-size:clamp(2.2rem,5vw,3.5rem);font-weight:500}
h2{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:500}
h3{font-size:1.3rem;font-weight:600}
h4{font-size:1.1rem;font-weight:600}
.overline{font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:#64748b;font-weight:500;margin-bottom:0.75rem}
.overline.teal{color:#2dd4bf}
.overline.teal-light{color:#5eead4}
.section-sub{font-size:1.05rem;color:#64748b;max-width:640px;margin:0.75rem auto 0}
.white{color:#fff}
.white-muted{color:#94a3b8}

/* ===== CONTAINER ===== */
.container{max-width:1200px;margin:0 auto;padding:0 2rem;width:100%}

/* Offset anchored sections so the fixed navbar never covers their headings */
section[id]{scroll-margin-top:84px}

/* ===== BUTTONS ===== */
.btn-primary{background:#2dd4bf;color:#fff;padding:0.6rem 1.3rem;border-radius:8px;font-size:0.9rem;font-weight:500;transition:background .2s}
.btn-primary:hover{background:#14b8a6}
.btn-teal{background:#2dd4bf;color:#fff;padding:0.85rem 1.8rem;border-radius:8px;font-size:1rem;font-weight:500;transition:background .2s;display:inline-flex;align-items:center;justify-content:center;min-height:48px}
.btn-teal:hover{background:#14b8a6}
.btn-submit{width:100%;background:#1a3a3a;color:#fff;padding:1rem;border-radius:8px;font-size:1rem;font-weight:500;transition:background .2s;margin-top:1rem;min-height:48px}
.btn-submit:hover{background:#0f2929}
.btn-tier-outline{width:100%;background:#fff;color:#0d9488;padding:0.85rem;border-radius:8px;font-size:1rem;font-weight:500;border:1.5px solid #2dd4bf;transition:all .2s;min-height:48px}
.btn-tier-outline:hover{background:#f0fdfa;color:#0f766e}
.btn-tier-dark{width:100%;background:#1a3a3a;color:#fff;padding:0.85rem;border-radius:8px;font-size:1rem;font-weight:500;transition:background .2s;min-height:48px;border:1.5px solid #1a3a3a}
.btn-tier-dark:hover{background:#0f2929}

/* ===== NAVBAR ===== */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);border-bottom:1px solid #e2e8f0;transition:all .3s}
.navbar.scrolled{box-shadow:0 2px 20px rgba(0,0,0,0.08)}
.nav-inner{max-width:1320px;margin:0 auto;padding:0 2rem;height:64px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo{display:flex;align-items:center;gap:0.5rem;font-weight:700;font-size:1.05rem;color:#1a2332;font-family:'Inter',sans-serif}
.logo-icon{width:36px;height:36px;background:#2dd4bf;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0}
.nav-links{display:flex;align-items:center;gap:0.05rem;flex-shrink:1;min-width:0}
.nav-btn{display:inline-flex;align-items:center;gap:0.3rem;padding:0.5rem 0.6rem;border-radius:6px;font-size:0.87rem;color:#475569;font-weight:500;transition:color .2s,background .2s;white-space:nowrap;flex-shrink:0}
.nav-btn:hover{color:#1a2332;background:#f1f5f9}
.nav-cta{white-space:nowrap;flex-shrink:0}

/* Language switcher */
.lang-switch{display:flex;align-items:center;gap:0.1rem;border:1px solid #e2e8f0;border-radius:8px;padding:0.15rem;flex-shrink:0}
.lang-opt{display:inline-flex;align-items:center;gap:0.25rem;padding:0.32rem 0.42rem;border-radius:6px;font-size:0.76rem;font-weight:600;color:#64748b;transition:background .15s,color .15s;line-height:1;white-space:nowrap}
.lang-opt:hover{background:#f1f5f9;color:#1a2332}
.lang-opt.active{background:#2dd4bf;color:#fff}
.lang-opt.active:hover{background:#14b8a6;color:#fff}
.nav-mobile-langs{margin-top:1.1rem;align-self:flex-start}
.nav-mobile-langs .lang-opt{padding:0.7rem 0.9rem;font-size:0.9rem}

/* Desktop "Procedures" dropdown */
.nav-dropdown{position:relative}
.nav-dropdown-toggle{cursor:pointer}
.nav-dropdown-toggle .chev{transition:transform .2s}
.nav-dropdown:hover .nav-dropdown-toggle .chev,
.nav-dropdown.open .nav-dropdown-toggle .chev{transform:rotate(180deg)}
.nav-dropdown-menu{position:absolute;top:100%;left:0;min-width:230px;background:#fff;border:1px solid #e2e8f0;border-radius:10px;box-shadow:0 12px 32px rgba(15,35,56,0.12);padding:0.4rem;opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .18s,transform .18s,visibility .18s;z-index:1001}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown-menu a{display:block;padding:0.6rem 0.8rem;border-radius:6px;font-size:0.9rem;color:#475569;font-weight:500;transition:background .15s,color .15s}
.nav-dropdown-menu a:hover{background:#f1f5f9;color:#1a2332}

/* Hamburger toggle (mobile/tablet) */
.nav-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;flex-shrink:0;border:1px solid #e2e8f0;border-radius:8px;background:#fff;padding:0 11px}
.nav-toggle span{display:block;width:100%;height:2px;background:#1a2332;border-radius:2px;transition:transform .25s,opacity .2s}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile dropdown panel */
.nav-mobile{display:none;flex-direction:column;background:#fff;border-top:1px solid #e2e8f0;padding:0.75rem 2rem 1.25rem;box-shadow:0 16px 28px rgba(15,35,56,0.1);max-height:calc(100vh - 64px);overflow-y:auto}
.nav-mobile.open{display:flex}
.nav-mobile-link{padding:0.7rem 0.25rem;font-size:0.98rem;font-weight:500;color:#1a2332;border-bottom:1px solid #f1f5f9}
.nav-mobile-link:hover{color:#2dd4bf}
.nav-mobile-link.sub{padding-left:1rem;font-weight:400;font-size:0.92rem;color:#475569}
.nav-mobile-heading{font-size:0.72rem;letter-spacing:0.12em;text-transform:uppercase;color:#94a3b8;font-weight:600;padding:0.9rem 0.25rem 0.35rem}
.nav-mobile-cta{margin-top:1.1rem;text-align:center;padding:0.9rem;font-size:0.95rem}

/* ===== HERO ===== */
.hero-section{min-height:100vh;background:linear-gradient(135deg,#0f2338 0%,#1a3a4a 50%,#0d2d35 100%);display:flex;flex-direction:column;justify-content:center;padding:110px 2rem 80px;position:relative;overflow:hidden}
.hero-bg-icon{position:absolute;right:2%;top:4%;width:420px;height:420px;opacity:0.04;color:#2dd4bf;pointer-events:none}
.hero-bg-icon svg{width:100%;height:100%}
.hero-content{max-width:760px;position:relative;z-index:1}
.hero-content .overline{color:#2dd4bf;margin-bottom:1rem}
.hero-content h1{color:#fff;margin-bottom:1.25rem}
.hero-sub{font-size:1.2rem;color:#94a3b8;margin-bottom:1.75rem;max-width:620px}
.hero-signals{list-style:none;display:flex;flex-wrap:wrap;gap:0.75rem 1.75rem;margin-bottom:2rem}
.hero-signals li{display:flex;align-items:center;gap:0.5rem;color:#cbd5e1;font-size:0.9rem}
.hero-signals li svg{color:#2dd4bf;flex-shrink:0}
.hero-signals a{color:#cbd5e1;transition:color .2s}
.hero-signals a:hover{color:#2dd4bf}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:1rem}
.btn-whatsapp-outline{display:inline-flex;align-items:center;justify-content:center;gap:0.55rem;padding:0.85rem 1.6rem;border-radius:8px;border:1.5px solid rgba(37,211,102,0.55);color:#fff;font-size:1rem;font-weight:500;transition:background .2s,border-color .2s;min-height:48px}
.btn-whatsapp-outline svg{color:#25d366;flex-shrink:0}
.btn-whatsapp-outline:hover{background:rgba(37,211,102,0.12);border-color:#25d366}
.hero-microcopy{margin-top:1.25rem;font-size:0.82rem;color:#64748b}
.hero-scroll-hint{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);color:#64748b;animation:bounce 2s infinite}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ===== CONVERSION TRUST BAR ===== */
.conversion-bar{background:#0c1c2c;border-top:1px solid rgba(255,255,255,0.06);border-bottom:1px solid rgba(255,255,255,0.06);padding:1.15rem 2rem}
.conversion-bar-items{max-width:1200px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:center;gap:0.85rem 2.25rem}
.conversion-bar-item{display:flex;align-items:center;gap:0.5rem;color:#cbd5e1;font-size:0.85rem}
.conversion-bar-item svg{color:#2dd4bf;flex-shrink:0}

/* ===== TRUST STRIP ===== */
.trust-strip{background:#f8fafc;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0;padding:1.25rem 0}
.trust-items{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center}
.trust-item{display:flex;align-items:center;gap:0.5rem;font-size:0.85rem;color:#64748b}
.trust-item svg{color:#2dd4bf;flex-shrink:0}

/* ===== ABOUT ===== */
.about-section{padding:6rem 2rem}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.about-left h2{margin-top:0.5rem}
.about-right p{color:#475569;margin-bottom:1rem;font-size:1.0rem}
.about-right p:last-child{margin-bottom:0}

/* ===== FOUNDATION ===== */
.foundation-section{padding:5rem 2rem;background:#f8fafc}
.foundation-section h2{text-align:center;margin-bottom:0.5rem}
.foundation-section .section-sub{text-align:center;margin-bottom:3rem}
.foundation-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem}
.foundation-card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:1.75rem}
.card-label{font-size:0.78rem;text-transform:uppercase;letter-spacing:0.1em;color:#2dd4bf;font-weight:600;margin-bottom:0.75rem}
.foundation-card p{color:#475569;font-size:0.95rem}
.foundation-card strong{color:#1a2332}

/* ===== SERVICES ===== */
.services-section{padding:6rem 2rem}
.services-section h2{text-align:center}
.services-section .section-sub{text-align:center;margin-bottom:3.5rem}
.services-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.service-card{display:block;background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:2rem;transition:all .25s;color:inherit}
.service-card:hover{border-color:#2dd4bf;box-shadow:0 4px 24px rgba(45,212,191,0.1);transform:translateY(-2px)}
.active-card{border-color:#2dd4bf;box-shadow:0 4px 24px rgba(45,212,191,0.12)}
.service-card-inner{display:flex;gap:1.25rem}
.service-icon{width:52px;height:52px;border:1px solid #e2e8f0;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#1a2332}
.service-content{flex:1}
.service-content h3{margin-bottom:0.75rem;font-size:1.2rem;color:#1a2332}
.service-content h3 .arrow{color:#2dd4bf}
.service-content p{color:#64748b;font-size:0.93rem;margin-bottom:1rem;line-height:1.6}
.service-tags{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1rem}
.tag{display:inline-block;border:1px solid #e2e8f0;border-radius:6px;padding:0.25rem 0.65rem;font-size:0.82rem;color:#475569}
.service-price{color:#2dd4bf;font-weight:600;font-size:0.95rem}

/* ===== CONSULTATION ===== */
.consultation-section{background:linear-gradient(135deg,#0f2338 0%,#1a3a4a 100%);padding:6rem 2rem}
.consultation-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:5rem;align-items:start}
.consultation-left .overline{margin-bottom:1rem}
.consultation-left h2{margin-bottom:1.25rem}
.consultation-left p{margin-bottom:1.5rem;line-height:1.7;font-size:0.97rem}
.consult-features{list-style:none;margin-bottom:1rem}
.consult-features li{color:#cbd5e1;padding:0.3rem 0;font-size:0.95rem}
.check{color:#2dd4bf;margin-right:0.5rem;font-weight:700}
.consult-note{font-size:0.8rem;color:#64748b;font-style:italic}
.consultation-right{background:#fff;border-radius:16px;padding:2.5rem;box-shadow:0 20px 60px rgba(0,0,0,0.2)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.2rem}
.form-group label{display:block;font-size:0.85rem;font-weight:600;color:#374151;margin-bottom:0.4rem}
.form-group input,.form-group select,.form-group textarea{width:100%;border:1px solid #e2e8f0;border-radius:8px;padding:0.7rem 0.9rem;font-size:0.93rem;color:#1a2332;transition:border-color .2s;outline:none;background:#fff}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:#2dd4bf;box-shadow:0 0 0 3px rgba(45,212,191,0.1)}
.form-group textarea{resize:vertical}
.form-section-title{font-weight:700;font-size:1rem;color:#1a2332;margin-bottom:0.25rem;margin-top:0.5rem}
.form-section-note{font-size:0.85rem;color:#64748b;margin-bottom:1rem}
.form-sub-label{font-weight:600;font-size:0.85rem;color:#374151;display:block;margin-bottom:0.5rem}
.radio-label{display:flex;align-items:center;gap:0.5rem;font-size:0.9rem;color:#475569;margin-bottom:0.4rem;cursor:pointer}
.radio-label input{width:auto;margin:0;accent-color:#2dd4bf}
.optional-support-box{background:#f8fafc;border:1px solid #e2e8f0;border-radius:8px;padding:0.9rem 1rem;margin-top:0.75rem;margin-bottom:1.25rem;font-size:0.85rem;color:#64748b}
.optional-support-box strong{color:#1a2332}
.form-divider{border:none;border-top:1px solid #e2e8f0;margin:1.5rem 0}
.disclaimer-section h4{font-size:1rem;color:#1a2332;margin-bottom:0.75rem}
.disclaimer-section p{font-size:0.82rem;color:#64748b;margin-bottom:0.6rem;line-height:1.6}
.disclaimer-box{background:#f8fafc;border:1px solid #e2e8f0;border-radius:8px;padding:1rem;margin:1rem 0}
.disclaimer-box h5{font-size:0.9rem;color:#1a2332;margin-bottom:0.4rem}
.checkbox-label{display:flex;align-items:flex-start;gap:0.6rem;font-size:0.82rem;color:#64748b;cursor:pointer;margin-bottom:0.5rem}
.checkbox-label input{margin-top:3px;accent-color:#2dd4bf;flex-shrink:0}
.form-confidential{text-align:center;font-size:0.82rem;color:#94a3b8;margin-top:0.75rem}

/* ===== TIERS ===== */
.tiers-section{padding:6rem 2rem}
.tiers-section h2{text-align:center}
.tiers-section .section-sub{text-align:center;margin-bottom:1.5rem}
.tiers-trustline{text-align:center;color:#64748b;font-size:0.9rem;margin:0 auto 2.5rem;max-width:720px}
.tiers-trustline .dot{color:#2dd4bf;margin:0 0.5rem}
.tiers-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;align-items:start}
.tier-card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:2.5rem;position:relative}
.tier-gold{border:1.5px solid rgba(45,212,191,0.6);box-shadow:0 4px 24px rgba(45,212,191,0.08)}
.tier-featured{border-color:#1a3a3a;border-width:2px}
.tier-badge{position:absolute;top:-1px;right:2rem;background:#1a3a3a;color:#fff;font-size:0.78rem;font-weight:500;padding:0.4rem 0.85rem;border-radius:0 0 8px 8px}
.tier-card h3{font-size:1.5rem;margin-bottom:0.5rem}
.tier-desc{color:#64748b;font-size:0.93rem;margin-bottom:1.5rem}
.tier-label{font-size:0.7rem;text-transform:uppercase;letter-spacing:0.12em;color:#2dd4bf;font-weight:600;margin-bottom:0.25rem}
.tier-price{font-family:'Playfair Display',serif;font-size:2.2rem;color:#1a2332;margin-bottom:1.5rem}
.tier-includes{font-size:0.85rem;color:#64748b;margin-bottom:0.75rem;font-style:italic}
.tier-features{list-style:none;margin-bottom:2rem}
.tier-features li{display:flex;align-items:center;gap:0.6rem;padding:0.4rem 0;font-size:0.93rem;color:#475569;border-bottom:1px solid #f1f5f9}
.tier-features li:last-child{border-bottom:none}
.check-teal{color:#2dd4bf;font-weight:700;flex-shrink:0}
.tier-note{text-align:center;color:#94a3b8;font-size:0.85rem;margin-top:2rem;font-style:italic}

/* ===== HOW IT WORKS ===== */
.how-section{padding:6rem 2rem;background:#f8fafc}
.how-section h2{text-align:center}
.how-section .section-sub{text-align:center;margin-bottom:4rem}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.step-card{text-align:center}
.step-icon-wrap{position:relative;display:inline-block;margin-bottom:1.25rem}
.step-num{position:absolute;top:-8px;right:-8px;background:#1a2332;color:#fff;font-size:0.7rem;font-weight:700;width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center}
.step-icon{width:64px;height:64px;background:#fff;border:1px solid #e2e8f0;border-radius:14px;display:flex;align-items:center;justify-content:center;color:#1a2332}
.step-card h4{margin-bottom:0.5rem;font-size:1rem}
.step-card p{font-size:0.9rem;color:#64748b}

/* ===== PRICING ===== */
.pricing-section{background:linear-gradient(135deg,#0f2338 0%,#1a3a4a 100%);padding:6rem 2rem;text-align:center}
.pricing-section h2{margin-bottom:0.75rem}
.pricing-section .white-muted{margin-bottom:3rem}
.price-table{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:12px;overflow:hidden;max-width:800px;margin:0 auto}
.price-row{display:flex;justify-content:space-between;align-items:center;padding:1.1rem 1.75rem;border-bottom:1px solid rgba(255,255,255,0.08);color:#e2e8f0;font-size:0.95rem}
.price-row:last-child{border-bottom:none}
.price-val{color:#2dd4bf;font-weight:600}
.price-note{color:#64748b;font-size:0.85rem;margin-top:1.5rem;font-style:italic}

/* ===== SAFETY ===== */
.safety-section{padding:6rem 2rem;text-align:center}
.safety-inner h2{margin-bottom:1rem}
.safety-divider{width:60px;height:3px;background:#2dd4bf;margin:0 auto 1.5rem}
.safety-text{max-width:680px;margin:0 auto 3.5rem;color:#64748b;line-height:1.8}
.safety-features{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.safety-feature{text-align:center}
.safety-icon{width:64px;height:64px;border:1px solid #e2e8f0;border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;color:#1a2332}
.safety-feature h4{margin-bottom:0.5rem}
.safety-feature p{font-size:0.9rem;color:#64748b}

/* ===== TESTIMONIALS ===== */
.testimonials-section{padding:6rem 2rem;background:#f8fafc}
.testimonials-section h2{text-align:center;margin-bottom:0.5rem}
.testimonials-section .section-sub{text-align:center;margin-bottom:3rem}
.testimonial-slider{max-width:820px;margin:0 auto 3.5rem}
.testimonial-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:2.5rem 3rem;margin-bottom:1.5rem;position:relative}
.testimonial-card::before{content:'"';font-family:'Playfair Display',serif;font-size:5rem;color:#e2e8f0;position:absolute;top:0.5rem;left:1.5rem;line-height:1}
blockquote{font-family:'Playfair Display',serif;font-style:italic;font-size:1.05rem;color:#374151;line-height:1.8;padding-top:1.5rem}
.testimonial-footer{display:flex;justify-content:space-between;align-items:center;margin-top:1.5rem;padding-top:1.25rem;border-top:1px solid #f1f5f9}
.testimonial-name{font-weight:700;color:#1a2332;font-size:0.95rem}
.testimonial-detail{font-size:0.82rem;color:#94a3b8;margin-top:0.2rem}
.testimonial-badge{background:#f1f5f9;color:#475569;font-size:0.78rem;font-weight:500;padding:0.35rem 0.75rem;border-radius:20px;white-space:nowrap}
.testimonial-controls{display:flex;justify-content:space-between;align-items:center}
.testi-prev,.testi-next{display:flex;align-items:center;gap:0.4rem;font-size:0.9rem;color:#64748b;transition:color .2s;min-height:44px;padding:0 0.5rem}
.testi-prev:hover,.testi-next:hover{color:#1a2332}
.testi-dots{display:flex;gap:0.4rem}
.testi-dot{width:8px;height:8px;border-radius:50%;background:#e2e8f0;cursor:pointer;transition:background .2s}
.testi-dot.active{background:#2dd4bf}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;max-width:820px;margin:0 auto}
.stat-item{text-align:center;padding:1.5rem 1rem;border-bottom:3px solid #e2e8f0;min-width:0}
.stat-num{font-family:'Playfair Display',serif;font-size:2.2rem;color:#1a2332;margin-bottom:0.25rem}
.stat-label{font-size:0.82rem;color:#94a3b8;text-transform:uppercase;letter-spacing:0.08em;overflow-wrap:break-word;hyphens:auto}

/* ===== FIT SECTION ===== */
.fit-section{padding:6rem 2rem}
.fit-section h2{text-align:center;margin-bottom:0.5rem}
.fit-section .section-sub{text-align:center;margin-bottom:3rem}
.fit-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;max-width:960px;margin:0 auto}
.fit-card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:2rem}
.fit-card h4{font-size:0.95rem;color:#64748b;font-weight:600;margin-bottom:1rem;text-transform:uppercase;letter-spacing:0.05em;font-family:'Inter',sans-serif}
.fit-list{list-style:none}
.fit-list li{display:flex;align-items:flex-start;gap:0.6rem;padding:0.5rem 0;font-size:0.93rem;color:#475569;border-bottom:1px solid #f1f5f9}
.fit-list li:last-child{border-bottom:none}
.fit-check{color:#2dd4bf;font-weight:700;flex-shrink:0;margin-top:1px}
.fit-x{color:#ef4444;font-weight:700;flex-shrink:0;margin-top:1px}
.fit-note{text-align:center;color:#64748b;font-size:0.9rem;margin-top:2rem;font-style:italic}

/* ===== FOOTER ===== */
.footer{background:#0f2338;color:#94a3b8;padding:4rem 2rem 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:4rem;padding-bottom:3rem}
.footer-brand .logo-text{color:#fff}
.footer-hq{font-size:0.88rem;margin:1.25rem 0;line-height:1.8;color:#64748b}
.footer-contact{font-size:0.88rem;color:#64748b;display:flex;align-items:center;gap:0.5rem;margin-bottom:0.5rem}
.footer-contact svg{color:#2dd4bf;flex-shrink:0}
.footer-contact a{color:#64748b;transition:color .2s}
.footer-contact a:hover{color:#2dd4bf}
.footer-col h5{font-family:'Inter',sans-serif;font-size:0.88rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:0.1em;margin-bottom:1rem}
.footer-col a{display:block;font-size:0.88rem;color:#64748b;margin-bottom:0.6rem;transition:color .2s}
.footer-col a:hover{color:#2dd4bf}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:1.5rem 0;display:flex;justify-content:space-between;font-size:0.82rem;color:#475569}

/* ===== MODAL ===== */
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center}
.modal-box{background:#fff;border-radius:16px;padding:3rem;max-width:440px;width:90%;text-align:center}
.modal-icon{width:60px;height:60px;background:#d1fae5;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:#059669;margin:0 auto 1.25rem}
.modal-box h3{margin-bottom:0.75rem;color:#1a2332}
.modal-box p{color:#64748b;margin-bottom:1.5rem;font-size:0.95rem}

/* ===== FLOATING WHATSAPP & CALL WIDGET ===== */
.float-widget{position:fixed;right:1.25rem;bottom:1.25rem;z-index:1200;display:flex;flex-direction:column;align-items:flex-end;gap:0.6rem}
.float-btn{display:inline-flex;align-items:center;gap:0.55rem;padding:0.75rem 1.15rem;border-radius:999px;font-size:0.9rem;font-weight:600;color:#fff;box-shadow:0 8px 24px rgba(15,35,56,0.28);transition:transform .2s,box-shadow .2s;min-height:48px}
.float-btn:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(15,35,56,0.34)}
.float-btn svg{flex-shrink:0}
.float-btn.whatsapp{background:#25d366}
.float-btn.call{background:#1a3a3a}

/* Full-width sticky Call/WhatsApp bar (mobile only) */
.mobile-cta-bar{display:none;position:fixed;left:0;right:0;bottom:0;z-index:1200;box-shadow:0 -4px 16px rgba(15,35,56,0.18)}
.mobile-cta-bar a{flex:1;display:flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.9rem 0.5rem;font-size:0.95rem;font-weight:600;color:#fff;min-height:52px}
.mobile-cta-bar a svg{flex-shrink:0}
.mobile-cta-bar .call{background:#1a3a3a}
.mobile-cta-bar .whatsapp{background:#25d366}

/* ===== CONSULTATION POPUP ===== */
.consult-popup{position:fixed;right:1.25rem;bottom:10rem;z-index:1190;background:#fff;border:1px solid #e2e8f0;border-radius:14px;box-shadow:0 20px 50px rgba(15,35,56,0.25);padding:1.35rem 1.25rem 1.15rem;max-width:320px;width:calc(100vw - 2.5rem);opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .3s,transform .3s,visibility .3s}
.consult-popup.visible{opacity:1;visibility:visible;transform:none}
.consult-popup h4{font-family:'Inter',sans-serif;font-size:1rem;color:#1a2332;margin-bottom:0.4rem;padding-right:1.5rem}
.consult-popup p{font-size:0.85rem;color:#64748b;margin-bottom:1rem;line-height:1.55}
.popup-actions{display:flex;gap:0.6rem}
.popup-btn{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:0.4rem;padding:0.6rem 0.75rem;border-radius:8px;font-size:0.85rem;font-weight:600;color:#fff;min-height:44px;transition:opacity .2s}
.popup-btn:hover{opacity:0.88}
.popup-btn.whatsapp{background:#25d366}
.popup-btn.call{background:#1a3a3a}
.popup-close{position:absolute;top:0.45rem;right:0.5rem;width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:8px;color:#94a3b8;font-size:1.15rem;line-height:1;transition:background .15s,color .15s}
.popup-close:hover{background:#f1f5f9;color:#1a2332}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:1300;background:#0f2338;color:#cbd5e1;padding:1.1rem 2rem;display:flex;flex-wrap:wrap;align-items:center;gap:0.85rem 2rem;box-shadow:0 -6px 24px rgba(0,0,0,0.3);border-top:1px solid rgba(255,255,255,0.08)}
.cookie-banner p{flex:1 1 340px;font-size:0.85rem;line-height:1.55;margin:0}
.cookie-banner a{color:#2dd4bf;text-decoration:underline}
.cookie-banner a:hover{color:#5eead4}
.cookie-actions{display:flex;flex-wrap:wrap;gap:0.6rem}
.cookie-btn{padding:0.6rem 1.15rem;border-radius:8px;font-size:0.85rem;font-weight:600;min-height:44px;transition:background .2s,border-color .2s}
.cookie-btn.accept{background:#2dd4bf;color:#0f2338}
.cookie-btn.accept:hover{background:#5eead4}
.cookie-btn.reject{background:transparent;border:1px solid rgba(255,255,255,0.35);color:#fff}
.cookie-btn.reject:hover{border-color:#fff}

/* ===== SERVICE DETAIL PAGES ===== */
.detail-hero{min-height:520px;background:linear-gradient(135deg,#0f2338 0%,#1a3a4a 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:120px 2rem 60px;position:relative}
.detail-hero-content{max-width:760px}
.detail-hero h1{color:#fff;margin-bottom:1rem}
.detail-hero .hero-sub{color:#94a3b8;font-size:1.1rem;margin-bottom:0.75rem;max-width:560px}
.price-badge{display:inline-block;border:1px solid rgba(45,212,191,0.4);border-radius:8px;padding:0.5rem 1rem;font-size:0.95rem;color:#2dd4bf;margin-bottom:1.5rem}
.price-badge span{color:#64748b;font-size:0.8rem;margin-left:0.4rem}
.detail-section{padding:5rem 2rem}
.detail-section h2{margin-bottom:1rem}
.detail-section p{color:#64748b;margin-bottom:1.25rem;line-height:1.8}
.bullet-list{list-style:none;margin-bottom:2rem}
.bullet-list li{display:flex;align-items:flex-start;gap:0.75rem;padding:0.5rem 0;color:#475569;font-size:0.95rem}
.bullet-dot{width:8px;height:8px;border-radius:50%;background:#2dd4bf;flex-shrink:0;margin-top:8px}
.risks-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.risk-card{background:#fff8f0;border:1px solid #fed7aa;border-radius:10px;padding:1rem;font-size:0.9rem;color:#92400e;display:flex;align-items:flex-start;gap:0.6rem}
.risk-icon{color:#f59e0b;flex-shrink:0;font-size:1rem}
.procedure-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:2rem;margin-bottom:1.5rem;display:grid;grid-template-columns:180px 1fr;gap:2rem;align-items:start}
.proc-diagram{background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px;height:160px;display:flex;align-items:center;justify-content:center;color:#2dd4bf}
.proc-num{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background:#2dd4bf;color:#fff;border-radius:6px;font-weight:700;font-size:0.9rem;margin-right:0.6rem;flex-shrink:0}
.proc-header{display:flex;align-items:center;margin-bottom:0.75rem}
.proc-header h3{font-size:1.15rem}
.proc-tags{display:flex;flex-wrap:wrap;gap:0.5rem;margin:0.75rem 0}
.proc-tag{display:inline-flex;align-items:center;gap:0.35rem;border:1px solid #e2e8f0;border-radius:20px;padding:0.2rem 0.7rem;font-size:0.8rem;color:#475569}
.proc-tag::before{content:'';width:6px;height:6px;border-radius:50%;background:#2dd4bf;flex-shrink:0}
.proc-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:0.75rem}
.proc-info-box{background:#f8fafc;border-radius:8px;padding:0.85rem 1rem}
.proc-info-box .pib-label{font-size:0.75rem;color:#94a3b8;margin-bottom:0.3rem;font-weight:500}
.proc-info-box .pib-value{font-size:0.9rem;color:#1a2332;font-weight:600}
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.benefit-item{background:#f0fdf4;border:1px solid #bbf7d0;border-radius:10px;padding:1rem;font-size:0.9rem;color:#166534;display:flex;align-items:flex-start;gap:0.6rem}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.why-item{background:#f8fafc;border-radius:10px;padding:1.25rem;font-size:0.9rem;color:#475569}
.why-item strong{display:block;color:#1a2332;margin-bottom:0.3rem}
.cta-banner{background:linear-gradient(135deg,#0f2338,#1a3a4a);padding:4rem 2rem;text-align:center}
.cta-banner h2{color:#fff;margin-bottom:0.75rem}
.cta-banner p{color:#94a3b8;margin-bottom:2rem}
.detail-alert{font-size:0.82rem;background:#fffbeb;border:1px solid #fde68a;border-radius:8px;padding:0.75rem 1rem;color:#92400e;margin-bottom:0.75rem}

/* ===== LEGAL PAGES ===== */
.legal-section{padding:120px 2rem 5rem;max-width:820px}
.legal-section h1{font-size:2.2rem;margin-bottom:0.5rem}
.legal-section .legal-updated{color:#94a3b8;font-size:0.85rem;margin-bottom:2.5rem}
.legal-section h2{font-size:1.35rem;margin:2.25rem 0 0.75rem}
.legal-section p,.legal-section li{color:#475569;font-size:0.95rem;line-height:1.75;margin-bottom:0.75rem}
.legal-section ul{padding-left:1.25rem;margin-bottom:1rem}

/* ===== ANIMATIONS ===== */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.fade-in.visible{opacity:1;transform:none}

/* ===== RESPONSIVE ===== */

/* Keep the mobile panel from leaking onto desktop */
@media(min-width:1200px){
  .nav-mobile{display:none !important}
}

/* --- Collapse nav into hamburger menu ---
   Threshold is wider than a typical nav breakpoint because German/Danish
   nav labels ("Koordineringsniveauer", "So funktioniert es") need more
   horizontal room than English to render on one line. */
@media(max-width:1199px){
  .nav-links{display:none}
  .nav-inner .lang-switch{display:none}
  .nav-toggle{display:flex}
  .nav-cta{margin-left:auto}
}

/* --- Laptop / small desktop --- */
@media(max-width:1100px){
  .about-grid{gap:3.5rem}
  .consultation-grid{gap:3.5rem}
}

/* --- Tablet landscape --- */
@media(max-width:1024px){
  .about-section,.foundation-section,.services-section,.consultation-section,
  .tiers-section,.how-section,.pricing-section,.safety-section,
  .testimonials-section,.fit-section{padding-top:5rem;padding-bottom:5rem}
  .steps-grid{grid-template-columns:repeat(2,1fr);gap:2.5rem 2rem}
  .foundation-cards{gap:1.25rem}
}

/* --- Tablet portrait --- */
@media(max-width:900px){
  .about-grid,.consultation-grid{grid-template-columns:1fr;gap:2.75rem}
  .foundation-cards,.tiers-grid,.services-grid,.fit-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .safety-features{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem 3rem}
  .footer-brand{grid-column:1 / -1}
  .procedure-card{grid-template-columns:1fr;gap:1.25rem}
  .risks-grid,.benefits-grid,.why-grid{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .detail-hero{min-height:440px;padding:110px 2rem 56px}
}

/* --- Large phone --- */
@media(max-width:768px){
  .about-section,.foundation-section,.services-section,.consultation-section,
  .tiers-section,.how-section,.pricing-section,.safety-section,
  .testimonials-section,.fit-section{padding-top:4rem;padding-bottom:4rem}
  body{padding-bottom:52px} /* room for the sticky Call/WhatsApp bar */
  .nav-cta{display:none}
  .hero-section{min-height:auto;padding:104px 2rem 72px}
  .hero-bg-icon{width:300px;height:300px;right:-12%;top:2%}
  .hero-sub{font-size:1.1rem}
  .hero-cta-row{flex-direction:column;align-items:stretch}
  .hero-cta-row .btn-teal,.hero-cta-row .btn-whatsapp-outline{width:100%;text-align:center}
  .consultation-right{padding:1.75rem}
  .tier-card{padding:2rem}
  .testimonial-card{padding:2rem 1.75rem}
  .testimonial-card::before{font-size:4rem;left:1rem}
  /* Combine floating elements on small screens: sticky bar replaces the widget */
  .float-widget{display:none}
  .mobile-cta-bar{display:flex}
  .consult-popup{right:0.75rem;bottom:calc(52px + 0.85rem);width:calc(100vw - 1.5rem)}
  .cookie-banner{bottom:52px;padding:1rem 1.25rem;flex-direction:column;align-items:stretch;gap:0.75rem}
  .cookie-banner p{flex:1 1 auto}
  .cookie-actions{width:100%}
  .cookie-actions .cookie-btn{flex:1}
}

/* --- Phone --- */
@media(max-width:600px){
  h1{font-size:2rem}
  h2{font-size:1.6rem}
  h1,h2,h3,h4,.overline,.stat-label{overflow-wrap:break-word;hyphens:auto}
  .container{padding:0 1.25rem}
  .nav-mobile{padding-left:1.25rem;padding-right:1.25rem}
  .about-section,.foundation-section,.services-section,.consultation-section,
  .tiers-section,.how-section,.pricing-section,.safety-section,
  .testimonials-section,.fit-section{padding-left:1.25rem;padding-right:1.25rem}
  .hero-section{padding:100px 1.5rem 64px}
  .hero-signals{gap:0.65rem 1.25rem}
  .stats-grid{grid-template-columns:1fr 1fr}
  .risks-grid,.benefits-grid,.why-grid{grid-template-columns:1fr}
  .proc-info-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2.25rem}
  .footer-brand{grid-column:auto}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center}
  .testimonial-controls{flex-wrap:wrap;gap:1rem;justify-content:center}
  .price-row{flex-direction:column;align-items:flex-start;gap:0.3rem}
  .tier-badge{position:static;display:inline-block;border-radius:8px;margin-bottom:1rem}
  .tier-card{padding:1.75rem}
  .tiers-trustline .dot{margin:0 0.35rem}
  .consultation-right{padding:1.5rem}
  .service-card{padding:1.5rem}
  .modal-box{padding:2rem 1.5rem}
  .legal-section{padding-top:100px}
}

/* --- Small phone --- */
@media(max-width:420px){
  .steps-grid{grid-template-columns:1fr;gap:2rem}
  .stats-grid{gap:0.5rem}
  .service-card-inner{flex-direction:column;gap:1rem}
  .trust-items{gap:0.85rem 1.25rem}
  .conversion-bar-items{flex-direction:column;align-items:flex-start;gap:0.6rem}
  .tiers-trustline{display:flex;flex-direction:column;align-items:center;gap:0.35rem}
  .tiers-trustline .dot{display:none}
  .popup-actions{flex-direction:column}
}
