/* =============================================
   GROUP FISCAL BELGIUM — Stylesheet v2
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2d4f;
  --navy-deep: #0f1e36;
  --blue:      #1d4ed8;
  --gold:      #b8962e;
  --gold-lt:   #d4af51;
  --gold-bg:   #fdf8ee;
  --light:     #f5f7fa;
  --white:     #ffffff;
  --gray:      #64748b;
  --gray-lt:   #94a3b8;
  --dark:      #0f172a;
  --border:    #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --radius:    10px;
  --radius-lg: 16px;
  --trans:     .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--gray); line-height: 1.7; }

/* ---- Layout ---- */
.container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 32px;
}
section { padding: 88px 0; }

/* ---- Section Labels ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title { margin-bottom: 14px; }
.section-lead   { max-width: 540px; font-size: 1.05rem; }
.section-head   { margin-bottom: 52px; }
.section-head.center   { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,150,46,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(26,45,79,.35);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: #243d6b;
  border-color: #243d6b;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
}
.navbar-inner {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled .navbar-inner {
  box-shadow: 0 2px 20px rgba(15,23,42,.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-name strong { display: block; font-size: .95rem; font-weight: 700; color: var(--navy); letter-spacing: .01em; font-family: Georgia, serif; }
.logo-name span   { font-size: .68rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-family: -apple-system, sans-serif; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--trans);
}
.nav-link:hover { color: var(--navy); background: var(--light); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-btn { margin-left: 12px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: var(--trans);
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { color: var(--gold); flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #edf2fb 0%, #f5f7fa 40%, #ffffff 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* Background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,46,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,45,79,.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid lines decoration */
.hero-grid-deco {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,45,79,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,45,79,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero text */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,150,46,.1);
  border: 1px solid rgba(184,150,46,.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hero h1 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.hero h1 .highlight { color: var(--gold); font-style: italic; }

.hero-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 36px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.trust-item {}
.trust-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-lbl {
  font-size: .72rem;
  color: var(--gray-lt);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 3px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero card */
.hero-card {
  background: var(--navy);
  border: 1px solid rgba(26,45,79,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.hero-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hc-items { display: flex; flex-direction: column; gap: 10px; }
.hc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  transition: var(--trans);
}
.hc-item:hover { background: rgba(255,255,255,.09); }
.hc-icon {
  width: 34px; height: 34px;
  background: rgba(184,150,46,.18);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-lt);
}
.hc-icon svg { width: 16px; height: 16px; }
.hc-name { font-size: .875rem; font-weight: 600; color: var(--white); display: block; }
.hc-sub  { font-size: .72rem; color: rgba(255,255,255,.45); }

.hero-card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hcf-icon { color: var(--gold); flex-shrink: 0; }
.hcf-icon svg { width: 16px; height: 16px; }
.hcf-text { font-size: .8rem; color: rgba(255,255,255,.5); }
.hcf-text strong { color: var(--gold-lt); }

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.sec-services { background: var(--light); }
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--gold-bg);
  color: var(--gold);
  transition: var(--trans);
}
.svc-icon-wrap svg { width: 22px; height: 22px; stroke-width: 1.75; }
.svc-card:hover .svc-icon-wrap { background: var(--gold); color: var(--white); }

.svc-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.svc-card p  { font-size: .875rem; line-height: 1.6; }
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--trans);
}
.svc-more:hover { gap: 10px; }

/* =============================================
   FISCALITATE SECTION
   ============================================= */
.sec-fiscal { background: var(--white); }
.fiscal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.fiscal-items { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.fiscal-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--trans);
}
.fiscal-item:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.fi-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--trans);
}
.fi-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.fiscal-item:hover .fi-icon { background: var(--gold); color: var(--white); }
.fi-body h4 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.fi-body p  { font-size: .83rem; }

/* Fiscal blue box */
.fiscal-box {
  background: linear-gradient(145deg, var(--navy) 0%, #1e3a6e 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.fiscal-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(184,150,46,.1);
}
.fiscal-box h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; position: relative; z-index: 1; }
.fiscal-box > p { color: rgba(255,255,255,.65); margin-bottom: 28px; font-size: .9rem; position: relative; z-index: 1; }
.fb-checks { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.fb-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 7px;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.05);
}
.fb-check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(184,150,46,.25);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.fb-check-icon svg { width: 10px; height: 10px; stroke-width: 3; }

/* =============================================
   CONSULTANTA
   ============================================= */
.sec-consult { background: var(--light); }
.consult-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.consult-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--trans);
  position: relative;
}
.consult-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cc-num {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: 14px;
}
.consult-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.consult-card p  { font-size: .875rem; }

/* =============================================
   BENEFICII
   ============================================= */
.sec-benefits { background: var(--light); }
.sec-benefits .eyebrow { color: var(--gold); }
.sec-benefits .section-title { color: var(--navy); }
.sec-benefits .section-lead  { color: var(--gray); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--trans);
}
.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ben-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,150,46,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.ben-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.benefit-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.benefit-card p  { color: var(--gray); font-size: .85rem; line-height: 1.6; }

/* =============================================
   CONTACT CTA STRIP
   ============================================= */
.sec-cta {
  background: linear-gradient(135deg, #1a3a70 0%, var(--navy-deep) 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 8px; }
.cta-inner p  { color: rgba(255,255,255,.6); max-width: 480px; }
.cta-btns     { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1a3060 100%);
  padding: 130px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(184,150,46,.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 520px; margin-inline: auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  justify-content: center;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold-lt); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: rgba(255,255,255,.2); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.sec-services-detail { background: var(--white); }

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.flip { direction: rtl; }
.svc-block.flip > * { direction: ltr; }

.sbt-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sbt-tag svg { width: 16px; height: 16px; }

.sbt-features { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.sbt-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray);
}
.sbt-feat-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.sbt-feat-icon svg { width: 9px; height: 9px; stroke-width: 3; }

.sbt-visual {
  background: linear-gradient(145deg, var(--light) 0%, #e8edf8 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.sbt-vis-icon {
  width: 56px; height: 56px;
  background: var(--gold-bg);
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.sbt-vis-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.sbt-visual h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.sbt-visual p  { font-size: .9rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.sec-contact { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(184,150,46,.07);
  pointer-events: none;
}
.contact-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-card > p { color: rgba(255,255,255,.55); font-size: .875rem; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(184,150,46,.12);
  border: 1px solid rgba(184,150,46,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.ci-lbl   { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.35); margin-bottom: 2px; font-weight: 600; }
.ci-value { font-size: .9rem; color: var(--white); font-weight: 500; }
.ci-value a { color: var(--white); }
.ci-value a:hover { color: var(--gold-lt); }

.hours-sep { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.hours-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: rgba(255,255,255,.85); font-weight: 500; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
}
.form-card h3 { color: var(--navy); margin-bottom: 6px; }
.form-card > p { color: var(--gray); font-size: .875rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.form-control {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--trans);
  outline: none;
  resize: none;
}
.form-control::placeholder { color: var(--gray-lt); }
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,45,79,.08);
}
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 130px; }
.form-hint { font-size: .75rem; color: var(--gray-lt); margin-top: 16px; }
.form-submit-row { margin-top: 20px; }
.form-submit-btn { width: 100%; justify-content: center; padding: 14px; font-size: .95rem; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: #15803d;
}
.form-success.show { display: flex; }
.form-success-icon svg { width: 18px; height: 18px; stroke-width: 2; color: #16a34a; }
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  font-size: .875rem;
  color: #b91c1c;
}
.form-error.show { display: flex; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--trans);
  margin-top: 16px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* Map */
.sec-map { background: var(--white); padding: 0 0 88px; }
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer .logo-mark {
  width: 48px;
  height: 48px;
  background: none;
}
.footer .logo-mark img {
  filter: brightness(0) invert(1);
  opacity: .9;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .logo-name strong { color: var(--white); }
.footer .logo-name span   { color: var(--gold); }
.footer {
  background: var(--navy-deep);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: -apple-system, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--gold); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-layout      { grid-template-columns: 1fr; }
  .hero-card        { display: none; }
  .fiscal-grid      { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-block        { grid-template-columns: 1fr; gap: 36px; }
  .svc-block.flip   { direction: ltr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .services-row     { grid-template-columns: repeat(2, 1fr); }
  .consult-cards    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding-inline: 20px; }

  .nav-phone { display: none; }
  .nav-links { display: none; flex-direction: column; gap: 2px; align-items: stretch; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15,23,42,.1);
  }
  .nav-links .nav-btn { display: none; }
  .nav-toggle { display: flex; }

  .benefits-grid    { grid-template-columns: 1fr; }
  .consult-cards    { grid-template-columns: 1fr; }
  .services-row     { grid-template-columns: 1fr; }
  .cta-inner        { flex-direction: column; align-items: flex-start; }
  .footer-top       { grid-template-columns: 1fr; gap: 28px; }
  .form-row         { grid-template-columns: 1fr; }
  .form-card, .contact-card { padding: 28px 22px; }
  .hero-trust       { flex-wrap: wrap; gap: 20px; }
  .hero-btns        { flex-direction: column; }
  .btn              { justify-content: center; }
}
