/* ============================================================
   V CONSULTING COMPANY — DESIGN SYSTEM
   Advocate & Consultant — Legal & HR Compliance
   ============================================================ */

:root {
  /* Color tokens */
  --navy-950: #0a1729;
  --navy-900: #0e1e36;
  --navy-800: #142c4c;
  --navy-700: #1c3a63;
  --charcoal: #23262b;
  --ink: #1a1d22;
  --gold-600: #a9843f;
  --gold-500: #bd9750;
  --gold-400: #d3b06d;
  --gold-100: #f4e9d3;
  --paper: #faf8f4;
  --white: #ffffff;
  --line: #e7e1d4;
  --line-dark: rgba(212, 176, 109, 0.18);
  --muted: #6b7178;
  --muted-light: rgba(250, 248, 244, 0.68);

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", serif;
  --font-body: "Manrope", "Inter", sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20, 30, 50, 0.06);
  --shadow: 0 12px 40px rgba(14, 23, 41, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 17, 30, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow.on-dark { color: var(--gold-400); }

.section { padding: 108px 0; }
.section-tight { padding: 72px 0; }
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 52px 0; }
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-top: 14px;
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 10px 26px rgba(169, 132, 63, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(169, 132, 63, 0.42); }

.btn-navy {
  background: var(--navy-950);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid var(--navy-950);
}
.btn-outline:hover { background: var(--navy-950); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--gold-400); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-600);
  transition: gap 0.3s var(--ease);
}
.link-gold:hover { gap: 13px; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--navy-950);
  color: var(--muted-light);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-services span { color: var(--gold-400); margin: 0 10px; }
.topbar-services span:first-child { margin-left: 0; }
.topbar-contact { display: flex; gap: 22px; align-items: center; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted-light); transition: color 0.25s ease; }
.topbar-contact a:hover { color: var(--gold-400); }
.topbar-contact svg { width: 13px; height: 13px; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s ease, padding 0.35s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(14,23,41,0.07); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.35s ease;
}
.site-header.scrolled .nav-row { padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.05;
}
.brand-text .brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  margin-top: 3px;
}
@media (max-width: 560px) { .brand-text .brand-tag { display: none; } }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 5px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--navy-950); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { display: none; }
@media (min-width: 1080px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-950);
}
.hamburger span { width: 18px; height: 2px; background: var(--gold-400); margin: 0 auto; transition: all 0.3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  padding: 26px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 46px; }
.mobile-menu-close { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.mobile-menu-close svg { width: 18px; height: 18px; stroke: var(--gold-400); }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 17px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav a span { color: var(--gold-400); font-size: 0.8rem; font-family: var(--font-body); }
.mobile-menu-footer { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu-footer a { color: var(--muted-light); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }

/* ============================================================
   FLOATING CONTACT
   ============================================================ */
.float-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}
.float-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: all 0.32s var(--ease);
}
.float-options.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-950);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-option:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); }
.float-option .icon-circle { width: 30px; height: 30px; }

.float-main {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1eb757);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  position: relative;
}
.float-main svg { width: 28px; height: 28px; fill: var(--white); z-index: 2; }
.float-main::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

.icon-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 16px; height: 16px; }
.icon-circle.whatsapp { background: rgba(37, 211, 102, 0.12); }
.icon-circle.whatsapp svg { fill: #1eb757; }
.icon-circle.call { background: rgba(20, 44, 76, 0.08); }
.icon-circle.call svg { fill: var(--navy-900); }
.icon-circle.mail { background: rgba(189, 151, 80, 0.15); }
.icon-circle.mail svg { fill: var(--gold-600); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 92px 0 60px;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 56px 0 40px; }
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  margin-top: 18px;
  color: var(--navy-950);
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lead {
  margin-top: 22px;
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 520px;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-line {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy-800);
  flex-wrap: wrap;
}
.trust-line .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10,23,41,0) 40%, rgba(10,23,41,0.55) 100%);
}
.hero-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  max-width: 240px;
}
.hero-badge .name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy-950); }
.hero-badge .role { font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin-top: 2px; }

.hero-ring {
  position: absolute;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring.r1 { width: 480px; height: 480px; top: -140px; right: -160px; }
.hero-ring.r2 { width: 300px; height: 300px; top: 60%; left: -120px; }
@media (max-width: 980px) { .hero-ring { display: none; } }

/* ============================================================
   TRUST / STATS STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-card {
  padding: 42px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.3s ease;
}
.trust-card:last-child { border-right: none; }
.trust-card:hover { background: var(--paper); }
.trust-card .ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-card .ic svg { width: 22px; height: 22px; stroke: var(--gold-600); }
.trust-card h4 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 800; color: var(--navy-950); }
.trust-card p { font-size: 0.86rem; color: var(--muted); margin-top: 4px; }
@media (max-width: 980px) { .trust-strip-grid { grid-template-columns: repeat(2, 1fr); } .trust-card { border-bottom: 1px solid var(--line); } }
@media (max-width: 560px) { .trust-strip-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 940px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-visual { position: relative; }
.about-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  box-shadow: var(--shadow);
}
.about-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .seal {
  position: absolute;
  bottom: -34px; right: -24px;
  width: 118px; height: 118px;
  background: var(--navy-950);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-visual .seal svg { width: 52px; height: 52px; }
@media (max-width: 560px) { .about-visual .seal { width: 88px; height: 88px; right: -10px; bottom: -20px; } .about-visual .seal svg { width: 38px; height: 38px; } }

.about-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-top: 14px; }
.about-copy p.body { margin-top: 20px; color: var(--muted); font-size: 1.04rem; max-width: 560px; }

.about-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
}
.about-highlights svg { width: 17px; height: 17px; stroke: var(--gold-600); flex-shrink: 0; }
@media (max-width: 560px) { .about-highlights { grid-template-columns: 1fr; } }

.about-copy .btn { margin-top: 34px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--white); }
.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.service-tab {
  padding: 13px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.service-tab.active { color: var(--navy-950); border-color: var(--gold-500); }
.service-tab:hover { color: var(--navy-950); }

.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 940px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-400); }
.service-card .num { font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-500); font-weight: 700; }
.service-card h4 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 800; margin-top: 10px; color: var(--navy-950); }
.service-card p { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }
.service-card .link-gold { margin-top: 16px; font-size: 0.82rem; }

/* Featured services */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 940px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-card {
  position: relative;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.featured-card:hover { transform: translateY(-6px); }
.featured-card::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,176,109,0.18), transparent 70%);
}
.featured-card .ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(212,176,109,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.featured-card .ic svg { width: 26px; height: 26px; stroke: var(--gold-400); }
.featured-card h3 { color: var(--white); font-size: 1.4rem; }
.featured-card p.desc { color: var(--muted-light); margin-top: 12px; font-size: 0.95rem; }
.featured-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.featured-card ul li { display: flex; gap: 9px; font-size: 0.86rem; color: rgba(250,248,244,0.85); align-items: flex-start; }
.featured-card ul li svg { width: 14px; height: 14px; stroke: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.featured-card .link-gold { margin-top: 26px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section .section-head h2 { color: var(--white); }
.why-section .section-head p { color: var(--muted-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--navy-900);
  padding: 38px 30px;
  transition: background 0.35s ease;
}
.why-card:hover { background: var(--navy-800); }
.why-card .mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card .mark svg { width: 20px; height: 20px; stroke: var(--gold-400); }
.why-card h4 { color: var(--white); font-family: var(--font-body); font-size: 1rem; font-weight: 800; }
.why-card p { color: var(--muted-light); font-size: 0.88rem; margin-top: 8px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0, var(--gold-500) 8px, transparent 8px, transparent 16px);
}
@media (max-width: 860px) {
  .process-track { grid-template-columns: 1fr; gap: 36px; }
  .process-track::before { top: 0; bottom: 0; left: 27px; width: 1px; height: auto; right: auto; background: repeating-linear-gradient(180deg, var(--gold-500) 0, var(--gold-500) 8px, transparent 8px, transparent 16px); }
}
.process-step { position: relative; padding: 0 24px; text-align: left; }
@media (max-width: 860px) { .process-step { padding-left: 64px; } }
.process-step .step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
@media (max-width: 860px) { .process-step .step-num { position: absolute; left: 0; top: 0; margin-bottom: 0; } }
.process-step h4 { font-size: 1.08rem; }
.process-step p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; max-width: 240px; }

/* ============================================================
   PROFILE
   ============================================================ */
.profile-section { background: var(--white); }
.profile-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 940px) { .profile-grid { grid-template-columns: 1fr; gap: 40px; } }
.profile-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/3.7;
  box-shadow: var(--shadow-lg);
}
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; }
.profile-portrait .tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(10,23,41,0.92), transparent);
  padding: 30px 22px 20px;
  color: var(--white);
}
.profile-portrait .tag .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.profile-portrait .tag .role { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-400); font-weight: 700; margin-top: 4px; }

.profile-copy p.lead { color: var(--muted); font-size: 1.05rem; margin-top: 18px; max-width: 560px; }
.profile-areas { margin-top: 30px; }
.profile-areas h5 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-950); font-weight: 800; margin-bottom: 16px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.profile-tags span {
  padding: 9px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-800);
}
.profile-copy .btn { margin-top: 34px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 66px 56px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; top: -80px; right: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(212,176,109,0.25);
}
.cta-banner-text h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 560px; }
.cta-banner-text p { color: var(--muted-light); margin-top: 12px; max-width: 480px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; flex-shrink: 0; }
.cta-phone { color: var(--gold-400); font-weight: 800; font-size: 1.1rem; }
@media (max-width: 820px) {
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 44px 28px; text-align: left; }
  .cta-banner-actions { align-items: flex-start; width: 100%; }
  .cta-banner-actions .btn { width: 100%; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 14px; }
.contact-info p.lead { color: var(--muted); margin-top: 16px; max-width: 420px; }

.contact-detail {
  display: flex; gap: 16px;
  margin-top: 28px;
  align-items: flex-start;
}
.contact-detail .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ic svg { width: 19px; height: 19px; stroke: var(--gold-600); }
.contact-detail h5 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.contact-detail p, .contact-detail a { font-weight: 700; color: var(--navy-950); font-size: 0.98rem; margin-top: 3px; display: block; }
.contact-detail a:hover { color: var(--gold-600); }

.map-frame {
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) { .contact-form-wrap { padding: 26px 20px; } }
.contact-form-wrap h3 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.form-row .field { margin-top: 0; }
.field label { font-size: 0.8rem; font-weight: 700; color: var(--navy-900); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: var(--paper);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(189,151,80,0.16);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact-form-wrap .btn { margin-top: 26px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: var(--muted-light); padding-top: 84px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-name { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.footer-col p.tag { margin-top: 14px; font-size: 0.9rem; max-width: 260px; color: var(--muted-light); }
.footer-col h5 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col li.contact-line { display: flex; gap: 9px; align-items: flex-start; font-size: 0.9rem; }
.footer-col li.contact-line svg { width: 15px; height: 15px; stroke: var(--gold-400); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in .stagger-item { opacity: 1; transform: translateY(0); }
.stagger-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stagger-item:nth-child(1) { transition-delay: 0.02s; }
.stagger-item:nth-child(2) { transition-delay: 0.09s; }
.stagger-item:nth-child(3) { transition-delay: 0.16s; }
.stagger-item:nth-child(4) { transition-delay: 0.23s; }
.stagger-item:nth-child(5) { transition-delay: 0.30s; }
.stagger-item:nth-child(6) { transition-delay: 0.37s; }
.stagger-item:nth-child(7) { transition-delay: 0.44s; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* Breadcrumb / service hero (used on service-template.html) */
.service-hero {
  background: var(--navy-950);
  color: var(--white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.service-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--muted-light); }
.breadcrumb a:hover { color: var(--gold-400); }
.service-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3rem); margin-top: 16px; max-width: 700px; }
.service-hero p { color: var(--muted-light); margin-top: 16px; max-width: 560px; font-size: 1.05rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list svg { width: 18px; height: 18px; stroke: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; color: var(--navy-950); gap: 20px; }
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold-600); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); color: var(--muted); font-size: 0.94rem; }
.faq-item.open .faq-a { max-height: 200px; margin-top: 12px; }
