/* ================================================
   VFS — VERSION 3: WARM ADVISORY PREMIUM
   Cream + Forest Green + Gold | Cormorant Garamond + DM Sans
   ================================================ */

:root {
  --cream: #FAF8F5;
  --cream-dark: #F0EDE8;
  --white: #FFFFFF;
  --green: #2D5A3D;
  --green-light: #3A7350;
  --green-dim: rgba(45,90,61,0.1);
  --gold: #B8943E;
  --gold-light: #D4AF5A;
  --gold-dim: rgba(184,148,62,0.12);
  --navy: #1C2B3A;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --text-muted: #9A9A9A;
  --border: #E8E4DF;
  --border-dark: #D4CFC8;
  --shadow-sm: 0 2px 12px rgba(28,43,58,0.06);
  --shadow-md: 0 8px 32px rgba(28,43,58,0.1);
  --shadow-lg: 0 20px 60px rgba(28,43,58,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-eyebrow.centered { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title.centered { text-align: center; }
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-sub.centered { text-align: center; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,61,0.25); }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { background: var(--green); color: var(--white); }
.btn-nav {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  border: none !important;
}
.btn-nav:hover { background: var(--green-light) !important; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.2rem; color: var(--gold); }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Image Grid */
.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--green);
}
.img-main {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--green) 0%, var(--navy) 100%);
}
.img-sm { background: var(--gold-dim); }
.img-sm-1 { background: var(--green-dim); }
.img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.img-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.img-stat.teal { color: var(--green); }
.img-stat.gold { color: var(--gold); }
.img-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}
.img-sm .img-label { color: var(--text-light); }

/* ================================================
   INTRO
   ================================================ */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  margin-top: 8px;
}
.intro-values { display: flex; flex-direction: column; gap: 28px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ================================================
   SERVICES
   ================================================ */
.services { background: var(--cream); }
.services-list { display: flex; flex-direction: column; gap: 0; margin-top: 60px; }
.service-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { background: var(--white); margin: 0 -24px; padding: 32px 24px; border-radius: var(--radius); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--border-dark);
  width: 48px;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-row:hover .service-num { color: var(--gold); }
.service-content { display: flex; align-items: center; gap: 20px; flex: 1; }
.service-icon { font-size: 1.6rem; flex-shrink: 0; }
.service-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-info p { font-size: 0.9rem; color: var(--text-light); max-width: 480px; }
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  opacity: 0;
  transition: var(--transition);
}
.service-row:hover .service-link { opacity: 1; }

/* ================================================
   PROCESS
   ================================================ */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process-body { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 40px; }
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  width: 40px;
  flex-shrink: 0;
  line-height: 1;
}
.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.step p { font-size: 0.875rem; color: var(--text-light); }

/* Founder Card */
.founder-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 24px;
}
.founder-img {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.founder-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-title { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.founder-bio { font-size: 0.9rem; color: var(--text-light); font-style: italic; line-height: 1.7; }
.credentials { display: flex; gap: 12px; flex-wrap: wrap; }
.cred {
  background: var(--gold-dim);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================
   RESULTS / CAROUSEL
   ================================================ */
.results { background: var(--cream); }
.results-carousel { max-width: 720px; margin: 0 auto; }
.results-track { position: relative; min-height: 280px; }
.result-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result-card.active { opacity: 1; position: relative; }
.result-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 32px;
}
.result-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.result-avatar {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.result-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.result-loc { font-size: 0.85rem; color: var(--text-muted); }
.results-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.result-prev, .result-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-prev:hover, .result-next:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.result-dots { display: flex; gap: 8px; }
.rdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-dark); cursor: pointer; transition: var(--transition); }
.rdot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ================================================
   BLOG
   ================================================ */
.blog { background: var(--white); }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.blog-card { display: block; transition: var(--transition); }
.blog-featured {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { height: 220px; background: linear-gradient(160deg, var(--green) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.3); }
.blog-body { padding: 28px; }
.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.blog-tag { background: var(--gold-dim); color: var(--gold); }
.blog-tag.blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
.blog-tag.teal { background: var(--green-dim); color: var(--green); }
.blog-featured h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-featured p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.75rem; color: var(--text-muted); }
.blog-stack { display: flex; flex-direction: column; gap: 16px; }
.blog-sm {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.blog-sm:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.blog-sm h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-sm p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; }
.blog-sm .blog-meta { margin-top: 10px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--green); }

/* ================================================
   AI CTA
   ================================================ */
.ai-cta { background: var(--white); }
.ai-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.ai-sub { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.ai-trigger { cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ================================================
   CONTACT
   ================================================ */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-sub { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.detail { display: flex; gap: 14px; align-items: flex-start; }
.detail-icon { font-size: 1.1rem; flex-shrink: 0; }
.detail-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.detail-val { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-social { display: flex; gap: 16px; }
.contact-social a { font-size: 0.85rem; font-weight: 700; color: var(--green); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 24px; color: var(--navy); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  background: var(--cream);
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--navy); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding: 60px 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-icon { color: var(--gold); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 12px; line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ================================================
   CHAT WIDGET
   ================================================ */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.chat-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45,90,61,0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-launcher:hover { transform: scale(1.1); }
.chat-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  height: 500px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chat-window.open { display: flex; animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes popIn { from { opacity: 0; transform: scale(0.85) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.chat-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-title { font-size: 0.9rem; font-weight: 700; color: var(--white); font-family: 'Cormorant Garamond', serif; }
.chat-status { font-size: 0.7rem; color: #4ADE80; font-weight: 600; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.4rem; cursor: pointer; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { padding: 10px 14px; border-radius: 10px; font-size: 0.875rem; line-height: 1.5; }
.chat-msg.bot { background: var(--cream); color: var(--text); }
.chat-msg.user { background: var(--green-dim); color: var(--green); align-self: flex-end; }
.chat-msg ul { margin: 6px 0 6px 18px; }
.chat-input-area { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.875rem; font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); }
.chat-input:focus { outline: none; border-color: var(--green); }
.chat-send { width: 38px; height: 38px; background: var(--green); border: none; border-radius: 8px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.chat-send:hover { background: var(--green-light); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: absolute; 
    top: 72px; 
    left: 0; 
    right: 0; 
    background: rgba(250,248,245,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-cta { flex-direction: column; }
  .hero-image-grid { height: 360px; }
  .service-row { flex-wrap: wrap; gap: 16px; }
  .service-link { opacity: 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .chat-window { width: calc(100vw - 48px); right: -12px; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .credentials { flex-wrap: wrap; }
}
