/* ============================================================
   FreeHomeCMA.com — Redesign Stylesheet
   Brand palette derived from the official logo:
   navy #0B2A6B · blue #1B6FE0 · sky #2FA9E7 · green #57B03E · orange #F2681F
   ============================================================ */

:root {
  --navy-950: #050f30;
  --navy-900: #081a4a;
  --navy: #0b2a6b;
  --blue: #1b6fe0;
  --sky: #2fa9e7;
  --green: #57b03e;
  --green-deep: #3e8f2d;
  --orange: #f2681f;
  --amber: #f5a623;

  --ink: #0f1f3d;
  --slate: #52658a;
  --line: #e3ebf6;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-tint: #eef4fc;

  --grad: linear-gradient(92deg, #1b6fe0 0%, #2fa9e7 28%, #57b03e 60%, #f2681f 100%);
  --grad-blue: linear-gradient(135deg, #1b6fe0, #0b2a6b);
  --grad-navy: linear-gradient(160deg, #0b2a6b 0%, #081a4a 55%, #050f30 100%);

  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;

  --sh-sm: 0 2px 10px rgba(11, 42, 107, .07);
  --sh-md: 0 12px 32px rgba(11, 42, 107, .12);
  --sh-lg: 0 28px 70px rgba(8, 26, 74, .22);

  --nav-h: 78px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: var(--nav-h);
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .55em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; cursor: pointer; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* Brand gradient strip */
.brand-strip { height: 4px; background: var(--grad); }

/* Gradient text */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Icons */
.ico { width: 1.15em; height: 1.15em; flex: none; }
.ico.check { color: var(--green-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700;
  border: none; border-radius: 999px; text-decoration: none;
  padding: 13px 26px; font-size: .98rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #1b6fe0, #0b2a6b 120%);
  box-shadow: 0 10px 24px rgba(27, 111, 224, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(27, 111, 224, .45); }
.btn-ghost {
  color: var(--navy); background: #fff;
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn-dark { color: #fff; background: var(--navy-900); }
.btn-dark:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-nav.scrolled { box-shadow: 0 6px 24px rgba(8, 26, 74, .12); background: rgba(255, 255, 255, .94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: calc(var(--nav-h) - 4px); }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 58px; width: auto; mix-blend-mode: multiply; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-links .nav-cta { color: #fff; }
.nav-links .nav-cta:hover { color: #fff; }
.nav-links a.active:not(.nav-cta) { color: var(--blue); }

.burger { display: none; background: none; border: 0; padding: 10px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11,42,107,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(11,42,107,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob-blue   { width: 520px; height: 520px; background: #bcd9ff; top: -160px; right: -80px; }
.blob-green  { width: 420px; height: 420px; background: #d4f0c4; bottom: -180px; left: -120px; opacity: .55; }
.blob-orange { width: 300px; height: 300px; background: #ffdfc8; top: 40%; left: 42%; opacity: .35; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--sh-sm);
  margin: 0 0 22px;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(87,176,62,.2); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(87,176,62,.12); } }

.hero h1 { font-size: clamp(2.15rem, 4.6vw, 3.55rem); font-weight: 800; }
.hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--slate); max-width: 34rem; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.hero-points li { display: inline-flex; align-items: center; gap: 7px; }

/* Hero visual */
.hero-visual { position: relative; min-height: 460px; }
.photo-card {
  position: absolute; inset: 0 0 40px 24px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 6px solid #fff;
  transform: rotate(1.2deg);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(227,235,246,.9); border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--sh-md);
}
.fc-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 4px; }
.fc-range { left: -6px; top: 38px; animation: floaty 6s ease-in-out infinite; }
.fc-value { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--navy); display: block; }
.fc-trend { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: .82rem; color: var(--green-deep); }
.fc-chart { right: -10px; bottom: 96px; animation: floaty 7s ease-in-out .8s infinite; }
@keyframes floaty { 50% { transform: translateY(-11px); } }

.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 46px; }
.mini-bars i { width: 9px; border-radius: 4px; height: calc(var(--h) * 100%); transform-origin: bottom; animation: barIn .9s cubic-bezier(.2,.9,.3,1.2) both; }
.mini-bars i:nth-child(1) { background: var(--sky); animation-delay: .35s; }
.mini-bars i:nth-child(2) { background: var(--green); animation-delay: .45s; }
.mini-bars i:nth-child(3) { background: #ffd23c; animation-delay: .55s; }
.mini-bars i:nth-child(4) { background: var(--amber); animation-delay: .65s; }
.mini-bars i:nth-child(5) { background: var(--orange); animation-delay: .75s; }
@keyframes barIn { from { transform: scaleY(0); } }

.emblem-badge {
  position: absolute; left: -14px; bottom: -6px;
  width: 118px; height: 118px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--sh-lg);
  border: 4px solid #fff; overflow: hidden;
  animation: floaty 8s ease-in-out .3s infinite;
}
.emblem-badge img { width: 88%; height: auto; }

/* ---------- Service area marquee ---------- */
.strip-wrap { padding: 0; }
.strip { background: var(--grad-navy); overflow: hidden; padding: 15px 0; border-block: 3px solid var(--green); }
.strip-track { display: flex; gap: 0; width: max-content; animation: scrollX 42s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track span { color: rgba(255,255,255,.92); font-weight: 600; font-size: .92rem; letter-spacing: .02em; padding-right: 12px; white-space: nowrap; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 118px) 0; scroll-margin-top: calc(var(--nav-h) + 12px); }
.section-tint { background: linear-gradient(180deg, var(--bg-soft), #fdfefe); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(38px, 5vw, 60px); }
.section-head.light .section-title, .section-head.light .section-lead { color: #fff; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
  background: rgba(27,111,224,.08); border: 1px solid rgba(27,111,224,.18);
  padding: 7px 15px; border-radius: 999px; margin: 0 0 16px;
}
.kicker.light { color: #9fe07f; background: rgba(87,176,62,.14); border-color: rgba(87,176,62,.3); }
.section-title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 800; }
.section-lead { color: var(--slate); font-size: 1.06rem; max-width: 38rem; margin-inline: auto; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 30px 34px; box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }
.step-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 5px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.step-card:hover::after { transform: scaleX(1); }
.step-num {
  position: absolute; top: 10px; right: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 4.4rem;
  color: var(--ink); opacity: .06; line-height: 1;
}
.step-card h3 { font-size: 1.22rem; margin-top: 20px; }
.step-card p { color: var(--slate); margin: 0; font-size: .98rem; }

.step-icon, .feature-icon {
  width: 58px; height: 58px; border-radius: 17px;
  display: grid; place-items: center;
}
.step-icon svg, .feature-icon svg { width: 27px; height: 27px; }
.step-icon.blue, .feature-icon.blue { background: rgba(27,111,224,.1); color: var(--blue); }
.step-icon.green, .feature-icon.green { background: rgba(87,176,62,.12); color: var(--green-deep); }
.step-icon.orange, .feature-icon.orange { background: rgba(242,104,31,.11); color: var(--orange); }

/* ---------- Split (why) ---------- */
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.emblem-frame {
  position: relative; background: #fff; border-radius: var(--r-xl);
  padding: clamp(18px, 3vw, 36px); box-shadow: var(--sh-md);
}
.emblem-frame::before {
  content: ""; position: absolute; inset: -3px; border-radius: calc(var(--r-xl) + 4px); z-index: -1;
  background: var(--grad); opacity: .9;
}
.emblem-frame img { border-radius: var(--r-md); }
.split-copy .section-lead { margin: 0 0 24px; }
.check-list { margin: 0 0 30px; display: grid; gap: 14px; }
.check-list li {
  position: relative; padding-left: 38px; color: var(--slate); font-size: .99rem;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff; font-weight: 800; font-size: .8rem;
  display: grid; place-items: center;
}
.check-list strong { color: var(--ink); }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature-card h3 { font-size: 1.15rem; margin-top: 18px; }
.feature-card p { color: var(--slate); margin: 0; font-size: .95rem; }

/* ---------- Who we serve ---------- */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.serve-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.serve-media { height: 240px; overflow: hidden; }
.serve-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.serve-card:hover .serve-media img { transform: scale(1.05); }
.serve-body { padding: 28px 30px 32px; }
.serve-body h3 { font-size: 1.3rem; }
.serve-body > p { color: var(--slate); font-size: .97rem; }
.serve-body ul { display: flex; flex-direction: column; gap: 8px; }
.serve-body li { position: relative; padding-left: 24px; font-weight: 600; font-size: .93rem; color: var(--ink); }
.serve-body li::before { content: "→"; position: absolute; left: 0; color: var(--green-deep); font-weight: 800; }

/* ---------- Report preview ---------- */
.report-section { background: var(--grad-navy); position: relative; overflow: hidden; }
.report-section::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,169,231,.22), transparent 65%);
  top: -260px; right: -160px;
}
.report-section::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(87,176,62,.18), transparent 65%);
  bottom: -260px; left: -140px;
}
.report-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.report-copy .section-title, .report-copy .section-lead { color: #fff; }
.report-copy .section-lead { color: rgba(255,255,255,.78); margin: 0 0 22px; }
.report-points { display: grid; gap: 10px; margin: 0 0 28px; }
.report-points li { position: relative; padding-left: 28px; color: rgba(255,255,255,.88); font-weight: 600; font-size: .97rem; }
.report-points li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

.report-card {
  background: #fff; border-radius: var(--r-xl); padding: 26px 28px;
  box-shadow: 0 40px 90px rgba(3, 10, 36, .55);
  transform: rotate(.8deg);
}
.rc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.rc-logo { height: 46px; width: auto; mix-blend-mode: multiply; }
.rc-badge {
  font-family: var(--font-head); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); background: rgba(242,104,31,.1); border: 1px solid rgba(242,104,31,.3);
  padding: 5px 12px; border-radius: 999px;
}
.rc-address strong { display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); margin-top: 16px; }
.rc-address span { color: var(--slate); font-size: .88rem; }
.rc-range { margin: 18px 0 20px; padding: 15px 18px; border-radius: var(--r-md); background: var(--bg-soft); border: 1px dashed rgba(27,111,224,.4); }
.rc-range span { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--slate); }
.rc-range strong { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.rc-chart p { font-size: .82rem; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.rc-bars { display: flex; align-items: flex-end; gap: 12px; height: 150px; padding-top: 6px; }
.rc-bar { flex: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 8px; }
.rc-bar i {
  width: 78%; border-radius: 8px 8px 4px 4px; height: 0;
  transition: height 1s cubic-bezier(.25,.9,.3,1.1);
}
.reveal.in .rc-bar i { height: calc(var(--h) * 120px); }
.rc-bar:nth-child(1) i { background: linear-gradient(180deg, var(--sky), var(--blue)); transition-delay: .1s; }
.rc-bar:nth-child(2) i { background: linear-gradient(180deg, #79d05c, var(--green-deep)); transition-delay: .2s; }
.rc-bar:nth-child(3) i { background: linear-gradient(180deg, #ffd23c, var(--amber)); transition-delay: .3s; }
.rc-bar:nth-child(4) i { background: var(--grad-blue); outline: 3px solid rgba(87,176,62,.55); outline-offset: 2px; transition-delay: .4s; }
.rc-bar:nth-child(5) i { background: linear-gradient(180deg, #ff9a5c, var(--orange)); transition-delay: .5s; }
.rc-bar span { font-size: .72rem; font-weight: 700; color: var(--slate); }
.rc-bar.subject span { color: var(--green-deep); }

.rc-foot { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill { font-size: .76rem; font-weight: 700; color: var(--navy); background: var(--bg-tint); border-radius: 999px; padding: 6px 13px; }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.stars { color: var(--amber); font-size: 1.05rem; letter-spacing: 3px; }
.quote-card blockquote { margin: 0; font-size: 1.02rem; color: var(--ink); font-weight: 500; line-height: 1.6; }
.quote-card blockquote::before { content: "“"; color: var(--blue); font-family: var(--font-head); font-weight: 800; font-size: 1.6em; line-height: 0; vertical-align: -.3em; margin-right: 2px; }
.quote-meta { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .9rem;
  background: linear-gradient(135deg, var(--c1, var(--navy)), var(--navy-900));
}
.quote-meta strong { display: block; font-size: .95rem; }
.quote-meta span { font-size: .83rem; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq-list { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-sm); overflow: hidden; }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--ink);
  padding: 22px 28px; transition: color .15s;
}
.faq-q:hover { color: var(--blue); }
.faq-x { position: relative; width: 20px; height: 20px; flex: none; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--blue); border-radius: 3px;
}
.faq-x::before { width: 16px; height: 3px; }
.faq-x::after { width: 3px; height: 16px; transition: transform .25s ease, opacity .25s ease; }
.faq-item.open .faq-x::after { transform: rotate(90deg); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a p { overflow: hidden; min-height: 0; margin: 0; padding: 0 28px; color: var(--slate); font-size: .97rem; transition: padding .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a p { padding-bottom: 24px; }

/* ---------- Contact ---------- */
.contact-section {
  background: var(--grad-navy); position: relative; overflow: hidden;
  border-top: 4px solid transparent;
  border-image: var(--grad) 1;
}
.contact-section::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,111,224,.25), transparent 65%);
  top: -200px; left: -140px;
}
.contact-section::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,104,31,.14), transparent 65%);
  bottom: -220px; right: -120px;
}
.contact-section .container { position: relative; z-index: 1; }
.mail-link { color: #8fd6ff; font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1.35fr .95fr; gap: 30px; align-items: start; }

.contact-card { background: #fff; border-radius: var(--r-xl); padding: clamp(24px, 3.4vw, 40px); box-shadow: 0 40px 80px rgba(3,10,36,.5); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--ink); }
.field label b { color: var(--orange); }
.field input, .field textarea {
  font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; background: var(--bg-soft);
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa8bd; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(27,111,224,.14);
}
.field input.error, .field textarea.error { border-color: #e14b4b; box-shadow: 0 0 0 4px rgba(225,75,75,.12); }
.form-note { margin: 14px 0 0; font-size: .84rem; color: var(--slate); text-align: center; }

.info-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border-radius: var(--r-xl); padding: 32px 30px; color: #fff;
}
.info-logo { height: 60px; width: auto; background: #fff; border-radius: 12px; padding: 5px 10px; margin-bottom: 20px; }
.info-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.info-list { display: grid; gap: 20px; margin-bottom: 24px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.info-list span, .info-list a { color: rgba(255,255,255,.78); font-size: .93rem; text-decoration: none; }
.info-list a:hover { color: #8fd6ff; text-decoration: underline; }
.info-ico {
  width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center;
}
.info-ico svg { width: 21px; height: 21px; }
.info-ico.mail { background: rgba(47,169,231,.18); color: var(--sky); }
.info-ico.pin { background: rgba(87,176,62,.18); color: #8fd66b; }
.info-ico.clock { background: rgba(242,104,31,.18); color: #ffa06b; }
.info-note {
  background: rgba(242,104,31,.12); border: 1px solid rgba(242,104,31,.35);
  border-radius: var(--r-md); padding: 15px 17px; font-size: .86rem; color: rgba(255,255,255,.85);
}
.info-note strong { color: #ffb27a; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 44px;
  padding: clamp(48px, 6vw, 72px) 0 40px;
}
.footer-logo-pill {
  display: inline-block; background: #fff; border-radius: 14px; padding: 8px 14px; margin-bottom: 18px;
}
.footer-logo-pill img { height: 64px; width: auto; }
.footer-brand p { font-size: .93rem; max-width: 32rem; margin: 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong, .footer-contact strong {
  color: #fff; font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 4px;
}
.footer-links a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.72); text-decoration: none; font-size: .95rem; transition: color .15s; }
.footer-links a:hover, .footer-contact a:hover { color: #8fd6ff; }
.footer-cta { align-self: flex-start; margin-top: 8px; }
.footer-cta:hover { color: #fff; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0 26px; font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 300;
  transform: translate(-50%, 24px); opacity: 0; pointer-events: none;
  background: var(--navy-900); color: #fff; border-radius: 999px;
  padding: 14px 26px; font-weight: 600; font-size: .95rem;
  box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.15);
  transition: transform .3s ease, opacity .3s ease; max-width: 90%;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.success { background: linear-gradient(120deg, var(--green-deep), #2c6b20); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 620px; margin-inline: auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-media { max-width: 560px; margin-inline: auto; width: 100%; }
  .features-grid, .steps-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .report-wrap { grid-template-columns: 1fr; gap: 50px; }
  .report-card { max-width: 560px; margin-inline: auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-card { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .burger { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; box-shadow: 0 24px 40px rgba(8,26,74,.16);
    padding: 14px 20px 20px; border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 6px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links .nav-cta { text-align: center; margin-top: 10px; justify-content: center; }
}

@media (max-width: 700px) {
  .features-grid, .steps-grid, .quotes-grid, .serve-grid, .form-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 50px; }
  .hero-visual { min-height: auto; display: grid; gap: 14px; }
  .photo-card { position: relative; inset: auto; height: 300px; transform: none; }
  .float-card, .emblem-badge { position: relative; inset: auto; animation: none; }
  .emblem-badge { display: none; }
  .fc-range, .fc-chart { width: 100%; }
  .rc-bars { gap: 7px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-legal { flex-direction: column; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .rc-bar i { height: calc(var(--h) * 120px) !important; }
}

/* ============================================================
   Seller spotlight ("Sell With PK") — gold accent theme
   ============================================================ */
.seller-section {
  background: var(--grad-navy);
  position: relative; overflow: hidden;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #d4af37, #f7e08b, #d4af37) 1;
}
.seller-section::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.16), transparent 65%);
  top: -240px; left: -160px;
}
.seller-section::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,111,224,.2), transparent 65%);
  bottom: -240px; right: -140px;
}
.seller-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 68px); align-items: center;
}

/* Business card in an elegant frame */
.bcard-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(212,175,55,.55);
  box-shadow: 0 34px 80px rgba(3,10,36,.6), 0 0 0 8px rgba(212,175,55,.10);
  transform: rotate(-1.2deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.bcard-frame:hover { transform: rotate(0) translateY(-7px); box-shadow: 0 44px 95px rgba(3,10,36,.7), 0 0 0 8px rgba(212,175,55,.16); }
.bcard-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.22) 49%, transparent 62%);
  transform: translateX(-130%);
}
.bcard-frame:hover::after { transform: translateX(130%); transition: transform .8s ease; }
.bcard-frame img { width: 100%; height: auto; display: block; }

/* Gold accents */
.kicker.gold { color: #f5d76e; background: rgba(212,175,55,.12); border-color: rgba(212,175,55,.4); }
.grad-text-gold {
  background: linear-gradient(92deg, #d4af37, #f9e89b 50%, #d4af37);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.btn-gold {
  color: #241a06; background: linear-gradient(120deg, #f5d76e, #d4af37 55%, #c9971f);
  box-shadow: 0 12px 28px rgba(212,175,55,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(212,175,55,.45); filter: brightness(1.05); }
.btn-outline-light { color: #fff; background: transparent; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: #f5d76e; color: #f5d76e; transform: translateY(-2px); }

/* Seller copy */
.seller-copy .section-title { color: #fff; }
.seller-copy .section-lead { color: rgba(255,255,255,.78); margin: 0 0 26px; }
.seller-copy .section-lead strong { color: #f5d76e; }
.seller-points { display: grid; gap: 13px; margin: 0 0 30px; }
.seller-points li { position: relative; padding-left: 36px; color: rgba(255,255,255,.9); font-size: .98rem; }
.seller-points li strong { color: #f5d76e; }
.seller-points li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #f5d76e, #c9971f);
  color: #241a06; font-weight: 800; font-size: .76rem;
  display: grid; place-items: center;
}
.seller-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.seller-meta { margin: 0; font-size: .93rem; color: rgba(255,255,255,.6); }
.seller-meta a { color: #cfdcff; font-weight: 600; text-decoration: none; transition: color .15s; }
.seller-meta a:hover { color: #f5d76e; text-decoration: underline; }

/* Form select (dropdown) styling — matches inputs */
.field select {
  font: inherit; color: var(--ink); width: 100%;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 42px 13px 15px; background: var(--bg-soft);
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1.5 1.5 7 7l5.5-5.5' stroke='%2352658a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field select:focus {
  outline: none; border-color: var(--blue); background-color: #fff;
  box-shadow: 0 0 0 4px rgba(27,111,224,.14);
}

@media (max-width: 1020px) {
  .seller-grid { grid-template-columns: 1fr; gap: 40px; }
  .bcard-frame { max-width: 540px; margin-inline: auto; width: 100%; }
}

/* Honeypot anti-spam field — hidden from humans, irresistible to bots */
.hp-field {
  position: absolute !important; left: -9999px !important; top: -9999px !important;
  width: 1px !important; height: 1px !important; opacity: 0 !important;
  overflow: hidden !important; border: 0 !important; padding: 0 !important;
}
