/* ============================================
   ANWAR ADVISORY GROUP — SHARED STYLESHEET
   Premium Tax Advisory | Sacramento, CA
   ============================================ */

:root {
  --green:       #1B3A2F;
  --green-mid:   #2A5040;
  --green-light: #3D6B57;
  --navy:        #0F1C2E;
  --navy-mid:    #162540;
  --gold:        #B8955A;
  --gold-light:  #D4AF7A;
  --white:       #FFFFFF;
  --off-white:   #F7F5F2;
  --cream:       #EDE9E4;
  --charcoal:    #1A1A1A;
  --text-dark:   #1E1E1E;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7A7A;
  --border:      #E2DED9;
  --border-dark: #2C2C2C;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --radius:   4px;
  --shadow:   0 4px 32px rgba(0,0,0,0.08);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.25s ease;

  --max-width: 1180px;
  --section-pad: 96px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* CONTAINER */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  border: 1.5px solid var(--green);
  padding: 4px 8px;
}
.logo-text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  display: none;
}
@media(min-width:900px) { .logo-text { display: block; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media(min-width:900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
@media(min-width:900px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px 32px;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 400;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 12px 20px !important;
  text-align: center;
  border-radius: var(--radius);
}

/* PAGE TOP OFFSET */
main, section:first-of-type {
  scroll-margin-top: 65px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); }

.btn-primary-light {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--white);
}
.btn-primary-light:hover { background: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

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

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

.btn-dark {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}
.btn-dark:hover { background: var(--green-mid); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 65px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(27,58,47,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,149,90,0.08) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 80px;
  padding-bottom: 100px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.3;
}

/* ============ SHARED SECTION ELEMENTS ============ */
.section-padded { padding: var(--section-pad) 0; }
.bg-off-white { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--navy); }
.bg-green { background: var(--green); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header.light .section-label,
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.65); }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============ HOME INTRO ============ */
.intro-statement { padding: 80px 0; border-bottom: 1px solid var(--border); }
.statement-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}
@media(max-width:768px) { .statement-grid { grid-template-columns: 1fr; gap: 24px; } }
.statement-left .section-label { margin-top: 6px; }
.statement-text {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.statement-sub {
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background var(--transition);
  position: relative;
}
.bg-off-white .service-card { background: var(--off-white); }
.service-card:hover { background: var(--white); z-index: 1; box-shadow: var(--shadow-lg); }
.service-icon {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 500;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  transition: color var(--transition);
}
.card-link:hover { color: var(--gold); }
.services-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ============ WHO WE SERVE ============ */
.serve-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 56px;
}
.serve-item {
  display: flex;
  gap: 20px;
  align-items: start;
}
.serve-num {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.serve-item strong {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.serve-item p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.serve-cta { text-align: center; }

/* ============ WHY AAG ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media(max-width:768px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }
.why-left .section-title { text-align: left; }
.why-left p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 20px;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-point {
  display: flex;
  gap: 18px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.why-point strong {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}
.why-point p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============ PROCESS STEPS ============ */
.process-steps {
  display: flex;
  align-items: start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.process-step {
  flex: 1;
  min-width: 180px;
  padding: 0 24px;
}
.process-divider {
  font-size: 22px;
  color: var(--gold);
  padding-top: 20px;
  flex-shrink: 0;
}
.step-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.process-step h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.process-cta { text-align: center; margin-top: 52px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--green);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,149,90,0.12) 0%, transparent 70%);
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.cta-inner .section-label { color: rgba(255,255,255,0.5); }
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-inner h2 em { font-style: italic; color: var(--gold-light); }
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 40px;
}
@media(max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 260px;
}
.footer-location {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.footer-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  max-width: 820px;
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(27,58,47,0.5) 0%, transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 560px;
}

/* ============ ABOUT PAGE ============ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media(max-width:768px) { .about-split { grid-template-columns: 1fr; gap: 48px; } }
.about-img-block {
  position: relative;
}
.about-img-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-img-placeholder .placeholder-text {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0 24px;
}
.about-credential {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 500;
}
.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; font-size: clamp(28px, 3.5vw, 40px); }
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--text-dark); font-weight: 500; }
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.about-cred-tag {
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.about-values { padding: var(--section-pad) 0; background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.value-card {
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--border);
}
.value-card .value-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.value-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============ SERVICES PAGE ============ */
.services-intro {
  padding: var(--section-pad) 0;
}
.service-full {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-full:last-child { border-bottom: none; }
.service-full-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
@media(max-width:768px) { .service-full-inner { grid-template-columns: 1fr; gap: 32px; } }
.service-full-meta .service-icon {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 12px;
}
.service-full-meta h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-full-meta .service-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-full-body h3 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 24px;
  letter-spacing: 0.03em;
}
.service-full-body h3:first-child { margin-top: 0; }
.service-full-body p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.include-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--text-mid);
  border-radius: var(--radius);
}

/* ============ WHO WE SERVE PAGE ============ */
.segment {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.segment:last-child { border-bottom: none; }
.segment-inner {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media(max-width:900px) { .segment-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:600px) { .segment-inner { grid-template-columns: 1fr; } }
.segment-label {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  padding-top: 4px;
}
.segment-block h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.segment-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.segment-block ul li {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.segment-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 2px;
}

/* ============ PROCESS PAGE ============ */
.process-full { padding: var(--section-pad) 0; }
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-row:last-child { border-bottom: none; }
.process-row-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  text-align: right;
}
.process-row-content h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.process-row-content .process-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,149,90,0.3);
  padding: 4px 12px;
  margin-bottom: 16px;
  border-radius: var(--radius);
}
.process-row-content p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 620px;
}

/* ============ PRICING PAGE ============ */
.pricing-intro-text {
  max-width: 640px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 auto 64px;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 40px 36px;
  background: var(--white);
  position: relative;
  transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.pricing-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.pricing-card.featured h3 { color: var(--white); }
.pricing-card .price {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 4px;
}
.pricing-card.featured .price { color: var(--gold-light); }
.pricing-card .price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pricing-card.featured .price-note { color: rgba(255,255,255,0.55); }
.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-card ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.pricing-card.featured ul li { color: rgba(255,255,255,0.75); }
.pricing-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 4px;
}
.pricing-note-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-note-box p {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============ FAQ PAGE ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-question h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.75;
  padding-bottom: 28px;
}

/* ============ CONTACT PAGE ============ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: var(--section-pad) 0;
}
@media(max-width:800px) { .contact-split { grid-template-columns: 1fr; gap: 48px; } }
.contact-info .section-title { font-size: clamp(28px, 3.5vw, 40px); text-align: left; }
.contact-info p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail .label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail .value {
  font-size: 15px;
  color: var(--text-dark);
}
.contact-form { background: var(--off-white); padding: 48px; border: 1px solid var(--border); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media(max-width:540px) { .form-row { grid-template-columns: 1fr; } }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 16px;
}

/* ============ LEGAL PAGES ============ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}
.legal-content h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 36px 0 12px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 20px; }
.legal-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ============ RESPONSIVE ============ */
@media(max-width:768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }
  .hero-content { padding-top: 60px; padding-bottom: 80px; }
  .process-steps { flex-direction: column; }
  .process-divider { transform: rotate(90deg); text-align: center; padding: 4px 0; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
