/*
 * e-Vize Hizmetleri — Vanilla visual system
 * Design reminder: editorial consultancy; midnight navy #071a2d; amber #f4b51c;
 * Playfair Display + Inter; asymmetric layouts; subtle plus-grid texture; restrained motion.
 */

:root {
  --navy-950: #04101c;
  --navy-900: #071a2d;
  --navy-850: #0a2137;
  --navy-800: #102b44;
  --navy-700: #173754;
  --mist: #eef3f7;
  --paper: #f8fafb;
  --ink: #10283d;
  --muted: #647486;
  --line: rgba(12, 42, 67, .12);
  --line-dark: rgba(216, 231, 242, .15);
  --amber: #f4b51c;
  --amber-deep: #d39400;
  --whatsapp: #27c576;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --shell: 1180px;
  --shadow: 0 18px 50px rgba(3, 17, 30, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body:has(.page-main--dark) { background: var(--navy-900); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .65; }
::selection { color: var(--navy-950); background: var(--amber); }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section--light { background: var(--paper); }
.section--mist { background: var(--mist); }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--amber-deep); font-size: 11px; font-weight: 800; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--dark { color: var(--amber); }
.eyebrow svg { stroke-width: 2.4; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.025em; }
h1, h2 { font-family: var(--serif); }
h2 { font-size: clamp(36px, 5vw, 56px); line-height: 1.08; }
h3 { line-height: 1.2; }
p { color: var(--muted); }
.section-intro { max-width: 620px; }
.section-intro h2 { margin: 17px 0 17px; }
.section-intro p { max-width: 510px; margin-bottom: 0; font-size: 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 51px; padding: 0 22px; border: 1px solid transparent; border-radius: 6px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; transition: transform .16s var(--ease-out), box-shadow .18s var(--ease-out), background-color .18s var(--ease-out), border-color .18s var(--ease-out); }
.button:hover { transform: translateY(-3px); }
.button:active { transform: scale(.97); }
.button--amber { color: var(--navy-950); background: var(--amber); box-shadow: 0 10px 25px rgba(244, 181, 28, .2); }
.button--amber:hover { background: #ffc83c; box-shadow: 0 13px 29px rgba(244, 181, 28, .3); }
.button--navy { color: var(--white); background: var(--navy-900); }
.button--navy:hover { background: var(--navy-800); }
.button--whatsapp { color: #fff; background: var(--whatsapp); box-shadow: 0 10px 25px rgba(39, 197, 118, .16); }
.button--outline { color: var(--white); border-color: rgba(255,255,255,.3); }
.button--outline:hover { border-color: var(--amber); color: var(--amber); }
.button--small { min-height: 38px; padding: 0 16px; font-size: 11px; }
.button--wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.text-link svg, .table-link svg { transition: transform .18s var(--ease-out); }
.text-link:hover svg, .table-link:hover svg { transform: translateX(4px); }

/* Header */
.site-header { position: fixed; z-index: 20; top: 0; left: 0; right: 0; border-bottom: 1px solid transparent; color: #e8f1f7; transition: background-color .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.site-header.is-scrolled { background: rgba(7, 26, 45, .93); border-color: var(--line-dark); box-shadow: 0 10px 30px rgba(2, 13, 24, .16); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; overflow: hidden; background: var(--amber); border-radius: 4px; }
.brand-mark__letters { color: var(--navy-950); font-family: var(--serif); font-size: 17px; font-weight: 800; letter-spacing: -.1em; transform: translateX(-1px); }
.brand-name { display: flex; flex-direction: column; line-height: .95; }
.brand-name strong { font-family: var(--serif); font-size: 16px; letter-spacing: -.04em; }
.brand-name small { margin-top: 4px; color: var(--amber); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; margin-right: 46px; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 8px 0; color: rgba(236, 243, 249, .76); border: 0; background: transparent; font-size: 12px; transition: color .18s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--amber); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: -16px; display: grid; width: 192px; padding: 8px; border: 1px solid var(--line-dark); border-radius: 7px; background: rgba(7, 26, 45, .98); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .18s var(--ease-out), transform .18s var(--ease-out); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-link { padding: 10px; color: rgba(236, 243, 249, .75); border-radius: 4px; font-size: 12px; }
.dropdown-link:hover { color: var(--amber); background: rgba(244,181,28,.08); }
.header-actions { display: flex; align-items: center; gap: 19px; }
.header-phone { display: inline-flex; align-items: center; gap: 6px; color: rgba(236,243,249,.78); font-size: 11px; font-weight: 700; white-space: nowrap; }
.header-phone:hover { color: var(--amber); }
.mobile-menu-button, .mobile-nav { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 76% 45%, rgba(22, 64, 98, .46), transparent 34%), var(--navy-900); }
.hero::before { position: absolute; inset: 0; opacity: .28; pointer-events: none; background-image: linear-gradient(rgba(200,230,248,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(200,230,248,.08) 1px, transparent 1px); background-size: 48px 48px; content: ""; }
.hero__grain { position: absolute; inset: 0; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .94fr) minmax(390px, .76fr); gap: 78px; align-items: center; min-height: 742px; padding-top: 70px; padding-bottom: 120px; }
.hero-copy { max-width: 595px; }
.hero-copy h1 { max-width: 560px; margin: 23px 0 21px; color: var(--white); font-size: clamp(51px, 6.7vw, 76px); line-height: .98; }
.hero-copy h1 em, .page-hero h1 em, .country-hero h1 em, .dark-cta h2 em { color: var(--amber); font-style: normal; }
.hero-copy p { max-width: 520px; margin-bottom: 26px; color: rgba(232, 241, 247, .75); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.assurance-row { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 27px; color: rgba(236,243,249,.75); font-size: 10px; font-weight: 600; }
.assurance-row span { display: inline-flex; align-items: center; gap: 6px; }
.assurance-row svg { color: var(--amber); }
.proof-card { max-width: 414px; justify-self: end; padding: 26px 23px 24px; border: 1px solid rgba(164, 205, 232, .16); border-radius: 13px; background: linear-gradient(145deg, rgba(29, 65, 96, .78), rgba(13, 39, 64, .8)); box-shadow: 0 26px 65px rgba(0,0,0,.2); backdrop-filter: blur(8px); }
.proof-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 17px; color: var(--white); font-family: var(--serif); font-size: 17px; font-weight: 700; }
.proof-card__line { height: 1px; flex: 1; background: rgba(255,255,255,.16); }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.metric { padding: 13px 8px 12px; text-align: center; border: 1px solid rgba(174, 214, 236, .1); border-radius: 8px; background: rgba(47, 90, 125, .28); }
.metric strong { display: block; color: var(--amber); font-size: 21px; line-height: 1.1; }
.metric span { display: block; margin-top: 5px; color: rgba(224, 235, 244, .65); font-size: 9px; }
.proof-list { display: grid; gap: 9px; margin: 19px 0 0; padding: 0; list-style: none; color: rgba(225, 237, 246, .82); font-size: 11px; }
.proof-list li { display: flex; align-items: center; gap: 7px; }
.proof-list svg { flex: 0 0 auto; color: var(--amber); }
.wave { position: absolute; z-index: 1; right: -2%; bottom: -2px; left: -2%; height: 45px; background: var(--paper); clip-path: polygon(0 57%, 8% 70%, 16% 55%, 26% 73%, 36% 59%, 47% 77%, 58% 62%, 69% 78%, 81% 58%, 92% 73%, 100% 56%, 100% 100%, 0 100%); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .12s; }

/* Home sections */
.stats-layout, .trust-layout, .process-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: start; }
.stats-section { padding-top: 111px; padding-bottom: 94px; }
.stats-list { padding-top: 4px; border-top: 1px solid var(--line); }
.stat-line { display: flex; align-items: center; gap: 25px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.stat-line strong { min-width: 31px; color: var(--amber-deep); font-family: var(--serif); font-size: 20px; }
.stat-line span { color: var(--ink); font-weight: 700; }
.risk-section .section-intro { margin-bottom: 43px; }
.risk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 34px; }
.risk-card { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 25px 26px; border: 1px solid rgba(7,26,45,.08); background: rgba(255,255,255,.56); box-shadow: 0 7px 20px rgba(11, 33, 52, .03); }
.risk-card > span, .value-grid article > span { color: var(--amber-deep); font-family: var(--serif); font-size: 17px; font-weight: 700; }
.risk-card h3 { margin-bottom: 9px; font-size: 17px; }
.risk-card p { margin: 0; font-size: 13px; }
.country-section .section-intro { margin-bottom: 38px; }
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.country-card { overflow: hidden; border: 1px solid rgba(10,33,55,.1); background: var(--white); box-shadow: 0 12px 28px rgba(11, 33, 52, .06); transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out); }
.country-card:hover { transform: translateY(-7px); box-shadow: 0 22px 40px rgba(11,33,52,.14); }
.country-card__media { position: relative; height: 164px; overflow: hidden; background: radial-gradient(circle at 74% 30%, rgba(244,181,28,.22), transparent 22%), linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.country-card__media::after { position: absolute; inset: 0; opacity: .2; background: linear-gradient(135deg, transparent 40%, rgba(244,181,28,.8)); content: ""; }
.country-card__flag { position: absolute; z-index: 1; top: 20px; left: 21px; font-size: 30px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); }
.country-card__code { position: absolute; z-index: 1; right: 19px; bottom: 15px; color: rgba(255,255,255,.76); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.country-card__body { padding: 23px 22px 24px; }
.country-card__body h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 22px; }
.country-card__body p { min-height: 51px; margin-bottom: 18px; font-size: 12px; }
.price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-row span, .price-row strong { display: block; }
.price-row span { color: var(--muted); font-size: 9px; }
.price-row strong { margin-top: 4px; color: var(--navy-900); font-size: 15px; }
.price-row > div:last-child strong { color: var(--amber-deep); }
.trust-section { color: var(--white); background: var(--navy-900); }
.trust-section .section-intro h2, .trust-section .section-intro p { color: var(--white); }
.trust-section .section-intro p { color: rgba(232,241,247,.68); }
.trust-section .text-link { margin-top: 24px; color: var(--amber); }
.trust-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trust-points article { padding-top: 5px; }
.icon-bubble { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; color: var(--amber); border: 1px solid rgba(244,181,28,.32); border-radius: 50%; background: rgba(244,181,28,.08); }
.trust-points h3 { margin-bottom: 10px; color: var(--white); font-size: 16px; }
.trust-points p { margin: 0; color: rgba(232,241,247,.62); font-size: 12px; }
.start-section { padding-top: 75px; padding-bottom: 75px; }
.start-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 36px 42px; background: var(--white); border-left: 4px solid var(--amber); box-shadow: 0 13px 30px rgba(11,33,52,.06); }
.start-card h2 { margin: 12px 0 10px; font-size: 37px; }
.start-card p { margin: 0; }
.start-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; }
.start-actions .button--outline { color: var(--navy-900); border-color: var(--line); }
.start-actions .button--outline:hover { border-color: var(--navy-900); }
.phone-link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy-900); font-size: 12px; font-weight: 800; }

/* Inner pages */
.page-main--dark { background: var(--navy-900); }
.page-hero, .country-hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.page-hero::before, .country-hero::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(200,230,248,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(200,230,248,.22) 1px, transparent 1px); background-size: 52px 52px; content: ""; }
.page-hero__inner { position: relative; z-index: 1; min-height: 500px; padding-top: 173px; padding-bottom: 96px; }
.page-hero h1 { max-width: 730px; margin: 23px 0 20px; color: var(--white); font-size: clamp(52px, 7vw, 78px); line-height: .98; }
.page-hero p { max-width: 580px; margin: 0; color: rgba(232,241,247,.73); font-size: 16px; }
.country-hero { background: radial-gradient(circle at 82% 35%, rgba(22,64,98,.5), transparent 30%), var(--navy-900); }
.country-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 200px; gap: 80px; align-items: center; min-height: 550px; padding-top: 113px; padding-bottom: 83px; }
.country-hero h1 { max-width: 730px; margin: 23px 0 18px; color: var(--white); font-family: var(--serif); font-size: clamp(44px, 5.7vw, 68px); line-height: 1.04; }
.country-hero p { max-width: 560px; color: rgba(232,241,247,.74); font-size: 16px; }
.country-hero__badge { display: grid; place-items: center; width: 175px; height: 175px; justify-self: end; border: 1px solid rgba(244,181,28,.35); border-radius: 50%; background: rgba(9, 34, 57, .46); text-align: center; }
.country-hero__badge span, .country-hero__badge small { color: rgba(232,241,247,.65); font-size: 10px; }
.country-hero__badge strong { color: var(--amber); font-family: var(--serif); font-size: 50px; line-height: 1; }
.country-hero__badge small { margin-top: -25px; }
.pricing-section .section-intro { margin-bottom: 39px; }
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.pricing-table { width: 100%; min-width: 740px; border-collapse: collapse; background: var(--white); text-align: left; }
.pricing-table th { padding: 17px 20px; color: var(--white); background: var(--navy-900); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.pricing-table td { padding: 20px; border-top: 1px solid var(--line); font-size: 13px; }
.pricing-table td:first-child { width: 40%; }
.pricing-table td strong, .pricing-table td span { display: block; }
.pricing-table td strong { color: var(--navy-900); }
.pricing-table td span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.pricing-table .vip-heading { color: var(--amber); }
.pricing-table .vip-price { color: var(--amber-deep); font-weight: 800; }
.table-link { display: inline-flex; align-items: center; gap: 5px; color: var(--navy-900); font-size: 11px; font-weight: 800; white-space: nowrap; }
.process-section .section-intro { position: sticky; top: 100px; }
.process-list { border-top: 1px solid var(--line); }
.process-list > div { display: grid; grid-template-columns: 52px 1fr; column-gap: 17px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.process-list span { grid-row: span 2; color: var(--amber-deep); font-family: var(--serif); font-size: 20px; }
.process-list h3 { margin-bottom: 6px; font-size: 18px; }
.process-list p { margin: 0; font-size: 13px; }
.dark-cta { padding: 82px 0; color: var(--white); background: var(--navy-900); }
.dark-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.dark-cta h2 { margin: 14px 0 0; font-size: 48px; }
.form-section, .contact-section { padding-top: 96px; }
.form-layout, .contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 102px; align-items: start; }
.form-aside h2, .contact-details h2 { margin: 16px 0 17px; font-size: 42px; }
.form-aside > p { max-width: 390px; }
.feature-list { display: grid; gap: 13px; margin: 29px 0 0; padding: 0; list-style: none; color: var(--ink); font-size: 12px; font-weight: 700; }
.feature-list li { display: flex; align-items: center; gap: 8px; }
.feature-list svg { color: var(--amber-deep); }
.analysis-form, .contact-form { padding: 31px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.form-head { margin-bottom: 25px; }
.step-tag { color: var(--amber-deep); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.form-head h2 { margin: 11px 0 5px; font-size: 32px; }
.form-head p { margin: 0; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; color: var(--navy-900); font-size: 11px; font-weight: 800; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); border: 1px solid rgba(10,33,55,.15); border-radius: 4px; outline: none; background: var(--paper); font-size: 13px; font-weight: 400; transition: border-color .18s ease, box-shadow .18s ease; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--amber-deep); box-shadow: 0 0 0 3px rgba(244,181,28,.14); }
.form-field--full { grid-column: 1 / -1; }
.consent { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 8px; margin: 19px 0 20px; color: var(--muted); font-size: 10px; font-weight: 500; }
.consent input { width: 15px; height: 15px; margin-top: 1px; accent-color: var(--amber-deep); }
.contact-details .eyebrow { margin-bottom: 1px; }
.contact-item { display: flex; align-items: center; gap: 13px; max-width: 310px; margin-top: 24px; }
.contact-item .icon-bubble { flex: 0 0 auto; margin: 0; }
.contact-item small, .contact-item strong { display: block; }
.contact-item small { margin-bottom: 3px; color: var(--muted); font-size: 10px; }
.contact-item strong { color: var(--ink); font-size: 14px; }
.contact-form label { margin-bottom: 16px; }
.contact-form label:last-of-type { margin-bottom: 21px; }
.centered-cta { text-align: center; }
.centered-cta .section-intro { margin-inline: auto; }
.centered-cta .section-intro p { margin-inline: auto; }
.centered-cta .button { margin-top: 25px; }
.story-layout { display: grid; grid-template-columns: 1fr .7fr; gap: 140px; align-items: center; }
.story-stat { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 17px; padding: 30px; border-left: 3px solid var(--amber); background: var(--white); box-shadow: var(--shadow); }
.story-stat strong { color: var(--amber-deep); font-family: var(--serif); font-size: 43px; line-height: 1; }
.story-stat span { color: var(--muted); font-size: 11px; font-weight: 700; }
.story-stat__rule { grid-column: 1 / -1; height: 1px; margin: 23px 0; background: var(--line); }
.values-section .section-intro { margin-bottom: 40px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.value-grid article { padding: 25px; border: 1px solid rgba(7,26,45,.08); background: rgba(255,255,255,.58); }
.value-grid h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 23px; }
.value-grid p { margin: 0; font-size: 13px; }
.blog-section .section-intro { margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { min-height: 335px; display: flex; flex-direction: column; border-top: 3px solid var(--navy-900); background: var(--white); box-shadow: 0 10px 25px rgba(11,33,52,.06); }
.blog-card__number { padding: 19px 23px 0; color: var(--amber-deep); font-family: var(--serif); font-size: 24px; }
.blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 9px 23px 23px; }
.blog-date { color: var(--muted); font-size: 10px; }
.blog-card h2 { margin: 17px 0 12px; font-size: 25px; line-height: 1.12; }
.blog-card p { margin-bottom: 20px; font-size: 13px; }
.blog-card .text-link { margin-top: auto; padding: 0; border: 0; background: transparent; }
.not-found { padding: 190px 0 130px; color: var(--white); text-align: center; }
.not-found__code { color: var(--amber); font-family: var(--serif); font-size: 100px; line-height: 1; }
.not-found h1 { font-size: 47px; }
.not-found p { color: rgba(232,241,247,.7); }

/* Footer and utilities */
.site-footer { color: rgba(232,241,247,.76); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .8fr 1.1fr; gap: 50px; padding-top: 70px; padding-bottom: 54px; }
.brand--footer { color: var(--white); }
.footer-intro p { max-width: 280px; margin: 19px 0; color: rgba(232,241,247,.54); font-size: 12px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 7px; color: var(--whatsapp); font-size: 11px; font-weight: 800; }
.footer-grid h3 { margin: 3px 0 19px; color: var(--white); font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-link, .footer-contact a, .footer-contact span { color: rgba(232,241,247,.55); font-size: 12px; }
.footer-link:hover, .footer-contact a:hover { color: var(--amber); }
.footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-contact h3 { margin-bottom: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 22px; border-top: 1px solid rgba(232,241,247,.1); color: rgba(232,241,247,.38); font-size: 10px; }
.floating-whatsapp { position: fixed; z-index: 19; right: 21px; bottom: 20px; display: grid; place-items: center; width: 51px; height: 51px; color: var(--white); border-radius: 50%; background: var(--whatsapp); box-shadow: 0 8px 25px rgba(4,28,20,.25); }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp__pulse { position: absolute; inset: -5px; border: 1px solid rgba(39,197,118,.5); border-radius: 50%; animation: pulse 2.4s infinite; }
.toast { position: fixed; z-index: 50; right: 24px; bottom: 82px; max-width: 360px; padding: 14px 17px; color: var(--white); border-left: 3px solid var(--amber); border-radius: 5px; background: var(--navy-900); box-shadow: 0 14px 35px rgba(0,0,0,.22); font-size: 12px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.toast.is-visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%, 60%, 100% { opacity: .2; transform: scale(.96); } 20% { opacity: .85; transform: scale(1.05); } }

@media (max-width: 1040px) {
  .desktop-nav { gap: 17px; margin-right: 24px; }
  .header-phone span { display: none; }
  .hero-layout { gap: 45px; }
  .stats-layout, .trust-layout, .process-layout { gap: 55px; }
  .form-layout, .contact-layout { gap: 55px; }
}

@media (max-width: 820px) {
  .shell { width: min(var(--shell), calc(100% - 36px)); }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu-button { display: grid; place-items: center; margin-left: auto; padding: 9px; color: var(--white); border: 1px solid var(--line-dark); border-radius: 5px; background: transparent; }
  .mobile-nav { display: grid; gap: 2px; max-height: 0; overflow: hidden; padding-inline: 18px; background: rgba(7,26,45,.98); opacity: 0; transition: max-height .25s var(--ease-out), opacity .2s ease, padding .25s var(--ease-out); }
  .mobile-nav.is-open { max-height: 480px; padding-top: 12px; padding-bottom: 17px; opacity: 1; }
  .mobile-nav-link { padding: 10px 0; color: rgba(236,243,249,.74); font-size: 13px; }
  .mobile-nav-group { display: grid; gap: 1px; padding: 9px 0; border-block: 1px solid var(--line-dark); color: var(--amber); font-size: 11px; font-weight: 800; }
  .mobile-nav-group .mobile-nav-link { padding-left: 14px; font-size: 12px; }
  .mobile-nav > .button { margin-top: 10px; }
  .hero-layout, .stats-layout, .trust-layout, .process-layout, .form-layout, .contact-layout, .story-layout { grid-template-columns: 1fr; }
  .hero-layout { min-height: auto; gap: 45px; padding-top: 145px; padding-bottom: 113px; }
  .proof-card { justify-self: start; }
  .stats-layout, .trust-layout, .process-layout, .form-layout, .contact-layout, .story-layout { gap: 45px; }
  .process-section .section-intro { position: static; }
  .trust-points { gap: 25px; }
  .story-stat { max-width: 390px; }
  .country-hero__inner { grid-template-columns: 1fr; gap: 30px; padding-top: 140px; }
  .country-hero__badge { justify-self: start; width: 120px; height: 120px; }
  .country-hero__badge strong { font-size: 34px; }
  .country-hero__badge small { margin-top: -13px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .shell { width: min(var(--shell), calc(100% - 30px)); }
  .header-inner { min-height: 65px; }
  .hero-layout { padding-top: 117px; }
  .hero-copy h1 { font-size: clamp(44px, 14vw, 66px); }
  .hero-copy p { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .assurance-row { gap: 10px 16px; font-size: 9px; }
  .proof-card { width: 100%; padding: 20px 17px; }
  .proof-card__header { font-size: 15px; }
  .risk-grid, .country-grid, .value-grid, .blog-grid { grid-template-columns: 1fr; }
  .risk-card { padding: 20px; }
  .country-card__media { height: 150px; }
  .trust-points { grid-template-columns: 1fr; }
  .trust-points article { display: grid; grid-template-columns: 44px 1fr; column-gap: 13px; }
  .trust-points .icon-bubble { grid-row: span 2; margin-bottom: 0; }
  .trust-points h3 { margin: 3px 0 6px; }
  .start-card { align-items: stretch; flex-direction: column; gap: 23px; padding: 27px 22px; }
  .start-card h2 { font-size: 31px; }
  .start-actions { align-items: stretch; flex-direction: column; }
  .start-actions .button, .start-actions .phone-link { width: 100%; }
  .page-hero__inner { min-height: 420px; padding-top: 130px; padding-bottom: 65px; }
  .page-hero h1 { font-size: clamp(44px, 13vw, 65px); }
  .country-hero h1 { font-size: clamp(40px, 11vw, 59px); }
  .country-hero p { font-size: 14px; }
  .dark-cta__inner { align-items: flex-start; flex-direction: column; }
  .dark-cta h2 { font-size: 39px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .analysis-form, .contact-form { padding: 22px 17px; }
  .form-aside h2, .contact-details h2 { font-size: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; padding-top: 53px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .toast { right: 15px; bottom: 80px; left: 15px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
