/* ========================================================================
   Finantregy — landing page styles
   Palette: navy / dark blue / accent blue / gold / grays
   Font: Inter (Google Fonts), fallback Arial, Helvetica, sans-serif
   ======================================================================== */

:root {
  --navy:         #0A1628;
  --navy-2:       #1B3A5C;
  --accent-blue:  #2E75B6;
  --gold:         #C8A951;
  --gold-soft:    #d8bd6e;
  --gold-deep:    #a98a35;
  --ink:          #333333;
  --ink-mute:     #666666;
  --hair:         #E0E0E0;
  --hair-soft:    #ECECEC;
  --bg:           #FFFFFF;
  --bg-alt:       #F5F5F5;
  --whatsapp:     #25D366;

  --shadow-card:  0 1px 2px rgba(10,22,40,.04), 0 10px 30px -12px rgba(10,22,40,.10);
  --shadow-nav:   0 1px 0 rgba(10,22,40,.05), 0 8px 20px -12px rgba(10,22,40,.18);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --easing: cubic-bezier(.2,.7,.2,1);
}

/* Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: var(--accent-blue); text-decoration: none; }
a:hover { color: var(--navy-2); }
h1, h2, h3, h4 { color: var(--navy); margin: 0; line-height: 1.2; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* Layout helpers ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section {
  padding: 96px 0;
}
@media (min-width: 1024px) {
  .section { padding: 120px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.on-dark { color: rgba(255,255,255,.7); }
.eyebrow.on-dark::before { background: var(--gold); }

.section-title {
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 720px;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-rule {
  width: 56px; height: 2px;
  background: var(--gold);
  margin: 16px 0 0;
  border: 0;
}
.section-rule.center { margin-left: auto; margin-right: auto; }

.section-intro {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 620px;
}
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .005em;
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy);
  transition: background .25s var(--easing), color .25s var(--easing),
              border-color .25s var(--easing), transform .25s var(--easing),
              box-shadow .25s var(--easing);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px -12px rgba(200,169,81,.6);
}
.btn--gold:hover {
  background: var(--gold-deep);
  color: var(--navy);
  box-shadow: 0 14px 30px -14px rgba(200,169,81,.7);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-2);
  color: #fff;
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #053b18;
}
.btn--whatsapp:hover {
  background: #1fbb5c;
  color: #053b18;
}
.btn--ghost {
  border-color: var(--hair);
  color: var(--navy);
}
.btn--ghost:hover { border-color: var(--navy); }

/* Navbar -------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .35s var(--easing), box-shadow .35s var(--easing), padding .35s var(--easing);
  background: transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color .35s var(--easing);
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.nav__logo .logo-f {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.nav__links {
  display: none;
  gap: 4px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
}
.nav__links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .25s var(--easing);
}
.nav__links a:hover { color: #fff; }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
  transition: border-color .35s var(--easing), background .35s var(--easing);
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  color: rgba(255,255,255,.7);
  border-radius: 999px;
  transition: background .25s var(--easing), color .25s var(--easing);
  letter-spacing: .08em;
}
.lang-toggle button:hover { color: #fff; }
.lang-toggle button.is-active {
  background: var(--gold);
  color: var(--navy);
}
.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: #fff;
  transition: background .25s var(--easing), border-color .25s var(--easing);
}
@media (min-width: 900px) { .nav__burger { display: none; } }
.nav__burger svg { width: 18px; height: 18px; }

/* Scrolled state — solid white nav */
.nav.is-scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-nav);
  padding: 12px 0;
}
.nav.is-scrolled .nav__logo { color: var(--navy); }
.nav.is-scrolled .nav__links a { color: var(--ink-mute); }
.nav.is-scrolled .nav__links a:hover,
.nav.is-scrolled .nav__links a.is-active { color: var(--navy); }
.nav.is-scrolled .lang-toggle {
  border-color: var(--hair);
  background: #fff;
}
.nav.is-scrolled .lang-toggle button { color: var(--ink-mute); }
.nav.is-scrolled .lang-toggle button.is-active { color: var(--navy); background: var(--gold); }
.nav.is-scrolled .nav__burger {
  border-color: var(--hair);
  background: #fff;
  color: var(--navy);
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--navy);
  color: #fff;
  padding: 24px 28px 28px;
  transform: translateY(-101%);
  transition: transform .4s var(--easing);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.mobile-menu__top .nav__logo { color: #fff; }
.mobile-menu__close {
  background: transparent; border: 0; color: #fff;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu__cta { margin-top: 24px; }

/* Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: radial-gradient(120% 80% at 80% 0%, #163559 0%, #0A1628 55%, #06101e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .9;
}
.hero__bg svg { width: 100%; height: 100%; }
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 80px; }
}
.hero__title {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 760px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 60%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
}
.hero__cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.hero__meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  max-width: 420px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__meta-item .num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
.hero__meta-item .lbl {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* Hero side card — abstract data composition */
.hero__side {
  position: relative;
  display: none;
}
@media (min-width: 980px) { .hero__side { display: block; } }
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
}
.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.hero-card__head span:last-child {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold);
}
.hero-card__head .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,81,.18);
}
.hero-card__chart {
  height: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(46,117,182,.10), rgba(46,117,182,0));
  position: relative;
  overflow: hidden;
}
.hero-card__chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-card__rows {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.hero-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.hero-card__row .bar {
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.hero-card__row .bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--gold));
  border-radius: 999px;
}
.hero-card__row .val { font-variant-numeric: tabular-nums; color: #fff; font-weight: 600; }
.hero-card__row.kind {
  grid-template-columns: 96px 1fr auto;
}
.hero-card__floater {
  position: absolute;
  right: -22px; bottom: -22px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55);
}
.hero-card__floater .ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(200,169,81,.14);
  color: var(--gold);
  border-radius: 8px;
}
.hero-card__floater .meta .t { color: #fff; font-weight: 600; font-size: 13px; }
.hero-card__floater .meta .s { color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .04em; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  z-index: 3;
}
.hero__scroll svg {
  width: 14px; height: 22px;
  animation: bob 2.2s var(--easing) infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Services ------------------------------------------------------------ */
.services { background: #fff; }
.services__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  text-align: center;
  justify-items: center;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 780px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .35s var(--easing), box-shadow .35s var(--easing), border-color .35s var(--easing);
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--easing);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(10,22,40,.18);
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.svc-card__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(10,22,40,.04);
  color: var(--navy);
  margin-bottom: 22px;
  transition: background .35s var(--easing), color .35s var(--easing);
}
.svc-card:hover .svc-card__icon {
  background: rgba(200,169,81,.16);
  color: var(--gold-deep);
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.svc-card p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
  opacity: .8;
}
.svc-card__more svg { width: 14px; height: 14px; transition: transform .35s var(--easing); }
.svc-card:hover .svc-card__more svg { transform: translateX(4px); }

/* About --------------------------------------------------------------- */
.about { background: var(--bg-alt); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .about__grid { grid-template-columns: 1.05fr 1fr; gap: 88px; }
}
.about__title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.about__rule { margin: 16px 0 28px; }
.about__copy p + p { margin-top: 18px; }
.about__copy p { color: var(--ink); font-size: 16.5px; line-height: 1.7; }

.about__stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}
.about__stats > div {
  padding: 20px 16px 0 0;
}
.about__stats > div + div { border-left: 1px solid var(--hair); padding-left: 20px; }
.about__stats .v {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}
.about__stats .v .accent { color: var(--gold); }
.about__stats .l {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* About illustration */
.about__viz {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 60% at 70% 10%, rgba(46,117,182,.10), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #eef1f5 100%);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.about__viz svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about__viz .tag {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--hair);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px -10px rgba(10,22,40,.18);
}
.about__viz .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.about__viz .tag--a { top: 8%; left: 8%; }
.about__viz .tag--b { top: 44%; right: 6%; }
.about__viz .tag--c { bottom: 9%; left: 18%; }

/* Credentials bar ----------------------------------------------------- */
.creds {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.creds::before, .creds::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: rgba(255,255,255,.06);
}
.creds::before { left: 12%; }
.creds::after  { right: 12%; }
.creds__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
}
@media (min-width: 780px) {
  .creds__grid { grid-template-columns: repeat(2,minmax(0,320px)); gap: 24px; justify-content: center; }
}
.cred {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cred__icon {
  width: 48px; height: 48px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  background: rgba(200,169,81,.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(200,169,81,.25);
}
.cred__icon svg { width: 22px; height: 22px; }
.cred__text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
}
.cred__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* FAQ ----------------------------------------------------------------- */
.faq { background: #fff; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 980px) {
  .faq__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); gap: 80px; align-items: start; }
}
.faq__head .section-title { font-size: clamp(28px, 3vw, 36px); }
.faq__head p { color: var(--ink-mute); margin-top: 18px; max-width: 360px; }
.faq__list {
  border-top: 1px solid var(--hair);
}
.faq__item {
  border-bottom: 1px solid var(--hair);
}
.faq__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: color .25s var(--easing);
}
.faq__btn:hover { color: var(--accent-blue); }
.faq__btn .q-num {
  flex: 0 0 auto;
  width: 26px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  margin-top: 4px;
}
.faq__btn .q-text { flex: 1; }
.faq__btn .q-toggle {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.faq__btn .q-toggle::before,
.faq__btn .q-toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .35s var(--easing), background .25s var(--easing);
}
.faq__btn .q-toggle::before { width: 12px; height: 2px; }
.faq__btn .q-toggle::after  { width: 2px; height: 12px; }
.faq__item.is-open .q-toggle::after { transform: scaleY(0); }
.faq__item.is-open .faq__btn { color: var(--accent-blue); }
.faq__item.is-open .q-toggle::before { background: var(--accent-blue); }

.faq__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--easing);
}
.faq__panel-inner {
  padding: 0 50px 24px 26px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
}

/* Contact ------------------------------------------------------------- */
.contact { background: var(--bg-alt); }
.contact__head {
  text-align: center;
  margin-bottom: 56px;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 780px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.contact-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s var(--easing), transform .35s var(--easing);
}
.contact-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.contact-card__row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}
.contact-card__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
}
.contact-card--wa .contact-card__icon {
  background: rgba(37,211,102,.14);
  color: var(--whatsapp);
}
.contact-card--email .contact-card__icon {
  background: rgba(10,22,40,.06);
  color: var(--navy);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-mute);
}
.contact-card__lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}
.contact-card__hint {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 24px;
  flex: 1;
}
.contact-card__cta {
  align-self: flex-start;
}

/* Footer -------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 780px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}
.footer__brand .logo {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer__brand .logo .logo-f { color: var(--gold); font-style: italic; }
.footer__brand .tagline {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__brand p {
  margin-top: 20px;
  max-width: 360px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.footer__col h4 {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.footer__col a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__bottom .dot {
  display: inline-block;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  margin: 0 10px; vertical-align: middle;
}

/* Misc ---------------------------------------------------------------- */
.no-scroll { overflow: hidden; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
