/* =========================================================
   FINANZA CONSIGNADO — SITE INSTITUCIONAL
   Design responsivo, acessível e otimizado para cPanel
   ========================================================= */

:root {
  --navy-950: #031d38;
  --navy-900: #052a50;
  --navy-800: #063b73;
  --navy-700: #0a4f91;
  --blue-600: #087bc1;
  --blue-500: #0b91d4;
  --orange-700: #c84200;
  --orange-600: #eb5200;
  --orange-500: #f46b1b;
  --orange-100: #fff0e7;
  --cream: #fff8f3;
  --white: #ffffff;
  --ink: #122033;
  --text: #34445a;
  --muted: #66758a;
  --line: #dfe6ee;
  --soft: #f4f7fb;
  --soft-blue: #eaf5fc;
  --success: #16834a;
  --danger: #b42318;
  --warning-bg: #fff6e6;
  --shadow-sm: 0 8px 24px rgba(5, 42, 80, 0.08);
  --shadow-md: 0 20px 54px rgba(5, 42, 80, 0.13);
  --shadow-lg: 0 30px 80px rgba(5, 42, 80, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
h1, h2, h3, h4 { margin: 0 0 0.75rem; color: var(--ink); line-height: 1.12; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.85rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.25rem; }
::selection { background: var(--orange-500); color: var(--white); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-brand { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.section-brand::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -220px; border-radius: 50%; background: rgba(11,145,212,.18); }
.section-brand h2, .section-brand h3 { color: var(--white); }
.center { text-align: center; }

.skip-link { position: fixed; left: 18px; top: -60px; z-index: 9999; padding: 12px 18px; border-radius: 8px; background: var(--ink); color: var(--white); transition: top var(--transition); }
.skip-link:focus { top: 18px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--orange-600); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-light { color: #ffd0b3; }
.image-caption { margin: 8px 0 0; color: var(--muted); font-size: .75rem; text-align: right; }
.icon { width: 24px; height: 24px; flex: 0 0 auto; }
.mini-icon { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.link-icon { width: 18px; height: 18px; }

/* Buttons */
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; line-height: 1.1; text-align: center; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition); }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(11,145,212,.28); outline-offset: 3px; }
.btn-primary { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); color: var(--white); box-shadow: 0 12px 28px rgba(235,82,0,.25); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(235,82,0,.34); }
.btn-secondary { border-color: #cad6e3; background: var(--white); color: var(--navy-800); }
.btn-secondary:hover { border-color: var(--navy-700); box-shadow: var(--shadow-sm); }
.btn-white { background: var(--white); color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--navy-800); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-small { min-height: 40px; padding: 10px 16px; font-size: .88rem; border-radius: 10px; }
.btn-large { min-height: 56px; padding: 16px 25px; }
.btn-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-weight: 800; }
.text-link svg { transition: transform var(--transition); }
.text-link:hover svg { transform: translateX(4px); }

/* Safety bar */
.safety-bar { position: relative; z-index: 60; color: var(--white); background: var(--navy-950); font-size: .82rem; }
.safety-bar-inner { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 20px; }
.safety-bar span, .safety-bar a { display: inline-flex; align-items: center; gap: 7px; }
.safety-bar a { color: #cfeeff; font-weight: 700; }
.safety-bar a:hover { color: var(--white); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(223,230,238,.85); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); transition: box-shadow var(--transition); }
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(5,42,80,.09); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 198px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--ink); font-size: .92rem; font-weight: 700; }
.main-nav > a:not(.btn), .nav-dropdown-button { position: relative; padding: 29px 0; border: 0; background: transparent; color: inherit; font-weight: 750; }
.main-nav > a:not(.btn)::after, .nav-dropdown-button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 21px; height: 2px; border-radius: 99px; background: var(--orange-500); transform: scaleX(0); transition: transform var(--transition); }
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-group:hover .nav-dropdown-button::after { transform: scaleX(1); }
.nav-group { position: relative; }
.nav-dropdown-button { display: inline-flex; align-items: center; gap: 6px; font-size: inherit; }
.nav-dropdown-button::before { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); order: 2; }
.nav-dropdown { position: absolute; top: calc(100% - 9px); left: 50%; width: 650px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
.nav-group:hover .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; }
.nav-dropdown a:hover { background: var(--soft-blue); }
.nav-dropdown strong, .nav-dropdown small { display: block; }
.nav-dropdown strong { color: var(--ink); font-size: .9rem; }
.nav-dropdown small { margin-top: 2px; color: var(--muted); font-size: .75rem; font-weight: 500; }
.nav-icon { width: 22px; height: 22px; color: var(--blue-600); }
.nav-dropdown-divider { grid-column: 1 / -1; height: 1px; margin: 4px 0; background: var(--line); }
.nav-toggle { display: none; width: 46px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); }
.nav-toggle span { width: 21px; height: 2px; border-radius: 3px; background: var(--navy-900); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home hero */
.hero-home { position: relative; overflow: hidden; padding: 76px 0 70px; background: radial-gradient(circle at 15% 0, #fff5ed 0, transparent 35%), linear-gradient(135deg, #ffffff 0%, #f4f9fd 58%, #e8f3fb 100%); }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-shape-one { width: 420px; height: 420px; right: -170px; top: -130px; background: rgba(11,145,212,.11); }
.hero-shape-two { width: 260px; height: 260px; left: -180px; bottom: -100px; background: rgba(244,107,27,.11); }
.hero-home-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: center; gap: 66px; }
.hero-home-copy h1 { max-width: 760px; }
.hero-lead { max-width: 700px; margin-bottom: 28px; color: var(--text); font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.hero-confidence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.hero-confidence > div { display: flex; align-items: flex-start; gap: 10px; min-width: 0; }
.hero-confidence svg { width: 24px; color: var(--blue-600); }
.hero-confidence strong, .hero-confidence small { display: block; }
.hero-confidence strong { color: var(--ink); font-size: .88rem; }
.hero-confidence small { margin-top: 2px; color: var(--muted); font-size: .75rem; line-height: 1.35; }
.hero-visual { position: relative; }
.hero-image-card { position: relative; padding: 13px; border: 1px solid rgba(255,255,255,.85); border-radius: 32px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-lg); }
.hero-image-card::before { content: ""; position: absolute; inset: -14px 32px 20px -14px; z-index: -1; border-radius: 36px; background: linear-gradient(145deg, var(--navy-800), var(--blue-500)); transform: rotate(-2deg); }
.hero-image-card > img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; border-radius: 22px; }
.hero-image-badge { position: absolute; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 12px 14px; border: 1px solid rgba(223,230,238,.85); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); }
.hero-image-badge strong, .hero-image-badge small { display: block; }
.hero-image-badge strong { color: var(--ink); font-size: .85rem; }
.hero-image-badge small { color: var(--muted); font-size: .72rem; }
.badge-icon { width: 24px; height: 24px; color: var(--success); }
.hero-badge-top { top: 42px; left: -26px; }
.hero-badge-bottom { right: -28px; bottom: 40px; }

/* Quick bar */
.quick-bar { position: relative; z-index: 3; margin-top: -1px; color: var(--white); background: linear-gradient(90deg, var(--navy-950), var(--navy-800)); }
.quick-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-bar-grid > div { display: flex; min-height: 104px; align-items: center; gap: 12px; padding: 20px; border-right: 1px solid rgba(255,255,255,.15); }
.quick-bar-grid > div:last-child { border-right: 0; }
.quick-bar-grid svg { width: 26px; color: #7fd2ff; }
.quick-bar-grid strong, .quick-bar-grid small { display: block; }
.quick-bar-grid strong { color: var(--white); font-size: .88rem; }
.quick-bar-grid small { margin-top: 3px; color: #c2d8eb; font-size: .75rem; line-height: 1.35; }

/* Section headings */
.section-heading { max-width: 760px; margin: 0 auto 44px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.section-heading-split { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.section-heading-split p { margin-bottom: 12px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 150px; height: 150px; border-radius: 50%; background: var(--soft-blue); transition: transform var(--transition); }
.service-card:hover { transform: translateY(-5px); border-color: #b9d9ec; box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scale(1.25); }
.service-card-head { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.service-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; color: var(--navy-800); background: var(--soft-blue); }
.service-icon svg { width: 26px; height: 26px; }
.service-number { color: #c6d3df; font-size: 1.15rem; font-weight: 900; }
.service-tag { position: relative; z-index: 1; color: var(--orange-600); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-card h3, .service-card p, .service-card a { position: relative; z-index: 1; }
.service-card h3 { margin-top: 7px; }
.service-card p { flex: 1; color: var(--muted); font-size: .93rem; }
.secondary-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.secondary-services > a { display: flex; align-items: center; gap: 13px; padding: 19px; border: 1px solid var(--line); border-radius: 15px; background: var(--soft); transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.secondary-services > a:hover { transform: translateY(-2px); border-color: #b9d9ec; background: var(--soft-blue); }
.secondary-services > a > span:nth-child(2) { min-width: 0; flex: 1; }
.secondary-services strong, .secondary-services small { display: block; }
.secondary-services strong { color: var(--ink); font-size: .9rem; }
.secondary-services small { margin-top: 2px; color: var(--muted); font-size: .75rem; }
.secondary-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--orange-600); background: var(--orange-100); }
.secondary-icon svg { width: 22px; }

/* Feature showcase */
.feature-showcase { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.feature-showcase-copy > p { color: var(--muted); font-size: 1.05rem; }
.feature-list-cards { display: grid; gap: 12px; margin-top: 28px; }
.feature-list-cards > div { display: flex; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.feature-list-cards svg { color: var(--blue-600); }
.feature-list-cards strong, .feature-list-cards small { display: block; }
.feature-list-cards strong { color: var(--ink); font-size: .93rem; }
.feature-list-cards small { margin-top: 3px; color: var(--muted); font-size: .79rem; }
.feature-image-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 190px); gap: 14px; }
.feature-image { overflow: hidden; margin: 0; border-radius: 18px; box-shadow: var(--shadow-sm); }
.feature-image-large { grid-row: 1 / 3; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.feature-image:hover img { transform: scale(1.035); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.step-number { position: absolute; right: 24px; top: 18px; color: #d7e1ea; font-size: 2.15rem; font-weight: 900; line-height: 1; }
.step-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 22px; border-radius: 16px; color: var(--orange-600); background: var(--orange-100); }
.step-icon svg { width: 27px; height: 27px; }
.step-card p { margin: 0; color: var(--muted); }

/* Real company */
.real-finanza-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.real-finanza-copy p { color: #cfe0ef; font-size: 1.05rem; }
.check-list { display: grid; gap: 11px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; }
.check-list svg { margin-top: 4px; color: var(--success); }
.check-list-light { margin: 26px 0 30px; }
.check-list-light svg { color: #8be1ae; }
.real-gallery { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 205px); gap: 14px; }
.real-gallery figure { position: relative; overflow: hidden; margin: 0; border: 4px solid rgba(255,255,255,.12); border-radius: 17px; }
.real-gallery .gallery-main { grid-row: 1 / 3; }
.real-gallery img { width: 100%; height: 100%; object-fit: cover; }
.real-gallery figcaption { position: absolute; left: 10px; right: 10px; bottom: 10px; padding: 7px 10px; border-radius: 9px; color: var(--white); background: rgba(3,29,56,.78); backdrop-filter: blur(8px); font-size: .75rem; font-weight: 700; }

/* Security panel */
.security-panel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 30px; border: 1px solid #fed7c1; border-radius: var(--radius); background: linear-gradient(135deg, #fffaf6, #fff0e7); }
.security-panel h2 { font-size: clamp(1.55rem, 2.5vw, 2.3rem); }
.security-panel p { margin: 0; color: var(--text); }
.security-icon-wrap { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 18px; color: var(--orange-600); background: var(--white); box-shadow: var(--shadow-sm); }
.security-icon-wrap svg { width: 31px; height: 31px; }
.security-panel.compact { grid-template-columns: auto 1fr; margin-top: 28px; padding: 22px; }
.security-panel.compact .security-icon-wrap { width: 48px; height: 48px; }
.security-panel.compact strong { display: block; color: var(--ink); }
.security-panel.compact p { font-size: .9rem; }

/* Forms */
.form-section-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 70px; }
.form-section-copy { position: sticky; top: 125px; }
.form-section-copy > p { color: var(--muted); font-size: 1.05rem; }
.contact-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; margin-top: 28px; padding: 18px; border: 1px solid #bce2cc; border-radius: 16px; background: #effbf4; }
.contact-card-icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: var(--white); background: #1ba65a; }
.contact-card strong, .contact-card span { display: block; }
.contact-card strong { color: var(--ink); font-size: .9rem; }
.contact-card span { color: var(--muted); font-size: .76rem; }
.contact-card a { color: var(--success); font-size: .82rem; font-weight: 800; }
.safe-data-box { margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.safe-data-box > strong { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.safe-data-box > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.safe-data-box span { padding: 5px 9px; border-radius: 99px; color: var(--navy-700); background: var(--soft-blue); font-size: .74rem; font-weight: 700; }
.lead-panel { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-md); }
.form-heading { margin-bottom: 24px; }
.form-heading h3 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
.form-heading p { margin: 0; color: var(--muted); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-grid label { display: grid; gap: 7px; color: var(--ink); font-size: .82rem; font-weight: 750; }
.form-grid label.full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #ccd7e3; border-radius: 11px; background: var(--white); color: var(--ink); transition: border-color var(--transition), box-shadow var(--transition); }
input, select { min-height: 49px; padding: 0 13px; }
textarea { min-height: 112px; padding: 12px 13px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #96a4b4; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(11,145,212,.11); outline: 0; }
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(180,35,24,.08); }
.checkbox-line { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: var(--text); font-size: .78rem; line-height: 1.45; }
.checkbox-line input { width: 18px; height: 18px; min-height: 0; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--navy-700); }
.checkbox-line a { color: var(--navy-700); font-weight: 750; text-decoration: underline; }
.checkbox-optional { margin-top: -7px; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }
.form-server-error, .form-feedback.is-error { margin-bottom: 18px; padding: 12px 14px; border: 1px solid #f2b8b5; border-radius: 11px; color: #8f1d16; background: #fff1f0; font-size: .84rem; font-weight: 700; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-intro { position: sticky; top: 125px; align-self: start; }
.faq-intro p { color: var(--muted); }
.faq { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; border: 0; background: transparent; color: var(--ink); font-weight: 800; text-align: left; }
.faq-question span { display: grid; width: 30px; height: 30px; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--navy-700); background: var(--soft-blue); font-size: 1.2rem; transition: transform var(--transition); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; color: var(--muted); transition: padding 220ms ease; }
.faq-item.is-open { border-color: #b6d9ed; box-shadow: var(--shadow-sm); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding: 0 22px 20px; }
.faq-item.is-open .faq-question span { transform: rotate(45deg); }

/* Service pages */
.breadcrumb { display: flex; align-items: center; gap: 9px; padding-top: 28px; color: var(--muted); font-size: .78rem; }
.breadcrumb a { color: var(--navy-700); font-weight: 750; }
.breadcrumb-light { color: #bad0e3; }
.breadcrumb-light a { color: var(--white); }
.service-hero { overflow: hidden; background: linear-gradient(145deg, #fff 0%, #f2f8fc 100%); }
.service-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; padding-top: 58px; padding-bottom: 76px; }
.service-hero-copy h1 { font-size: clamp(2.45rem, 5vw, 4.4rem); }
.service-hero-copy > p { max-width: 690px; color: var(--text); font-size: 1.08rem; }
.service-trust-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.service-trust-tags span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--navy-700); background: var(--white); font-size: .74rem; font-weight: 750; }
.service-hero-image { position: relative; }
.service-hero-image > img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; border: 10px solid var(--white); border-radius: 28px; box-shadow: var(--shadow-lg); }
.service-image-card { position: absolute; left: -24px; bottom: 40px; max-width: 285px; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); }
.service-image-card > svg { width: 27px; color: var(--orange-600); }
.service-image-card strong, .service-image-card small { display: block; }
.service-image-card strong { color: var(--ink); font-size: .88rem; }
.service-image-card small { color: var(--muted); font-size: .74rem; }
.service-detail-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: start; gap: 64px; }
.service-main-content > p { color: var(--muted); font-size: 1.03rem; }
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.benefit-list > div { display: flex; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--soft); color: var(--ink); font-size: .88rem; font-weight: 700; }
.benefit-check { width: 20px; height: 20px; flex: 0 0 auto; color: var(--success); }
.responsible-note { display: flex; gap: 14px; margin-top: 24px; padding: 20px; border: 1px solid #fed7c1; border-radius: 15px; background: var(--warning-bg); }
.responsible-note > svg { width: 28px; flex: 0 0 auto; color: var(--orange-600); }
.responsible-note strong { display: block; color: var(--ink); }
.responsible-note p { margin: 3px 0 0; font-size: .85rem; }
.service-side-card { position: sticky; top: 125px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.service-side-card .check-list { margin: 22px 0; }
.small-note { color: var(--muted); font-size: .8rem; }

/* Inner pages */
.inner-hero { padding-bottom: 72px; background: linear-gradient(145deg, #fff 0%, #f3f8fc 100%); }
.inner-hero-compact { padding-bottom: 60px; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; padding-top: 55px; }
.inner-hero-grid > div > p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.inner-hero-photo { overflow: hidden; margin: 0; border: 10px solid var(--white); border-radius: 28px; box-shadow: var(--shadow-lg); }
.inner-hero-photo img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; }
.about-values-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.about-story { position: sticky; top: 125px; align-self: start; }
.about-story p { color: var(--muted); font-size: 1.03rem; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.values-list article { display: flex; gap: 15px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.values-list article > svg { width: 30px; color: var(--orange-600); }
.values-list p { margin: 0; color: var(--muted); font-size: .86rem; }
.company-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.company-gallery figure { overflow: hidden; margin: 0; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.company-gallery img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; }
.company-gallery figcaption { padding: 14px 16px; color: var(--ink); font-size: .84rem; font-weight: 800; }
.contact-highlight { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 50px; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--soft); }
.official-channels { display: grid; gap: 10px; }
.official-channels a { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.official-channels a > svg { width: 24px; color: var(--blue-600); }
.official-channels small, .official-channels strong { display: block; }
.official-channels small { color: var(--muted); font-size: .72rem; }
.official-channels strong { color: var(--ink); font-size: .86rem; }
.contact-hero-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-hero-card strong { color: var(--ink); font-size: 1.1rem; }
.contact-hero-card p { color: var(--muted); }
.contact-hero-card span { display: inline-flex; align-items: center; gap: 6px; color: var(--success); font-size: .8rem; font-weight: 750; }
.contact-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-method { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
a.contact-method:hover { transform: translateY(-3px); border-color: #b9d9ec; box-shadow: var(--shadow-md); }
.contact-method > span:first-child { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; color: var(--navy-700); background: var(--soft-blue); }
.contact-method small, .contact-method strong { display: block; }
.contact-method small { color: var(--muted); font-size: .75rem; }
.contact-method strong { color: var(--ink); font-size: 1rem; overflow-wrap: anywhere; }
.contact-method p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; }

/* Security page */
.security-hero { padding-bottom: 76px; color: var(--white); background: radial-gradient(circle at 80% 0, rgba(11,145,212,.32), transparent 35%), linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.security-hero h1, .security-hero h2 { color: var(--white); }
.security-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 65px; padding-top: 58px; }
.security-hero-grid > div:first-child > p { max-width: 720px; color: #cfe0ef; font-size: 1.08rem; }
.security-alert-card { padding: 30px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.security-alert-card > svg { width: 44px; height: 44px; margin-bottom: 18px; color: #ffd0b3; }
.security-alert-card ul { display: grid; gap: 10px; padding-left: 1.15rem; color: #e8f1f8; }
.safety-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.safety-steps article { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.safety-steps article > span { position: absolute; right: 18px; top: 13px; color: #d8e2eb; font-size: 1.4rem; font-weight: 900; }
.safety-steps article > svg { width: 32px; margin-bottom: 20px; color: var(--orange-600); }
.safety-steps p { margin: 0; color: var(--muted); font-size: .87rem; }
.scam-example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; }
.danger-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.danger-list span { padding: 9px 12px; border: 1px solid #f0b8b5; border-radius: 99px; color: #8f1d16; background: #fff1f0; font-size: .79rem; font-weight: 750; }
.official-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.official-card > a { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.official-card > a:last-child { border-bottom: 0; }
.official-card a > svg { width: 23px; color: var(--blue-600); }
.official-card small, .official-card strong { display: block; }
.official-card small { color: var(--muted); font-size: .72rem; }
.official-card strong { color: var(--ink); font-size: .88rem; }

/* Legal */
.legal-hero { padding-bottom: 52px; background: var(--soft); }
.legal-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal-hero .container:last-child { padding-top: 45px; }
.legal-section { padding-top: 70px; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); align-items: start; gap: 60px; }
.legal-index { position: sticky; top: 125px; display: grid; gap: 9px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.legal-index strong { margin-bottom: 5px; color: var(--ink); }
.legal-index a, .legal-index button { padding: 5px 0; border: 0; background: transparent; color: var(--navy-700); font-size: .82rem; font-weight: 700; text-align: left; }
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 38px; font-size: 1.55rem; scroll-margin-top: 130px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text); }
.legal-content ul { display: grid; gap: 7px; }
.legal-note { margin-top: 35px; padding: 20px; border: 1px solid #fed7c1; border-radius: 14px; background: var(--warning-bg); }
.legal-note strong { color: var(--ink); }
.legal-note p { margin: 3px 0 0; font-size: .84rem; }
.cookie-policy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cookie-policy-cards > div { padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--soft); }
.cookie-policy-cards strong { color: var(--ink); }
.cookie-policy-cards p { margin: 4px 0 0; font-size: .82rem; }

/* Thank-you */
.thank-you-section { min-height: 68vh; display: grid; place-items: center; padding: 80px 0; background: radial-gradient(circle at 50% 0, #eff9ff, transparent 55%), var(--soft); }
.thank-you-card { max-width: 780px; padding: 50px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-lg); text-align: center; }
.success-icon { display: grid; width: 74px; height: 74px; place-items: center; margin: 0 auto 22px; border-radius: 50%; color: var(--white); background: var(--success); box-shadow: 0 16px 35px rgba(22,131,74,.22); }
.success-icon svg { width: 38px; height: 38px; }
.thank-you-card h1 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.thank-you-card > p { max-width: 650px; margin-inline: auto; color: var(--muted); font-size: 1.03rem; }
.centered-actions { justify-content: center; }
.thank-you-warning { max-width: 520px; display: flex; align-items: center; gap: 12px; margin: 28px auto 0; padding: 14px; border-radius: 14px; color: var(--text); background: var(--warning-bg); text-align: left; }
.thank-you-warning > svg { width: 26px; color: var(--orange-600); }
.thank-you-warning strong, .thank-you-warning small { display: block; }
.thank-you-warning strong { color: var(--ink); font-size: .86rem; }
.thank-you-warning small { color: var(--muted); font-size: .75rem; }

/* Footer */
.final-cta { padding: 44px 0; color: var(--white); background: linear-gradient(100deg, var(--orange-700), var(--orange-500)); }
.final-cta-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.final-cta h2 { margin-bottom: 7px; color: var(--white); font-size: clamp(1.55rem, 3vw, 2.45rem); }
.final-cta p { max-width: 780px; margin: 0; color: #fff3ec; font-size: .9rem; }
.final-cta-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 17px; background: rgba(255,255,255,.15); }
.final-cta-icon svg { width: 29px; }
.site-footer { color: #bdd0e0; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .8fr 1.1fr; gap: 45px; padding-top: 70px; padding-bottom: 48px; }
.footer-brand { display: inline-flex; padding: 8px 12px; border-radius: 10px; background: var(--white); }
.footer-brand img { width: 185px; }
.footer-about p { max-width: 340px; margin-top: 20px; font-size: .85rem; }
.footer-safety { display: flex; gap: 8px; margin-top: 18px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: #ffd3ba; font-size: .78rem; }
.site-footer h3 { margin-bottom: 17px; color: var(--white); font-size: .97rem; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 9px; padding: 0; list-style: none; }
.site-footer li, .site-footer a { font-size: .82rem; }
.site-footer a:hover { color: var(--white); }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; }
.contact-list svg { margin-top: 2px; color: #71c8f4; }
.footer-disclaimer { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.11); border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-disclaimer p { margin: 0; font-size: .74rem; line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; padding-bottom: 20px; }
.footer-bottom p { margin: 0; font-size: .75rem; }
.footer-cookie-button { border: 0; background: transparent; color: #bdd0e0; font-size: .75rem; text-decoration: underline; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 45; display: flex; min-height: 54px; align-items: center; gap: 9px; padding: 0 17px; border: 3px solid var(--white); border-radius: 99px; color: var(--white); background: #1ba65a; box-shadow: 0 14px 38px rgba(20,122,66,.35); font-size: .83rem; font-weight: 850; transition: transform var(--transition); }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float-icon { width: 25px; height: 25px; }

/* Cookies */
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 100; }
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner-content { max-width: 1080px; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 0 auto; padding: 18px; border: 1px solid #cfdae5; border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); }
.cookie-banner strong { color: var(--ink); }
.cookie-banner p { max-width: 600px; margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.cookie-modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 20px; background: rgba(3,29,56,.72); }
.cookie-modal-card { position: relative; width: min(100%, 560px); max-height: 90vh; overflow-y: auto; padding: 30px; border-radius: 22px; background: var(--white); box-shadow: var(--shadow-lg); }
.cookie-close { position: absolute; right: 18px; top: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--soft); color: var(--ink); font-size: 1.5rem; }
.cookie-modal-card > p { color: var(--muted); font-size: .88rem; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cookie-option strong, .cookie-option small { display: block; }
.cookie-option strong { color: var(--ink); }
.cookie-option small { color: var(--muted); font-size: .74rem; }
.cookie-option input { width: 20px; height: 20px; min-height: 0; accent-color: var(--navy-700); }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 22px; }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-animate] { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav { gap: 17px; font-size: .87rem; }
  .brand img { width: 178px; }
  .hero-home-grid, .service-hero-grid { gap: 42px; }
  .hero-home-grid { grid-template-columns: 1fr 420px; }
  .hero-confidence { grid-template-columns: 1fr; }
  .hero-confidence > div { align-items: center; }
  .feature-showcase, .real-finanza-grid, .form-section-grid, .faq-layout, .service-detail-grid, .about-values-grid { gap: 45px; }
  .safety-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 920px) {
  .safety-bar-inner { justify-content: center; text-align: center; }
  .safety-bar a { display: none; }
  .header-inner { min-height: 72px; }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 108px 0 0; display: block; overflow-y: auto; padding: 20px; background: var(--white); transform: translateX(100%); transition: transform 250ms ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a:not(.btn), .nav-dropdown-button { width: 100%; display: flex; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--line); text-align: left; }
  .main-nav > a:not(.btn)::after, .nav-dropdown-button::after { display: none; }
  .nav-cta { width: 100%; margin-top: 18px; }
  .nav-dropdown { position: static; width: 100%; max-height: 0; display: grid; grid-template-columns: 1fr; overflow: hidden; padding: 0; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height 250ms ease, padding 250ms ease; }
  .nav-group.is-open .nav-dropdown { max-height: 1000px; padding: 10px 0; transform: none; }
  .nav-dropdown-divider { display: none; }
  .hero-home-grid, .service-hero-grid, .inner-hero-grid, .security-hero-grid { grid-template-columns: 1fr; }
  .hero-home { padding-top: 55px; }
  .hero-home-grid { gap: 52px; }
  .hero-home-copy { text-align: center; }
  .hero-home-copy .hero-actions, .service-hero-copy .hero-actions { justify-content: center; }
  .hero-confidence { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .hero-visual { width: min(100%, 590px); margin: 0 auto; }
  .hero-badge-top { left: -8px; }
  .hero-badge-bottom { right: -8px; }
  .quick-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-bar-grid > div:nth-child(2) { border-right: 0; }
  .quick-bar-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .section-heading-split { grid-template-columns: 1fr; gap: 10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .secondary-services { grid-template-columns: 1fr; }
  .feature-showcase, .real-finanza-grid, .form-section-grid, .faq-layout, .service-detail-grid, .about-values-grid, .contact-highlight, .scam-example-grid { grid-template-columns: 1fr; }
  .form-section-copy, .faq-intro, .service-side-card, .about-story { position: static; }
  .feature-image-grid { max-width: 700px; margin-inline: auto; }
  .real-gallery { max-width: 760px; margin-inline: auto; }
  .security-panel { grid-template-columns: auto 1fr; }
  .security-panel .btn { grid-column: 1 / -1; width: 100%; }
  .service-hero-copy { text-align: center; }
  .service-trust-tags { justify-content: center; }
  .service-hero-image { width: min(100%, 690px); margin-inline: auto; }
  .service-detail-grid { gap: 28px; }
  .company-gallery { grid-template-columns: 1fr 1fr; }
  .company-gallery figure:last-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-index { position: static; display: flex; flex-wrap: wrap; }
  .legal-index strong { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-inner { grid-template-columns: auto 1fr; }
  .final-cta-inner .btn { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .brand img { width: 162px; }
  .safety-bar { font-size: .72rem; }
  .safety-bar-inner { min-height: 32px; }
  .main-nav { inset: 104px 0 0; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .hero-home { padding: 43px 0 54px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-confidence { grid-template-columns: 1fr; max-width: 350px; margin-inline: auto; }
  .hero-image-card { padding: 8px; border-radius: 23px; }
  .hero-image-card > img { border-radius: 17px; }
  .hero-image-badge { min-width: 0; padding: 9px 10px; }
  .hero-image-badge strong { font-size: .72rem; }
  .hero-image-badge small { font-size: .63rem; }
  .hero-badge-top { top: 18px; left: -4px; }
  .hero-badge-bottom { right: -4px; bottom: 20px; }
  .quick-bar-grid { grid-template-columns: 1fr; }
  .quick-bar-grid > div { min-height: 82px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .quick-bar-grid > div:last-child { border-bottom: 0; }
  .service-grid, .steps-grid, .values-list, .contact-methods, .safety-steps, .company-gallery, .cookie-policy-cards { grid-template-columns: 1fr; }
  .company-gallery figure:last-child { grid-column: auto; }
  .service-card { min-height: 0; }
  .feature-image-grid { grid-template-columns: 1fr; grid-template-rows: 250px 180px 180px; }
  .feature-image-large { grid-row: auto; }
  .real-gallery { grid-template-columns: 1fr; grid-template-rows: 260px 190px 190px; }
  .real-gallery .gallery-main { grid-row: auto; }
  .security-panel { grid-template-columns: 1fr; text-align: center; }
  .security-icon-wrap { margin-inline: auto; }
  .contact-card { grid-template-columns: auto 1fr; }
  .contact-card a { grid-column: 1 / -1; }
  .lead-panel { padding: 22px 17px; }
  .form-grid { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .service-image-card { left: 8px; bottom: 25px; max-width: calc(100% - 16px); }
  .service-trust-tags span { width: 100%; justify-content: center; }
  .inner-hero-grid { padding-top: 38px; }
  .contact-highlight { padding: 23px; }
  .contact-method { padding: 19px; grid-template-columns: auto 1fr; }
  .contact-method > .link-icon { display: none; }
  .security-alert-card { padding: 23px; }
  .legal-index { display: none; }
  .thank-you-card { padding: 34px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-icon { margin-inline: auto; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner-content { display: block; }
  .cookie-actions { margin-top: 14px; }
  .cookie-actions .btn { flex: 1 1 auto; }
  .cookie-modal-card { padding: 25px 18px; }
  .cookie-modal-actions { flex-direction: column-reverse; }
  .cookie-modal-actions .btn { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; height: 56px; min-height: 56px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
}
