/* ─────────────────────────────────────────
   The Accounting and Tax Firm of Florida
   Shared Stylesheet
───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@1,300;1,400&display=swap');

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

:root {
  --g-dark:    #063518;
  --g-deep:    #0E5425;
  --g-primary: #17762F;
  --g-mid:     #1E9A3D;
  --g-light:   #2DC452;
  --g-pale:    #E4F3E9;
  --g-bg:      #F2FAF5;
  --gold:      #B8913A;
  --gold-lt:   #D4AA55;
  --gold-pale: #FBF5E6;
  --white:     #FFFFFF;
  --off-white: #FAFBFA;
  --gray-50:   #F7F9F8;
  --gray-100:  #EDF1EE;
  --gray-200:  #D9E2DC;
  --gray-400:  #8FA898;
  --gray-600:  #4A5E52;
  --gray-800:  #1A2820;
  --txt:       #0E1F15;
  --txt-sec:   #385444;
  --txt-muted: #607A6A;

  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fi: 'Cormorant Garamond', Georgia, serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:   all 0.3s var(--ease);
  --ts:  all 0.55s var(--ease);

  --sh-xs: 0 1px 4px rgba(6,53,24,0.06);
  --sh-sm: 0 2px 12px rgba(6,53,24,0.08);
  --sh-md: 0 8px 28px rgba(6,53,24,0.10);
  --sh-lg: 0 16px 52px rgba(6,53,24,0.13);
  --sh-xl: 0 28px 80px rgba(6,53,24,0.17);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 24px;

  --nav-h: 78px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  color: var(--txt);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   PAGE TRANSITION – top progress bar
══════════════════════════════════════ */
#pageProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--g-primary) 0%, var(--g-light) 60%, var(--gold) 100%);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  border-radius: 0 2px 2px 0;
  transition: width 0.35s cubic-bezier(0.1, 0.6, 0.4, 1), opacity 0.3s ease;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
.nav.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
  align-items: flex-start;
}
.nav-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 41px;
  aspect-ratio: 110 / 41;
  object-fit: contain;
}
.logo-main {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--g-dark) 0%, var(--g-mid) 55%, var(--g-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--fb);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-top: 3px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-sec);
  text-decoration: none;
  border-radius: var(--r-sm);
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 15px; right: 15px;
  height: 2px;
  background: var(--g-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.nav-link:hover, .nav-link.active { color: var(--g-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: var(--t);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--g-primary);
  color: #fff;
  border-color: var(--g-primary);
}
.btn-primary:hover {
  background: var(--g-dark);
  border-color: var(--g-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23,118,47,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--g-primary);
  border-color: var(--g-primary);
}
.btn-outline:hover {
  background: var(--g-pale);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #9A7A2E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,145,58,0.35);
}
.btn-white {
  background: #fff;
  color: var(--g-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--g-pale);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 38px;
  font-size: 15px;
  border-radius: var(--r);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.sp { padding: 96px 0; }
.sp-sm { padding: 64px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--g-primary);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 14px; height: 2px;
  background: var(--g-primary);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 700;
  color: var(--txt);
  line-height: 1.18;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--g-primary);
}
.section-sub {
  font-size: 16.5px;
  color: var(--txt-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-d="1"] { transition-delay: 0.1s; }
[data-d="2"] { transition-delay: 0.18s; }
[data-d="3"] { transition-delay: 0.26s; }
[data-d="4"] { transition-delay: 0.34s; }
[data-d="5"] { transition-delay: 0.42s; }
[data-d="6"] { transition-delay: 0.50s; }
[data-d="7"] { transition-delay: 0.58s; }

/* ══════════════════════════════════════
   HERO (Homepage)
══════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(23,118,47,0.055) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 580px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--g-pale);
  color: var(--g-deep);
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 26px;
}
.hero-label-dot {
  width: 8px; height: 8px;
  background: var(--g-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--txt);
  margin-bottom: 12px;
}
.hero-title span {
  color: var(--g-primary);
  display: block;
}
.hero-tagline {
  font-family: var(--fi);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 16.5px;
  color: var(--txt-sec);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--txt-sec);
  font-weight: 500;
}
.trust-check {
  width: 20px; height: 20px;
  background: var(--g-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { color: var(--g-primary); }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.h-shape-1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(30,154,61,0.10) 0%, rgba(30,154,61,0.03) 70%, transparent 100%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: hfloat1 7s ease-in-out infinite;
}
.h-shape-2 {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(23,118,47,0.07), rgba(45,196,82,0.04));
  top: 8%; right: 8%;
  border-radius: 30% 70% 60% 40% / 40% 30% 70% 60%;
  animation: hfloat2 9s ease-in-out infinite;
}
.h-shape-3 {
  width: 100px; height: 100px;
  background: rgba(184,145,58,0.1);
  bottom: 18%; left: 8%;
  border-radius: 40% 60% 40% 60%;
  animation: hfloat3 6s ease-in-out infinite;
}
.h-shape-4 {
  width: 56px; height: 56px;
  background: var(--g-pale);
  top: 12%; left: 18%;
  border-radius: var(--r);
  animation: hfloat3 8s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes hfloat1 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-53%) scale(1.04); }
}
@keyframes hfloat2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}
@keyframes hfloat3 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-8deg); }
}

.cred-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100);
  z-index: 2;
}
.cred-card-1 {
  top: 22%; left: -10px;
  animation: cardFloat 4.5s ease-in-out infinite;
}
.cred-card-2 {
  bottom: 24%; right: -10px;
  animation: cardFloat 5.5s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.cred-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.cred-badge.green { background: var(--g-pale); color: var(--g-primary); }
.cred-badge.gold  { background: var(--gold-pale); color: var(--gold); }
.cred-name { font-weight: 600; font-size: 13.5px; color: var(--txt); }
.cred-desc { font-size: 11.5px; color: var(--txt-muted); margin-top: 2px; }

.hero-stat-badge {
  position: absolute;
  top: 38%; right: -20px;
  background: var(--g-primary);
  color: #fff;
  border-radius: var(--r);
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--sh-xl);
  z-index: 2;
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: 1s;
}
.hsb-number {
  display: block;
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.hsb-label {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.hero-divider {
  height: 80px;
  background: var(--white);
  position: relative;
  margin-top: 60px;
}
.hero-divider::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--g-dark);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--g-dark) 0%, var(--g-deep) 50%, var(--g-primary) 100%);
  padding: 64px 0;
  position: relative;
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  display: block;
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════
   SERVICES PREVIEW
══════════════════════════════════════ */
.svc-preview {
  padding: 100px 0 96px;
  background: var(--white);
}
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--ts);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g-primary), var(--g-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--g-pale);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  background: var(--g-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--t);
}
.svc-card:hover .svc-icon { background: var(--g-primary); }
.svc-icon svg { transition: var(--t); }
.svc-card:hover .svc-icon svg { stroke: #fff !important; }
.svc-name {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 14.5px;
  color: var(--txt-muted);
  line-height: 1.72;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g-primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--t);
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-section {
  background: var(--gray-50);
  padding: 96px 0;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--gray-50);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 38px 32px;
  border: 1px solid var(--gray-100);
  transition: var(--ts);
}
.why-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.why-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-icon-wrap.green { background: var(--g-pale); }
.why-icon-wrap.gold  { background: var(--gold-pale); }
.why-title {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 12px;
}
.why-text {
  font-size: 14.5px;
  color: var(--txt-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--g-dark) 0%, var(--g-deep) 60%, var(--g-primary) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════
   PAGE HERO (Inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--g-dark) 0%, var(--g-deep) 60%, var(--g-primary) 100%);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: rgba(255,255,255,0.8); font-weight: 500; }
.page-title {
  font-family: var(--fd);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-title em { font-style: italic; color: rgba(255,255,255,0.7); }
.page-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-intro {
  padding: 96px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: var(--txt-sec);
  line-height: 1.82;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--sh-sm);
  transition: var(--ts);
}
.about-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateX(6px);
  border-color: var(--g-pale);
}
.about-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-card-icon.green { background: var(--g-pale); }
.about-card-icon.gold  { background: var(--gold-pale); }
.about-card-title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}
.about-card-text {
  font-size: 13.5px;
  color: var(--txt-muted);
  line-height: 1.68;
}

.about-accent {
  background: var(--g-pale);
  border-radius: var(--r-lg);
  padding: 36px;
  border-left: 4px solid var(--g-primary);
  margin-bottom: 0;
}
.about-accent-quote {
  font-family: var(--fi);
  font-style: italic;
  font-size: 21px;
  color: var(--g-deep);
  line-height: 1.6;
}

.values-section {
  background: var(--gray-50);
  padding: 88px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--ts);
}
.value-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--g-pale);
}
.value-num {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 800;
  color: var(--g-pale);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--g-primary), var(--g-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}
.value-text {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.72;
}

/* ══════════════════════════════════════
   SERVICES PAGE (Full)
══════════════════════════════════════ */
.services-full {
  padding: 88px 0 96px;
  background: var(--white);
}
.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.svc-full-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--ts);
}
.svc-full-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--g-pale), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--gray-200);
}
.svc-full-card:hover::after { opacity: 1; }
.svc-full-card-inner { position: relative; z-index: 1; }
.sfc-num {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--g-primary);
  opacity: 0.5;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.sfc-icon {
  width: 58px; height: 58px;
  background: var(--g-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--t);
}
.svc-full-card:hover .sfc-icon {
  background: var(--g-primary);
}
.svc-full-card:hover .sfc-icon svg { stroke: #fff !important; }
.sfc-title {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 12px;
}
.sfc-desc {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.75;
}

.process-section {
  background: var(--gray-50);
  padding: 88px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--g-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--g-primary);
  transition: var(--ts);
}
.process-step:hover .step-circle {
  background: var(--g-primary);
  color: #fff;
}
.step-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}
.step-text {
  font-size: 13.5px;
  color: var(--txt-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  padding: 88px 0 96px;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  box-shadow: var(--sh-sm);
}
.form-title {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}
.form-note {
  font-size: 14px;
  color: var(--txt-muted);
  margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: 14.5px;
  color: var(--txt);
  background: var(--white);
  transition: var(--t);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--g-primary);
  box-shadow: 0 0 0 3px rgba(23,118,47,0.08);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 72px; height: 72px;
  background: var(--g-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--txt);
  margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--txt-muted); }
.form-send-another { margin-top: 20px; }
.form-recaptcha-wrap { margin-bottom: 22px; }
.form-recaptcha-wrap .g-recaptcha { display: inline-block; }
.form-recaptcha-error {
  font-size: 13px;
  color: #c53030;
  margin-top: 8px;
  min-height: 1.4em;
}
.form-privacy-note {
  font-size: 12px;
  color: var(--txt-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--ts);
}
.info-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--gray-200);
}
.response-guarantee {
  background: var(--g-pale);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  border: 1px solid rgba(23,118,47,0.12);
}
.response-guarantee-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.response-guarantee-dot {
  width: 8px;
  height: 8px;
  background: var(--g-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.response-guarantee-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--g-primary);
  letter-spacing: 0.3px;
}
.response-guarantee-text {
  font-size: 13.5px;
  color: var(--txt-sec);
  line-height: 1.65;
}

.faq-section {
  background: var(--gray-50);
  padding: 88px 0;
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--gray-50);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.faq-section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.faq-section-head .section-label { justify-content: center; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 26px 28px;
  border: 1px solid var(--gray-100);
}
.faq-card-title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}
.faq-card-text {
  font-size: 14.5px;
  color: var(--txt-muted);
  line-height: 1.72;
}

.info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--g-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 5px;
}
.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--txt);
}
.info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.info-value a:hover { color: var(--g-primary); }
.info-value-muted { font-size: 14px; color: var(--txt-muted); }
.info-email { font-size: 14px; }
.info-email a { word-break: break-all; }
.info-email-line { display: inline; }
.info-sub {
  font-size: 13px;
  color: var(--txt-muted);
  margin-top: 3px;
}

.portal-cta {
  background: linear-gradient(135deg, var(--g-dark), var(--g-deep));
  border-radius: var(--r-lg);
  padding: 32px 30px;
  color: #fff;
  margin-top: 8px;
}
.portal-cta h3 {
  font-family: var(--fd);
  font-size: 19px;
  margin-bottom: 8px;
}
.portal-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--g-dark);
  color: #fff;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo-main {
  background: linear-gradient(135deg, #fff 0%, rgba(200,255,215,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer .logo-sub { color: rgba(255,255,255,0.38); }
.footer-logo { display: inline-flex; }
.footer-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 41px;
  aspect-ratio: 110 / 41;
  object-fit: contain;
}
.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  max-width: 250px;
}
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.fci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
}
.fci svg { flex-shrink: 0; margin-top: 1px; color: var(--g-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
}

/* ═══════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════ */
.team-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 56px auto 0;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
  transition: var(--t);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-100);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.03);
}
.team-info {
  padding: 28px 28px 32px;
}
.team-name {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-credential {
  font-size: 13px;
  font-weight: 600;
  color: var(--g-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-credential-gold {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-credential + .team-credential,
.team-credential-gold + .team-credential {
  margin-top: 2px;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.team-badge-green {
  background: var(--g-pale);
  color: var(--g-primary);
}
.team-badge-gold {
  background: rgba(197,158,63,0.1);
  color: var(--gold);
}
.team-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 16px 0;
}
.team-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.team-lang svg {
  flex-shrink: 0;
  color: var(--g-primary);
}
.team-lang strong {
  color: var(--dark);
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--sh-md);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 20px;
  }
  .hero-visual { height: 340px; }
  .h-shape-1 { width: 260px; height: 260px; }
  .cred-card-1 { left: 0; }
  .cred-card-2 { right: 0; }

  .svc-preview-grid,
  .why-grid,
  .svc-full-grid,
  .values-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .hero-visual { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
}
