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

:root {
  --sage:       #7A9E87;
  --sage-lt:    #B8CFC0;
  --sage-dk:    #4A6B56;
  --stone:      #F2EDE6;
  --stone-dk:   #E2DAD0;
  --charcoal:   #2C2C2C;
  --warm-white: #FAF8F5;
  --gold:       #C4A962;
  --text-muted: #7A7570;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,135,0.15);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.9rem 4rem; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span { color: var(--sage-dk); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer !important;
  user-select: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage-dk); }

.nav-cta {
  background: var(--sage-dk);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--sage) !important; color: #fff !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,158,135,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--sage);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--sage-dk);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sage-dk);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid var(--sage-dk);
}
.btn-primary:hover {
  background: transparent;
  color: var(--sage-dk);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  padding: 1rem 2.25rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--stone-dk);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage-dk);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 2rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap img {
  width: auto; height: auto;
  max-height: 480px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.85);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(242,237,230,0.3) 0%, transparent 40%);
}

.hero-credential {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(8px);
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--sage);
}
.hero-credential strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.hero-credential span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--sage-dk);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.intro-strip-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.intro-strip-item:last-child { border-right: none; }

.intro-strip-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage-lt);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.intro-strip-item p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── SECTIONS ── */
section { padding: 7rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--sage);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--sage-dk); }

/* ── ABOUT ── */
#about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.8);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1.5rem; bottom: -1.5rem;
  border: 1px solid var(--sage-lt);
  z-index: -1;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--sage-lt);
  color: var(--sage-dk);
  border-radius: 1px;
}

/* ── SERVICES ── */
#services { background: var(--stone); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-4px); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage-lt);
  transition: background 0.3s;
}
.service-card:hover::before { background: var(--sage-dk); }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.75rem;
  color: var(--sage);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.service-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dk);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.service-link:hover { gap: 0.75rem; }
.service-link::after { content: '→'; }

/* ── FAQ ── */
#faq { background: var(--warm-white); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  margin-top: 1rem;
}

.faq-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item { border-bottom: 1px solid var(--stone-dk); }
.faq-item:first-child { border-top: 1px solid var(--stone-dk); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  gap: 1rem;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
  color: var(--sage);
}
.faq-question .icon::before,
.faq-question .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-question .icon::before { width: 12px; height: 1px; top: 50%; left: 4px; margin-top: -0.5px; }
.faq-question .icon::after  { width: 1px; height: 12px; top: 4px; left: 50%; margin-left: -0.5px; }

.faq-item.open .faq-question .icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  padding-bottom: 1.5rem;
}

/* ── CTA BANNER ── */
#cta {
  background: var(--sage-dk);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

#cta .section-title { color: #fff; margin-bottom: 1rem; }
#cta .section-title em { color: var(--sage-lt); }

#cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.btn-light {
  background: #fff;
  color: var(--sage-dk);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  border: 1px solid #fff;
}
.btn-light:hover { background: transparent; color: #fff; }

/* ── CONTACT ── */
#contact { background: var(--stone); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail .detail-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--sage-lt);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dk);
}

.contact-detail .detail-icon svg { width: 16px; height: 16px; }

.contact-detail div strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.contact-detail div a,
.contact-detail div span {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 300;
}
.contact-detail div a:hover { color: var(--sage-dk); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--warm-white);
  border: 1px solid var(--stone-dk);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.footer-logo span { color: var(--sage-lt); }

.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

footer p { font-size: 0.78rem; }

/* ── SOCIAL ── */
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover { border-color: var(--sage-lt); color: var(--sage-lt); }
.social-link svg { width: 15px; height: 15px; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── MOBILE HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ── LEAD MAGNET ── */
#lead-magnet {
  background: linear-gradient(135deg, var(--sage-lt) 0%, var(--warm-white) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

#lead-magnet .section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.lead-magnet-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lead-magnet-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lead-magnet-input {
  flex: 1;
  min-width: 250px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border: 1px solid var(--sage-dk);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-magnet-input:focus {
  outline: none;
  border-color: var(--sage-dk);
  box-shadow: 0 0 0 3px rgba(122, 150, 130, 0.1);
}

.lead-magnet-input::placeholder {
  color: var(--text-muted);
}

.lead-magnet-btn {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.lead-magnet-btn:hover {
  opacity: 0.9;
}

.lead-magnet-btn:active {
  opacity: 0.85;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 2rem; }
  nav.scrolled { padding: 0.9rem 2rem; }
  .hero-left { padding: 5rem 3rem 5rem 3rem; }
  .hero-img-wrap img { max-height: 400px; }
  .container { padding: 0 2.5rem; }
  .about-grid, .contact-grid { gap: 3.5rem; }
  .faq-layout { gap: 3rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }

  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 56px; left: 0; right: 0; max-height: calc(100vh - 56px); overflow-y: auto; background: var(--warm-white); padding: 1rem 0; z-index: 99; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--stone-dk); }
  .nav-links a { display: block; padding: 1.2rem 1.5rem; font-size: 1rem; letter-spacing: 0.05em; }
  .nav-cta { margin-top: 1rem; display: inline-block; padding: 0.7rem 1.2rem; }
  .nav-toggle { display: flex; position: relative; z-index: 200; }

  .hero-title { font-size: clamp(2rem, 4vw, 3rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 0.85rem 1.5rem; }

  #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-left { padding: 2.5rem 1.5rem 2rem; }
  .hero-left::before { display: none; }
  .hero-right { height: auto; min-height: 320px; }
  .hero-img-wrap { padding: 1.5rem; }
  .hero-img-wrap img { object-fit: contain; object-position: center; max-height: 280px; }
  .hero-credential { bottom: 1rem; right: 1rem; padding: 0.9rem 1.1rem; font-size: 0.75rem; }
  .hero-credential strong { font-size: 0.95rem; }

  .section-title { font-size: clamp(1.5rem, 3vw, 2.5rem); }
  .section-label { font-size: 0.7rem; }

  .intro-strip { grid-template-columns: 1fr; }
  .intro-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2rem; }
  .intro-strip-item .num { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap::after { display: none; }
  .about-img-wrap img { aspect-ratio: 3/2; }
  .about-text p { font-size: 0.95rem; }

  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 2rem 1.5rem; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.85rem; }

  .faq-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .faq-question { font-size: 1rem; padding: 1.25rem 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info p { font-size: 0.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group textarea, .form-group select { font-size: 0.9rem; padding: 0.7rem 0.9rem; }

  #cta { padding: 3rem 0; }
  #cta .section-title { margin-bottom: 0.75rem; }
  #cta p { font-size: 0.95rem; margin-bottom: 2rem; }
  .btn-light { padding: 0.75rem 2rem; font-size: 0.8rem; }

  section { padding: 3rem 0; }
  .container { padding: 0 1.5rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  footer p { font-size: 0.7rem; }

  #thankYouModal { padding: 1.5rem; }
  #thankYouModal > div { padding: 2rem 1.5rem; max-width: 90vw; }

  #lead-magnet { padding: 3rem 1.5rem; }
  #lead-magnet .section-title { font-size: 1.8rem; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-input { min-width: 100%; }
  .lead-magnet-btn { width: 100%; }

  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 480px) {
  nav { padding: 0.8rem 1rem; }
  .nav-logo { font-size: 1rem; }
  .nav-links { top: 52px; }
  .nav-links a { padding: 1rem 1.25rem; font-size: 0.95rem; }
  .nav-cta { padding: 0.6rem 1rem; font-size: 0.7rem; }

  .hero-eyebrow { font-size: 0.7rem; }
  .hero-title { font-size: 1.8rem; line-height: 1.3; }
  .hero-desc { font-size: 0.9rem; line-height: 1.6; }
  .hero-btns { gap: 0.5rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.25rem; font-size: 0.75rem; }

  .hero-left { padding: 2rem 1rem 1.5rem; }
  .intro-strip-item { padding: 1.5rem 1rem; }
  .intro-strip-item .num { font-size: 1.75rem; }
  .intro-strip-item p { font-size: 0.75rem; }

  .section-title { font-size: 1.3rem; margin-bottom: 1rem; }
  .section-label { font-size: 0.65rem; }

  .about-text p { font-size: 0.9rem; margin-bottom: 1rem; }
  .about-tags { gap: 0.4rem; }
  .tag { font-size: 0.7rem; padding: 0.3rem 0.8rem; }

  .service-card { padding: 1.5rem 1rem; }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
  .service-card p { font-size: 0.8rem; margin-bottom: 1rem; }
  .service-link { font-size: 0.7rem; }

  .contact-detail div strong { font-size: 0.7rem; }
  .contact-detail div a, .contact-detail div span { font-size: 0.85rem; }

  .form-group label { font-size: 0.65rem; }
  .form-group input, .form-group textarea, .form-group select { font-size: 0.85rem; padding: 0.6rem 0.8rem; }

  section { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }

  #thankYouModal > div { padding: 1.5rem 1rem; }
  #thankYouModal h3 { font-size: 1.4rem; }
  #thankYouModal p { font-size: 0.9rem; }

  #lead-magnet { padding: 3rem 1.5rem; }
  #lead-magnet .section-title { font-size: 1.6rem; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-input { min-width: 100%; }
  .lead-magnet-btn { width: 100%; }
}
}
