/* ==========================================================================
   Yavuz Keşküş — Dubai & Abu Dhabi Gayrimenkul Yatırım Danışmanı
   Landing Page Stylesheet
   ========================================================================== */

:root {
  --navy-950: #060f1f;
  --navy-900: #0b1a30;
  --navy-800: #12233f;
  --navy-700: #1b3157;
  --navy-600: #2a4674;

  --gold-500: #0e7c7b;
  --gold-400: #14b8a6;
  --gold-300: #7dd8cd;

  --cream-50: #faf8f3;
  --cream-100: #f3efe4;

  --ink-900: #1a1c22;
  --slate-600: #545b68;
  --slate-400: #8993a4;
  --line: #e7e2d6;

  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow-lg: 0 30px 60px -20px rgba(6, 15, 31, 0.35);
  --shadow-md: 0 14px 34px -12px rgba(6, 15, 31, 0.25);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------------------- Reset -------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.18; color: var(--navy-900); }
p { color: var(--slate-600); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
svg.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

::selection { background: var(--gold-400); color: var(--navy-950); }

/* -------------------- Reveal animation -------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-primary { background: linear-gradient(135deg, #25d366, #1fb955); color: #fff; box-shadow: 0 10px 24px -8px rgba(37,211,102,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(37,211,102,.6); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #1fb955); color: #fff; }
.btn-whatsapp:hover { transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-ghost-light { border-color: var(--navy-700); color: var(--navy-900); }
.btn-ghost-light:hover { background: var(--navy-900); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-950); box-shadow: 0 10px 24px -8px rgba(14,124,123,.5); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(14,124,123,.55); }
.btn-gold:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* -------------------- Header -------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header.is-scrolled {
  background: rgba(11, 26, 48, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,.35);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-photo { border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-400); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: var(--font-head); font-weight: 400; font-size: 18px; color: #fff; letter-spacing: .02em; }
.brand-title { font-size: 10.5px; color: var(--gold-300); text-transform: uppercase; letter-spacing: .06em; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: #eef1f6; opacity: .88; transition: opacity .2s, color .2s; position: relative; }
.main-nav a:hover { opacity: 1; color: var(--gold-300); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 0 auto; transition: transform .25s var(--ease), opacity .25s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,15,31,.94) 0%, rgba(9,20,38,.88) 32%, rgba(11,26,48,.55) 58%, rgba(11,26,48,.35) 100%),
    linear-gradient(0deg, rgba(6,15,31,.85), rgba(6,15,31,.1) 40%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px; padding-top: 110px; padding-bottom: 70px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 18px; }
.hero-content h1 { font-size: clamp(34px, 4.6vw, 58px); color: #fff; margin-bottom: 22px; }
.text-gold { color: var(--gold-400); }
.hero-lead { font-size: 17px; color: #d8dde6; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust li { font-size: 13.5px; color: #c7cedb; }
.hero-trust strong { display: block; color: #fff; font-family: var(--font-head); font-weight: 400; font-size: 15px; }

.hero-media { display: flex; justify-content: center; }
.hero-media-frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.15); max-width: 380px; }
.hero-media-frame::after { content:""; position:absolute; inset:0; border-radius:22px; box-shadow: inset 0 0 0 1px rgba(20,184,166,.35); pointer-events:none; }
.hero-media-frame img { width: 100%; height: auto; }

.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold-400); border-radius: 2px; transform: translateX(-50%); animation: scrollcue 1.8s infinite; }
@keyframes scrollcue { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 8px; } }

/* -------------------- Trust bar -------------------- */
.trust-bar { background: var(--navy-900); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; color: #fff; }
.trust-item .icon { color: var(--gold-400); width: 30px; height: 30px; }
.trust-item strong { display: block; font-size: 14.5px; font-family: var(--font-head); font-weight: 400; }
.trust-item span { font-size: 12.5px; color: #aab2c2; }

/* -------------------- Section generic -------------------- */
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 38px); }
.section-sub { margin-top: 16px; font-size: 16px; }

/* -------------------- Why Dubai -------------------- */
.why-dubai { background: var(--cream-50); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: var(--navy-900); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-400); stroke-width: 1.6; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; }

/* -------------------- About -------------------- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
.about-media { position: relative; max-width: 420px; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-media-badge {
  position: absolute; bottom: -22px; right: -22px; background: var(--navy-900); color: #fff;
  border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-md); text-align: center; border: 1px solid var(--gold-500);
}
.about-media-badge-num { display: block; font-family: var(--font-head); font-size: 18px; color: var(--gold-400); font-weight: 400; }
.about-media-badge-label { display: block; font-size: 11px; letter-spacing: .05em; color: #c7cedb; }

.about-content h2 { margin-bottom: 18px; }
.lead-text { font-size: 17px; color: var(--navy-800); margin-bottom: 26px; }
.value-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .icon { color: var(--gold-500); background: var(--cream-100); border-radius: 50%; padding: 6px; width: 30px; height: 30px; flex-shrink: 0; }
.value-list strong { display: block; color: var(--navy-900); font-size: 15.5px; }
.value-list span { font-size: 14px; color: var(--slate-600); }

.pull-quote { border-left: 3px solid var(--gold-500); padding: 6px 0 6px 22px; font-family: var(--font-head); font-style: italic; font-size: 19px; color: var(--navy-900); }
.pull-quote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-style: normal; font-size: 13px; color: var(--slate-400); font-weight: 700; }

/* -------------------- Services -------------------- */
.services { background: var(--cream-50); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card { background: #fff; border-radius: var(--radius); padding: 34px 26px; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold-400); fill: none; stroke-width: 1.6; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; }

/* -------------------- Process -------------------- */
.process { background: var(--navy-900); position: relative; }
.process .section-eyebrow { color: var(--gold-400); }
.process .section-head h2 { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px; background: rgba(255,255,255,.15); z-index: 0; }
.process-step { position: relative; z-index: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 24px; }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-500); color: var(--navy-950); font-family: var(--font-head); font-weight: 400; font-size: 16px; margin-bottom: 18px; }
.process-step h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 13.8px; color: #b7bfcd; }

/* -------------------- Regions -------------------- */
.regions { background: #fff; }
.regions-showcase { border-radius: 18px; overflow: hidden; margin-bottom: 56px; box-shadow: var(--shadow-md); }
.regions-showcase img { width: 100%; height: auto; max-height: 480px; object-fit: cover; }

.regions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 56px; }
.region-col h3 { font-size: 19px; margin-bottom: 22px; }
.region-list { display: flex; flex-direction: column; gap: 16px; }
.region-list li { display: flex; flex-direction: column; gap: 3px; padding: 16px 18px; background: var(--cream-50); border-left: 3px solid var(--gold-500); border-radius: 0 10px 10px 0; }
.region-list strong { font-size: 15px; color: var(--navy-900); }
.region-list span { font-size: 13.5px; color: var(--slate-600); }

.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--line); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 380px; }
.data-table th { background: var(--navy-900); color: #fff; text-align: left; padding: 13px 16px; font-weight: 600; font-size: 13px; }
.data-table td { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--navy-800); }
.data-table tbody tr:nth-child(even) { background: var(--cream-50); }

.developers { text-align: center; margin-bottom: 56px; }
.developers-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: 18px; font-weight: 700; }
.developers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.developers-list span { padding: 10px 22px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-head); font-weight: 400; color: var(--navy-800); font-size: 14.5px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card { text-align: center; background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 18px; }
.stat-num { display: block; font-family: var(--font-head); font-size: 30px; font-weight: 400; color: var(--navy-900); margin-bottom: 8px; }
.stat-label { font-size: 12.5px; color: var(--slate-600); }

/* -------------------- FAQ -------------------- */
.faq { background: var(--cream-50); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 6px 22px; transition: border-color .2s; }
.faq-item[open] { border-color: var(--gold-400); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 34px 18px 0; font-weight: 700; color: var(--navy-900);
  font-size: 15.5px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--gold-500); font-weight: 400; transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 0 20px; }
.faq-answer p { font-size: 14.5px; color: var(--slate-600); }

/* -------------------- Lead Popup -------------------- */
.lead-popup {
  position: fixed; top: 50%; right: 24px; z-index: 600;
  width: min(320px, calc(100vw - 32px));
  transform: translateY(-50%) translateX(calc(100% + 40px));
  opacity: 0; pointer-events: none;
  transition: transform .55s var(--ease), opacity .55s var(--ease);
}
.lead-popup.is-visible { transform: translateY(-50%) translateX(0); opacity: 1; pointer-events: auto; }
.lead-popup-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px 24px 24px;
}
.lead-popup-close {
  position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; border-radius: 50%;
  border: none; background: var(--cream-100); color: var(--slate-600); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.lead-popup-close:hover { background: var(--navy-900); color: #fff; }
.lead-popup-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 8px; }
.lead-popup-title { font-family: var(--font-head); font-weight: 400; font-size: 19px; line-height: 1.3; color: var(--navy-900); margin-bottom: 8px; }
.lead-popup-sub { font-size: 13px; color: var(--slate-600); margin-bottom: 20px; }
.lead-popup-form .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lead-popup-form .form-field label { font-size: 12.5px; font-weight: 700; color: var(--navy-900); }
.lead-popup-form .form-field input {
  font-family: var(--font-body); font-size: 14px; color: var(--ink-900);
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--cream-50); transition: border-color .2s, box-shadow .2s, background .2s;
}
.lead-popup-form .form-field input::placeholder { color: var(--slate-400); }
.lead-popup-form .form-field input:focus {
  outline: none; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(14,124,123,.15);
}
.lead-popup-form .form-submit { width: 100%; padding: 13px 20px; font-size: 14.5px; margin-top: 4px; }
.lead-popup-form .form-status { margin-top: 12px; font-size: 13px; font-weight: 700; text-align: center; min-height: 18px; }
.lead-popup-form .form-status.is-success { color: #1a8f4c; }
.lead-popup-form .form-status.is-error { color: #d9534f; }

@media (max-width: 860px) {
  .lead-popup { top: 84px; bottom: auto; left: 16px; right: 16px; width: auto; transform: translateY(-40px); opacity: 0; }
  .lead-popup.is-visible { transform: translateY(0); opacity: 1; }
  .lead-popup-card { padding: 24px 20px 20px; }
}

/* -------------------- Lead Form -------------------- */
.lead-form { background: var(--cream-50); }
.lead-form-card {
  max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--navy-900); letter-spacing: .01em; }
.form-field input {
  font-family: var(--font-body); font-size: 15px; color: var(--ink-900);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--cream-50); transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-field input::placeholder { color: var(--slate-400); }
.form-field input:focus {
  outline: none; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(14,124,123,.15);
}
.form-field input:invalid:not(:placeholder-shown) { border-color: #d9534f; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.form-submit { width: 100%; margin-top: 6px; }
.form-status { margin-top: 16px; font-size: 14px; font-weight: 700; text-align: center; min-height: 20px; }
.form-status.is-success { color: #1a8f4c; }
.form-status.is-error { color: #d9534f; }
.form-privacy { margin-top: 14px; font-size: 12px; color: var(--slate-400); text-align: center; }

@media (max-width: 640px) {
  .lead-form-card { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
}

/* -------------------- Final CTA -------------------- */
.final-cta { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(14,124,123,.18), transparent 45%), radial-gradient(circle at 80% 80%, rgba(14,124,123,.12), transparent 45%);
}
.final-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.final-cta-photo { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 22px; border: 3px solid var(--gold-400); }
.final-cta .section-eyebrow { color: var(--gold-400); }
.final-cta h2 { color: #fff; margin-bottom: 18px; font-size: clamp(26px, 3.4vw, 36px); }
.final-cta-text { color: #c7cedb; font-size: 16.5px; margin-bottom: 34px; }
.final-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* -------------------- Footer -------------------- */
.site-footer { background: var(--navy-950); color: #aab2c2; padding: 56px 0 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 50%; border: 2px solid var(--gold-400); }
.footer-name { display: block; font-family: var(--font-head); font-size: 17px; color: #fff; font-weight: 400; }
.footer-title { display: block; font-size: 12px; color: #8b93a3; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { font-size: 13.5px; color: #c7cedb; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-400); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; font-size: 13.5px; }
.footer-contact a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 22px 0 30px; font-size: 12px; color: #6d7789; }
.footer-disclaimer { max-width: 560px; text-align: right; }

/* -------------------- Sticky WhatsApp -------------------- */
.sticky-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 104px; height: 104px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fb955); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.6);
  animation: pulse-wa 2.4s infinite;
  opacity: 0; transform: scale(.6) translateY(20px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.sticky-whatsapp.is-visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.icon-wa { width: 84px; height: 84px; object-fit: contain; flex-shrink: 0; }
.header-actions .icon-wa { width: 34px; height: 34px; }
.sticky-whatsapp .icon-wa { width: 96px; height: 96px; object-fit: contain; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 12px 28px -8px rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 12px 28px -8px rgba(37,211,102,.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 28px -8px rgba(37,211,102,.6); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 130px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-media { order: -1; margin-bottom: 10px; }
  .hero-media-frame { max-width: 260px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { margin: 0 auto 40px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .regions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw); background: var(--navy-950); padding: 100px 32px 40px; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.4); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .main-nav a { font-size: 17px; }
  .menu-toggle { display: flex; }
  .header-actions .btn-sm span { display: none; }
  .header-actions .btn-sm { padding: 11px; border-radius: 50%; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; }
  .sticky-whatsapp { width: 92px; height: 92px; bottom: 14px; right: 14px; }
  .sticky-whatsapp .icon-wa { width: 84px; height: 84px; }
}

@media (max-width: 480px) {
  .brand-title { display: none; }
  .brand-photo { width: 44px; height: 44px; }
  .brand-name { font-size: 16px; }
}
