/*
Theme Name: Mortgage with Satish (Elementor)
Theme URI: https://mortgage-with-satish.vercel.app
Author: SoftPhoton Dev
Author URI: https://github.com/softphotondev
Description: Elementor-Pro edition of the Mortgage with Satish theme. Ships with importable Elementor page data that auto-loads on activation, so every page builds inside Elementor and is fully editable. Deep navy + golden yellow, Plus Jakarta Sans. Requires Elementor (Pro recommended).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: mortgage-with-satish-elementor
*/
/* ==========================================================================
   Mortgage with Satish — "Calm UI" Design System
   Lendevi-inspired · Deep Navy + Golden Yellow · photo-rich, modern-sans
   Built to map cleanly onto WordPress / Elementor Pro later.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

/* -------- Design Tokens (1:1 with Elementor Global Styles) -------------- */
:root {
  /* Brand */
  --navy-900: #0a1a36;
  --navy-800: #0b2545;
  --navy-700: #11315c;
  --navy-600: #1c4274;
  --navy-300: #6b86ad;
  --gold-500: #ffc524;
  --gold-600: #f5b400;
  --gold-400: #ffd766;

  /* Neutrals */
  --ink: #0e1726;
  --slate-600: #4a5568;
  --slate-400: #8a96a8;
  --line: #ebe7df;
  --mist: #f6f3ec;     /* warm cream (Lendevi alt-section) */
  --cream: #f7f2e9;
  --cloud: #fdfbf7;
  --white: #ffffff;

  /* Semantic */
  --good: #1f9d6b;
  --good-bg: #e8f6ef;
  --warn-bg: #fdecec;
  --warn: #d64545;

  /* Type — Lendevi pairs a bold geometric sans heading with neutral body */
  --serif: "Plus Jakarta Sans", system-ui, sans-serif;   /* display headings */
  --sans: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Radius + shadow — Lendevi uses generous rounding & soft shadows */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 42px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(11, 37, 69, .06);
  --shadow-md: 0 18px 46px rgba(11, 37, 69, .10);
  --shadow-lg: 0 36px 80px rgba(11, 37, 69, .18);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 116px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* -------- Typography ----------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy-800); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.95rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); display: inline-block; }
.lede { font-size: 1.15rem; color: var(--slate-600); max-width: 60ch; }
.muted { color: var(--slate-400); }

/* -------- Layout helpers ------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--mist { background: var(--mist); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-800); color: #dfe7f3; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 14px 0 16px; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -------- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .98rem; padding: 15px 28px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 24px rgba(245, 180, 0, .35); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(245, 180, 0, .45); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--navy-800); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--navy-800); transform: translateY(-3px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* -------- Header / Nav --------------------------------------------------- */
.topbar {
  background: var(--navy-900); color: #c6d3e8; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #c6d3e8; transition: color .2s; }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 15px; height: 15px; color: var(--gold-500); }
.topbar-contact { display: flex; gap: 24px; }
.topbar-socials { display: flex; gap: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 28px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; transition: transform .25s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-mark {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; position: relative;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: #fff; font-family: var(--serif);
  font-weight: 800; font-size: 1.5rem; line-height: 1; letter-spacing: -.02em;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,.12);
  padding-bottom: 5px; /* lift the monogram above the accent bar */
}
/* gold underline accent — turns the "S" into a small wordmark */
.brand-mark::after {
  content: ""; position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  width: 18px; height: 3px; border-radius: 3px; background: var(--gold-500);
}
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--navy-800); line-height: 1.18; letter-spacing: -.015em; white-space: nowrap; }
.brand-name span { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: var(--r-sm);
  font-weight: 600; font-size: .96rem; color: var(--navy-800); transition: background .2s, color .2s;
}
.nav-links > li > a:hover, .nav-links > li.active > a { background: var(--mist); color: var(--navy-700); }
.nav-links .caret { width: 14px; height: 14px; opacity: .6; transition: transform .25s; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 290px; background: #fff;
  border-radius: var(--r-md); box-shadow: var(--shadow-md); border: 1px solid var(--line); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s var(--ease); z-index: 30;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown a { display: flex; gap: 12px; padding: 12px; border-radius: var(--r-sm); transition: background .2s; }
.dropdown a:hover { background: var(--mist); }
.dropdown .di { width: 38px; height: 38px; border-radius: 10px; background: var(--navy-800); color: var(--gold-500); display: grid; place-items: center; flex-shrink: 0; }
.dropdown .di svg { width: 19px; height: 19px; }
.dropdown b { display: block; font-size: .94rem; color: var(--navy-800); }
.dropdown small { color: var(--slate-400); font-size: .82rem; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--navy-800); color: #fff; place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* -------- Hero ----------------------------------------------------------- */
.hero { position: relative; background: var(--cloud); overflow: hidden; padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(255, 197, 36, .14), transparent 60%),
    radial-gradient(900px 600px at -8% 110%, rgba(28, 66, 116, .10), transparent 55%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin: 18px 0 22px; }
.hero-copy h1 em { font-style: normal; color: var(--navy-800); position: relative; white-space: nowrap; z-index: 0; }
.hero-copy h1 em::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: .08em; height: .42em; background: var(--gold-500); border-radius: 6px; z-index: -1; opacity: .85; }

/* Lendevi-style hero photo collage */
.hero-collage { position: relative; padding: 14px 14px 0; }
.hero-collage .photo-main { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; }
.hero-collage .photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .blob { position: absolute; inset: -6% -4% auto auto; width: 78%; aspect-ratio: 1; background: radial-gradient(circle at 30% 30%, rgba(255,197,36,.5), rgba(255,197,36,0) 70%); z-index: -1; }
.dots { position: absolute; width: 120px; height: 120px; background-image: radial-gradient(var(--navy-300) 2px, transparent 2.4px); background-size: 18px 18px; opacity: .35; z-index: -1; }
.dots.tl { top: -18px; left: -18px; }
.dots.br { bottom: 60px; right: -22px; }
/* Floating cards over the photo */
.float-card { position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 16px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); }
.float-card .fi { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .fi.gold { background: var(--gold-500); color: var(--navy-900); }
.float-card .fi.navy { background: var(--navy-800); color: var(--gold-500); }
.float-card .fi svg { width: 22px; height: 22px; }
.float-card b { display: block; color: var(--navy-800); font-size: 1.05rem; line-height: 1.1; }
.float-card small { color: var(--slate-400); font-size: .8rem; }
.float-card.tl { top: 34px; left: -26px; animation: float 6s ease-in-out infinite; }
.float-card.br { bottom: 26px; right: -24px; animation: float 6s ease-in-out infinite .8s; }
.float-card .avstack { display: flex; }
.float-card .avstack span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background: var(--navy-600); display: grid; place-items: center; color: #fff; font-size: .7rem; font-weight: 700; }
.float-card .avstack span:first-child { margin-left: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust .t { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--slate-600); }
.hero-trust .t b { color: var(--navy-800); }
.stars { color: var(--gold-500); letter-spacing: 2px; }

/* Hero rate card (animated) */
.rate-card {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 28px;
  border: 1px solid var(--line); position: relative;
}
.rate-card::after {
  content: "LIVE"; position: absolute; top: 24px; right: 24px; font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; color: var(--good); background: var(--good-bg); padding: 5px 11px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
}
.rate-card .pulse { position: absolute; top: 30px; right: 70px; width: 8px; height: 8px; border-radius: 50%; background: var(--good); }
.rate-card .pulse::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--good); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.4); opacity: 0; } }
.rate-card h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); font-weight: 700; }
.rate-big { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 4px; }
.rate-big .num { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; color: var(--navy-800); line-height: 1; }
.rate-big .pct { font-size: 1.4rem; color: var(--navy-600); font-weight: 600; }
.rate-rows { margin-top: 20px; border-top: 1px solid var(--line); }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.rate-row span { color: var(--slate-600); }
.rate-row b { color: var(--navy-800); font-size: 1.05rem; }
.rate-row .chip { font-size: .72rem; font-weight: 700; color: var(--good); background: var(--good-bg); padding: 3px 9px; border-radius: var(--r-pill); margin-left: 8px; }
.rate-card .foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-size: .82rem; color: var(--slate-400); }

/* -------- Lender ribbon (marquee) --------------------------------------- */
.ribbon { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.ribbon .label { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-400); font-weight: 700; margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; color: var(--navy-300); white-space: nowrap; opacity: .8; transition: color .2s, opacity .2s; }
.marquee-track span:hover { color: var(--navy-700); opacity: 1; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* -------- Cards ---------------------------------------------------------- */
.card { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); padding: 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--navy-800); color: var(--gold-500); margin-bottom: 22px; transition: transform .35s var(--ease); }
.card:hover .card-ic { transform: rotate(-6deg) scale(1.06); }
.card-ic svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--slate-600); font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 700; color: var(--navy-700); font-size: .95rem; }
.card .more svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .more svg { transform: translateX(5px); }

/* Funnel card variant */
.funnel-card { position: relative; overflow: hidden; }
.funnel-card .tag { position: absolute; top: 26px; right: 26px; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); background: var(--mist); color: var(--navy-600); }
.funnel-card ul.ticks { margin: 18px 0 0; }
.funnel-card ul.ticks li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: .94rem; color: var(--slate-600); }
.funnel-card ul.ticks svg { width: 18px; height: 18px; color: var(--good); flex-shrink: 0; margin-top: 3px; }

/* Photo-topped card (Lendevi service style) */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .ph { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card--photo .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card--photo:hover .ph img { transform: scale(1.06); }
.card--photo .ph .float-badge { position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: var(--r-pill); padding: 8px 16px; font-weight: 700; font-size: .85rem; color: var(--navy-800); box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px; }
.card--photo .ph .float-badge svg { width: 16px; height: 16px; color: var(--gold-600); }
.card--photo .pad { padding: 28px 30px 32px; }
.card--photo .card-ic { width: 52px; height: 52px; margin: -52px 0 16px; position: relative; border: 4px solid #fff; }

/* Media split (photo + content) — Lendevi about/feature blocks */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-split.flip .media-figure { order: 2; }
.media-figure { position: relative; }
.media-figure .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4.4; }
.media-figure .frame img { width: 100%; height: 100%; object-fit: cover; }
.media-figure .blob { position: absolute; inset: auto auto -8% -6%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle at 50% 50%, rgba(28,66,116,.18), transparent 70%); z-index: -1; }
.media-figure .stat-chip { position: absolute; right: -20px; top: 30px; background: var(--navy-800); color: #fff; border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-md); text-align: center; }
.media-figure .stat-chip .n { font-family: var(--serif); font-size: 2rem; font-weight: 800; color: var(--gold-500); line-height: 1; }
.media-figure .stat-chip small { color: #c6d3e8; font-size: .78rem; display: block; margin-top: 4px; }

/* -------- Stats counters ------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; color: var(--gold-500); line-height: 1; }
.stat .l { margin-top: 10px; font-size: .92rem; color: #c6d3e8; }

/* -------- Process steps -------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 2.4rem; color: var(--gold-500); font-weight: 600; line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.step p { font-size: .92rem; color: var(--slate-600); }

/* -------- Calculator ----------------------------------------------------- */
.calc { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.calc-inputs { padding: clamp(28px, 4vw, 44px); }
.calc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.col-span { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; color: var(--navy-800); letter-spacing: .02em; display: flex; justify-content: space-between; }
.field label .v { color: var(--gold-600); }
.input-wrap { position: relative; }
.input-wrap .pre { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--slate-400); font-weight: 600; }
.field input[type="text"], .field input[type="number"], .field select {
  width: 100%; padding: 13px 14px 13px 30px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; color: var(--navy-800); font-weight: 600; background: var(--cloud); transition: border-color .2s, box-shadow .2s;
}
.field select { padding-left: 14px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(255,197,36,.18); }
.field input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--line); }
.field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-500); border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer; }
.field input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-500); border: 3px solid #fff; cursor: pointer; }
.calc-result { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; }
.calc-result .lbl { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #9fb2cf; font-weight: 700; }
.calc-result .payment { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 600; color: var(--gold-500); margin: 6px 0 2px; line-height: 1; }
.calc-result .payment small { font-size: 1rem; color: #9fb2cf; font-family: var(--sans); }
.calc-break { margin-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.calc-break .r { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.calc-break .r span { color: #c6d3e8; }
.calc-break .r b { font-weight: 700; }
.calc-bar { height: 10px; border-radius: 999px; overflow: hidden; display: flex; margin: 22px 0 10px; }
.calc-bar i { display: block; height: 100%; }
.calc-bar .p { background: var(--gold-500); }
.calc-bar .ii { background: var(--navy-600); }
.calc-legend { display: flex; gap: 20px; font-size: .82rem; color: #c6d3e8; }
.calc-legend span { display: inline-flex; align-items: center; gap: 7px; }
.calc-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.calc-result .btn { margin-top: auto; }

/* -------- Rates table ---------------------------------------------------- */
.rate-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.rate-table thead { background: var(--navy-800); }
.rate-table th { color: #fff; text-align: left; padding: 18px 22px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.rate-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--navy-800); }
.rate-table tbody tr { transition: background .2s; }
.rate-table tbody tr:hover { background: var(--mist); }
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table .rate-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy-800); }
.rate-table .best { background: rgba(255,197,36,.07); }
.rate-table .pill { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); }
.pill-best { background: var(--gold-500); color: var(--navy-900); }
.pill-down { background: var(--good-bg); color: var(--good); }

/* -------- Do's vs Don'ts ------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--r-lg); padding: 34px; border: 1px solid var(--line); }
.compare-col.do { background: var(--good-bg); border-color: #cdebdc; }
.compare-col.dont { background: var(--warn-bg); border-color: #f6d4d4; }
.compare-col h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.compare-col .badge { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.compare-col.do .badge { background: var(--good); color: #fff; }
.compare-col.dont .badge { background: var(--warn); color: #fff; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed rgba(0,0,0,.08); font-size: .98rem; color: var(--slate-600); }
.compare-col li:last-child { border-bottom: none; }
.compare-col li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.compare-col.do li svg { color: var(--good); }
.compare-col.dont li svg { color: var(--warn); }

/* -------- Reviews slider ------------------------------------------------- */
.reviews { position: relative; }
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.google-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 20px; box-shadow: var(--shadow-sm); }
.google-badge .g { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; }
.google-badge .g b:nth-child(1){color:#4285F4}.google-badge .g b:nth-child(2){color:#EA4335}.google-badge .g b:nth-child(3){color:#FBBC05}.google-badge .g b:nth-child(4){color:#4285F4}.google-badge .g b:nth-child(5){color:#34A853}.google-badge .g b:nth-child(6){color:#EA4335}
.google-badge .score { font-weight: 800; color: var(--navy-800); }
.reviews-viewport { overflow: hidden; }
.reviews-track { display: flex; gap: 24px; transition: transform .6s var(--ease); }
.review { flex: 0 0 calc((100% - 48px) / 3); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.review .stars { font-size: 1.05rem; margin-bottom: 14px; }
.review p { color: var(--slate-600); font-size: .98rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-800); color: var(--gold-500); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); flex-shrink: 0; }
.review .who b { display: block; color: var(--navy-800); font-size: .95rem; }
.review .who small { color: var(--slate-400); }
.reviews-nav { display: flex; gap: 10px; }
.reviews-nav button { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy-800); transition: all .2s; }
.reviews-nav button:hover { background: var(--navy-800); color: #fff; }
.reviews-nav button svg { width: 20px; height: 20px; }

/* -------- CTA band ------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); color: #fff; border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,197,36,.18), transparent 70%); top: -120px; right: -80px; }
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(28,66,116,.5), transparent 70%); bottom: -140px; left: -60px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #c6d3e8; max-width: 56ch; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* -------- Footer --------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #9fb2cf; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer .brand-name { color: #fff; }
.site-footer p { font-size: .95rem; margin: 18px 0; max-width: 38ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact a { display: flex; gap: 10px; align-items: center; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-500); }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-socials a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-disclaimer { background: var(--navy-900); padding-bottom: 30px; }
.footer-disclaimer p { font-size: .78rem; color: #6b86ad; max-width: none; }

/* -------- Page hero (interior) ------------------------------------------ */
.page-hero { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; padding: clamp(54px, 7vw, 92px) 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 90% 0%, rgba(255,197,36,.12), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #9fb2cf; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: #c6d3e8; max-width: 60ch; margin-top: 18px; font-size: 1.12rem; }

/* -------- Forms ---------------------------------------------------------- */
.lead-form { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); padding: clamp(28px, 4vw, 40px); }
.lead-form h3 { margin-bottom: 6px; }
.lead-form .sub { color: var(--slate-400); font-size: .92rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.one { grid-template-columns: 1fr; }
.lead-form label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy-800); margin-bottom: 7px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; background: var(--cloud); transition: border-color .2s, box-shadow .2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(255,197,36,.18); }
.form-note { font-size: .8rem; color: var(--slate-400); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--good); flex-shrink: 0; margin-top: 2px; }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--good-bg); color: var(--good); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok svg { width: 32px; height: 32px; }

/* -------- FAQ accordion -------------------------------------------------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; text-align: left; font-family: var(--serif); font-size: 1.12rem; color: var(--navy-800); font-weight: 600; }
.faq-q .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--mist); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .3s, color .3s; }
.faq-item.open .faq-q .ic { background: var(--gold-500); transform: rotate(45deg); }
.faq-q .ic svg { width: 18px; height: 18px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--slate-600); }

/* -------- Blog cards ----------------------------------------------------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); position: relative; display: grid; place-items: center; color: rgba(255,255,255,.15); }
.post-thumb svg { width: 64px; height: 64px; }
.post-thumb .cat { position: absolute; top: 16px; left: 16px; background: var(--gold-500); color: var(--navy-900); font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); }
.post-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 14px; font-size: .82rem; color: var(--slate-400); margin-bottom: 12px; }
.post-body h3 { font-size: 1.28rem; margin-bottom: 10px; }
.post-body h3 a:hover { color: var(--gold-600); }
.post-body p { font-size: .95rem; color: var(--slate-600); flex: 1; }
.post-body .more { margin-top: 18px; font-weight: 700; color: var(--navy-700); display: inline-flex; gap: 7px; align-items: center; }
.post-body .more svg { width: 16px; height: 16px; transition: transform .25s; }
.post-card:hover .more svg { transform: translateX(5px); }

/* -------- Article (single post) ----------------------------------------- */
.article { max-width: 760px; margin-inline: auto; }
.article p { margin: 22px 0; color: var(--slate-600); }
.article h2 { margin: 44px 0 16px; }
.article h3 { margin: 32px 0 12px; }
.article ul.bullets { margin: 20px 0; padding-left: 4px; }
.article ul.bullets li { display: flex; gap: 12px; padding: 9px 0; color: var(--slate-600); }
.article ul.bullets svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }
.article blockquote { border-left: 4px solid var(--gold-500); padding: 6px 0 6px 24px; margin: 30px 0; font-family: var(--serif); font-size: 1.4rem; color: var(--navy-800); font-style: italic; }
.callout { background: var(--mist); border-radius: var(--r-md); padding: 26px 28px; margin: 30px 0; border-left: 4px solid var(--navy-700); }
.callout b { color: var(--navy-800); }

/* -------- Scroll reveal -------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

/* -------- Float anim (decor) -------------------------------------------- */
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* -------- Mobile nav drawer --------------------------------------------- */
.nav-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.nav-drawer .scrim { position: absolute; inset: 0; background: rgba(10,26,54,.5); opacity: 0; transition: opacity .3s; }
.nav-drawer .panel { position: absolute; top: 0; right: 0; width: min(360px, 86vw); height: 100%; background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s var(--ease); padding: 24px; overflow-y: auto; }
.nav-drawer.open { visibility: visible; }
.nav-drawer.open .scrim { opacity: 1; }
.nav-drawer.open .panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.drawer-close { width: 44px; height: 44px; border-radius: 12px; background: var(--mist); display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; }
.nav-drawer .panel a.dl { display: block; padding: 15px 12px; border-radius: var(--r-sm); font-weight: 600; color: var(--navy-800); border-bottom: 1px solid var(--line); }
.nav-drawer .panel a.dl:hover { background: var(--mist); }
.nav-drawer .panel .btn { margin-top: 20px; }

/* -------- Responsive ----------------------------------------------------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-collage { max-width: 520px; margin-inline: auto; }
  .media-split { grid-template-columns: 1fr; gap: 40px; }
  .media-split.flip .media-figure { order: 0; }
  .media-figure .stat-chip { right: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .review { flex-basis: calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .topbar-socials { display: none; }
  .calc { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .float-card.tl { left: 4px; top: 12px; }
  .float-card.br { right: 4px; bottom: 12px; }
  .media-figure .stat-chip { right: 12px; top: 16px; padding: 12px 16px; }
  .grid-2, .grid-3, .grid-4, .stats, .steps { grid-template-columns: 1fr; }
  .review { flex-basis: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-contact { gap: 14px; font-size: .8rem; }
  .calc-grid { grid-template-columns: 1fr; }
}


/* --- Elementor editor: keep reveal content visible while editing --- */
.elementor-editor-active [data-reveal],
.elementor-editor-preview [data-reveal] { opacity: 1 !important; transform: none !important; }