/* ============================================================
   İnvest Home — sadə premium landing
   Açıq tema · #1e8776 aksent · Manrope
   ============================================================ */

:root {
  --brand: #1e8776;
  --brand-dark: #14655a;
  --brand-deep: #0d3a34;
  --brand-tint: #e8f2ef;
  --brand-tint-2: #f2f7f5;
  --ink: #1c2422;
  --text: #38423f;
  --muted: #6d7a76;
  --bg: #faf9f5;
  --surface: #ffffff;
  --line: #e5e4dc;
  --gold: #c9a86a;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20, 40, 36, 0.05);
  --shadow-md: 0 12px 34px rgba(20, 40, 36, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 58, 52, 0.16);
  --container: 1200px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.8,.3,1); }
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
}
.btn:active { transform: scale(.97); }
.btn svg { flex: none; }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 135, 118, 0.32);
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(30,135,118,.38); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn--light {
  background: #fff;
  color: var(--brand-deep);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }

.btn--wa {
  background: #1faf5e;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,175,94,.30);
}
.btn--wa:hover { background: #17924e; transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(20,40,36,.06); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}

.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__brand img { width: 58px; height: 58px; }
.nav__brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name b { font-size: 21px; font-weight: 800; letter-spacing: .10em; color: var(--ink); }
.nav__brand-name span { font-size: 12.5px; font-weight: 700; letter-spacing: .34em; color: var(--brand); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 15px; color: var(--ink);
}
.nav__phone:hover { color: var(--brand); }
.nav__cta .btn { padding: 12px 22px; font-size: 14.5px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s, top .3s;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -22%;
  width: 68vw; height: 68vw;
  background: radial-gradient(circle, rgba(30,135,118,.10) 0%, rgba(30,135,118,0) 62%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  font-size: 13.5px; font-weight: 700; letter-spacing: .06em;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__tag::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,135,118,.45); }
  55% { box-shadow: 0 0 0 8px rgba(30,135,118,0); }
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero h1 em svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%; height: 14px;
}

.hero__sub {
  font-size: clamp(16.5px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero__points { display: flex; flex-wrap: wrap; gap: 26px; }
.hero__point { display: flex; align-items: center; gap: 11px; }
.hero__point svg { flex: none; color: var(--brand); }
.hero__point span { font-size: 14.5px; font-weight: 600; color: var(--text); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 10 / 11;
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }

.hero__card {
  position: absolute;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229,228,220,.9);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  animation: float 5.5s ease-in-out infinite;
}
.hero__card svg { flex: none; color: var(--brand); }
.hero__card b { display: block; font-size: 14.5px; color: var(--ink); line-height: 1.3; }
.hero__card span { font-size: 12.5px; color: var(--muted); }
.hero__card--1 { top: 7%; left: -34px; }
.hero__card--2 { bottom: 9%; right: -26px; animation-delay: -2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 54px;
  white-space: nowrap;
}
.marquee__track span::after {
  content: "";
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  opacity: .6;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
.section { padding: clamp(76px, 9vw, 120px) 0; }
.section--alt { background: var(--surface); }
.section__head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section__head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 16px;
}
.section__head p { color: var(--muted); font-size: 17px; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.about__visual { position: relative; }
.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 6;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  right: -22px; bottom: 46px;
  background: var(--brand-deep);
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.about__badge b { display: block; font-size: 17px; line-height: 1.35; margin-bottom: 4px; }
.about__badge span { font-size: 13px; color: rgba(255,255,255,.72); }

.about__body h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.about__body > p { color: var(--muted); margin-bottom: 16px; }
.about__body > p b { color: var(--text); }

.values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.value {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.value:hover { border-color: rgba(30,135,118,.45); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value svg { flex: none; color: var(--brand); }
.value span { font-size: 14.5px; font-weight: 700; color: var(--ink); }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.service:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service__media { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.service:hover .service__media img { transform: scale(1.06); }
.service__icon {
  position: absolute;
  left: 18px; bottom: -26px;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--brand-deep);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(13,58,52,.30);
  z-index: 2;
}
.service__body { padding: 40px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service__body h3 { font-size: 19.5px; font-weight: 800; color: var(--ink); margin-bottom: 9px; letter-spacing: -.01em; }
.service__body p { font-size: 15px; color: var(--muted); margin-bottom: 16px; flex: 1; }
.service__meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-tint);
  border-radius: 999px;
  padding: 7px 14px;
  width: fit-content;
}

/* ---------- İpoteka (mortgage) ---------- */
.mortgage {
  position: relative;
  background: var(--brand-deep);
  color: #fff;
  overflow: hidden;
}
.mortgage::before {
  content: "";
  position: absolute;
  top: -40%; left: -12%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(30,135,118,.34) 0%, transparent 62%);
}
.mortgage::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 240px;
  background: url("../images/hero.jpg") bottom / cover;
  opacity: .10;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(transparent, #000);
  mask-image: linear-gradient(transparent, #000);
}
.mortgage .container { position: relative; z-index: 2; }
.mortgage .eyebrow { color: #7fd4c4; }
.mortgage h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.14;
  margin-bottom: 16px;
  max-width: 640px;
}
.mortgage__lead { color: rgba(255,255,255,.75); max-width: 620px; margin-bottom: 46px; font-size: 17px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 26px 22px 22px;
  transition: background .3s, transform .3s;
}
.step:hover { background: rgba(255,255,255,.10); transform: translateY(-5px); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #7fd4c4;
  margin-bottom: 14px;
}
.step b { display: block; font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14px; color: rgba(255,255,255,.66); }

.mortgage__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Join (Agent / Ofis) ---------- */
.join__tabs {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-inline: auto;
  gap: 4px;
}
.join__tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  transition: background .3s, color .3s, box-shadow .3s;
}
.join__tab.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(30,135,118,.30);
}
.join__tabs-wrap { text-align: center; margin-bottom: 46px; }

.join__panel { display: none; }
.join__panel.active { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } }

.join__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.join__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
}
.join__img img { width: 100%; height: 100%; object-fit: cover; }
.join__body h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; color: var(--ink); letter-spacing: -.014em; line-height: 1.18; margin-bottom: 14px; }
.join__body > p { color: var(--muted); margin-bottom: 22px; }

.join__list { display: grid; gap: 12px; margin-bottom: 28px; }
.join__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.join__list svg { flex: none; color: var(--brand); margin-top: 3px; }

/* ---------- Forms ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 13px 16px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,135,118,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #a3aca9; }

.field--file input {
  padding: 11px 14px;
  background: var(--bg);
}
.field--file input::file-selector-button {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-tint);
  border: 0;
  border-radius: 9px;
  padding: 8px 14px;
  margin-right: 12px;
  cursor: pointer;
}
.field small { font-size: 12.5px; color: var(--muted); }

.form__note { font-size: 14.5px; font-weight: 600; min-height: 20px; }
.form__note.ok { color: var(--brand-dark); }
.form__note.err { color: #b3452f; }

.form__cv-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  padding-top: 4px;
  border-top: 1px dashed var(--line);
}
.form__cv-note a { color: var(--brand-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact__info > p { color: var(--muted); margin-bottom: 30px; max-width: 440px; }

.contact__items { display: grid; gap: 14px; margin-bottom: 34px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.contact__item:hover { border-color: rgba(30,135,118,.45); transform: translateX(5px); box-shadow: var(--shadow-sm); }
.contact__item-icon {
  width: 48px; height: 48px;
  flex: none;
  border-radius: 13px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
}
.contact__item span { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact__item b { font-size: 16.5px; color: var(--ink); }

.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: border-color .3s, color .3s, transform .3s, background .3s;
}
.social:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-3px); background: var(--brand-tint-2); }
.social svg { flex: none; }

/* ---------- CTA band ---------- */
.band {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 58px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  right: -60px; top: -70px;
  width: 320px; height: 320px;
  border: 44px solid rgba(255,255,255,.10);
  border-radius: 50%;
}
.band h3 { font-size: clamp(22px, 2.6vw, 31px); font-weight: 800; letter-spacing: -.012em; line-height: 1.2; margin-bottom: 8px; }
.band p { color: rgba(255,255,255,.82); font-size: 16px; max-width: 480px; }
.band__actions { display: flex; gap: 13px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-deep);
  color: rgba(255,255,255,.72);
  padding: 64px 0 30px;
  margin-top: clamp(76px, 9vw, 120px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.footer__brand img { width: 52px; height: 52px; margin-bottom: 16px; filter: drop-shadow(0 0 1px rgba(255,255,255,.4)); background: #fff; border-radius: 13px; padding: 7px; }
.footer__brand p { font-size: 14.5px; max-width: 300px; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 15px; transition: color .25s; }
.footer ul a:hover { color: #7fd4c4; }
.footer__contact li { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.footer__contact svg { flex: none; color: #7fd4c4; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: rgba(255,255,255,.8);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.footer__socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1faf5e;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(31,175,94,.42);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.09); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(31,175,94,.55);
  animation: waping 2s infinite;
}
@keyframes waping {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1060px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 78px;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(20,40,36,.10);
    padding: 10px 24px 18px;
  }
  .nav__links.open a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__links.open a:last-child { border-bottom: 0; }
  .nav__links.open a::after { display: none; }
  .nav__phone { display: none; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hero { padding-top: 128px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .hero__card--1 { left: -8px; }
  .hero__card--2 { right: -8px; }
  .about__grid, .join__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 480px; }
  .about__badge { right: 8px; }
  .join__img { order: -1; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .services__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .band { text-align: center; justify-content: center; }
  .band__actions { justify-content: center; width: 100%; }
  .band__actions .btn { width: 100%; justify-content: center; }
  .mortgage__actions .btn { width: 100%; justify-content: center; }
  .join__tab { padding: 11px 20px; font-size: 14px; }
  .hero__card { padding: 12px 15px; }
  .hero__card b { font-size: 13px; }
  .hero__card span { font-size: 11.5px; }
}
