:root {
  --sage: #6D7A67;
  --navy: #22334A;
  --cream: #E8E2DB;
  --warm-gray: #A69D8C;
  --charcoal: #2B3138;
  --white: #FDFCFB;
  --sage-light: #F0F2EF;
  --navy-dark: #1A2738;
  --text-body: #3D4047;
  --border: rgba(109,122,103,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-body); line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--navy); line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,252,251,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.nav-logo span { color: var(--sage); }
.logo-mark {
  width: 36px; height: 36px; background: var(--sage);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400; color: var(--charcoal);
  letter-spacing: 0.02em; cursor: pointer; transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a.active { color: var(--sage); font-weight: 500; }
.btn-primary {
  background: var(--sage); color: white; border: none;
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #5a6654; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-outline-white {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.75rem 1.75rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-large { padding: 0.9rem 2.2rem; font-size: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--white); padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border); flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--charcoal); cursor: pointer; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }

/* SECTIONS */
section { padding: 5rem 5%; }
.container { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--warm-gray); max-width: 560px; line-height: 1.8; }

/* ─── HOME ─── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0 5%;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 65vw; height: 130%;
  background: radial-gradient(ellipse at center, rgba(109,122,103,0.08) 0%, transparent 70%);
  border-radius: 0 0 0 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 52%; height: 100%;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.82;
}
.hero-content { position: relative; z-index: 2; padding: 9rem 0 5rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(109,122,103,0.2); color: #a8b8a4;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  border: 1px solid rgba(109,122,103,0.3);
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 500; color: white; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: #a8c8a0; font-style: italic; }
.hero-sub { color: rgba(232,226,219,0.75); font-size: 1.05rem; line-height: 1.85; max-width: 480px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: white;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(232,226,219,0.6); margin-top: 2px; }

.trust-strip {
  background: var(--cream); padding: 1.5rem 5%;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.benefit-card {
  background: var(--sage-light); border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(109,122,103,0.12); transition: transform 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon {
  width: 48px; height: 48px; background: var(--sage); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 1.8; }
.benefit-card h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.8; }

.services-preview { background: var(--navy); }
.services-preview .section-title { color: white; }
.services-preview .section-subtitle { color: rgba(232,226,219,0.65); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 2rem; cursor: pointer; transition: all 0.2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sage); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { background: rgba(255,255,255,0.09); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { font-size: 1.25rem; font-weight: 500; color: white; margin: 1rem 0 0.5rem; }
.service-card p { font-size: 0.87rem; color: rgba(232,226,219,0.6); line-height: 1.75; }
.service-num { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; color: var(--sage); }

.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.stars { color: var(--sage); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.8; color: var(--charcoal); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage);
  display: flex; align-items: center; justify-content: center; color: white; font-size: 0.75rem; font-weight: 500;
}
.author-name { font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.author-meta { font-size: 0.75rem; color: var(--warm-gray); }

.about-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-preview-img {
  border-radius: 20px; overflow: hidden; height: 480px; position: relative;
  background: linear-gradient(180deg, #F3F0EB 0%, #E8E2DB 100%);
  box-shadow: 0 1px 2px rgba(43,49,56,0.06) inset;
  display: flex; align-items: flex-end; justify-content: center;
}
.about-preview-img img { width: auto; max-width: 88%; height: 94%; object-fit: contain; object-position: bottom center; }
.about-preview-img-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--navy); color: white; padding: 1rem 1.5rem; border-radius: 12px;
  font-size: 0.8rem; font-weight: 500;
}
.about-preview-img-badge span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: #a8c8a0; }

.home-cta-section {
  background: var(--navy); text-align: center; padding: 6rem 5%;
}
.home-cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 1rem; }
.home-cta-section p { color: rgba(232,226,219,0.7); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── ABOUT ─── */
.about-hero {
  background: var(--sage-light); padding: 8rem 5% 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.5rem); margin-bottom: 1.25rem; }
.about-hero p { color: var(--warm-gray); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; }
.about-img { border-radius: 20px; overflow: hidden; height: 520px; background: linear-gradient(180deg, #F3F0EB 0%, #E8E2DB 100%); box-shadow: 0 1px 2px rgba(43,49,56,0.06) inset; display: flex; align-items: flex-end; justify-content: center; }
.about-img img { width: auto; max-width: 85%; height: 94%; object-fit: contain; object-position: bottom center; }
.about-story-img { border-radius: 20px; overflow: hidden; background: linear-gradient(180deg, #F3F0EB 0%, #E8E2DB 100%); box-shadow: 0 1px 2px rgba(43,49,56,0.06) inset; display: flex; align-items: flex-end; justify-content: center; height: 420px; margin-bottom: 1.5rem; }
.about-story-img img { width: auto; max-width: 82%; height: 94%; object-fit: contain; object-position: bottom center; }
.about-story { background: white; }
.about-story-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.about-story h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.about-story p { color: var(--warm-gray); line-height: 1.85; margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card {
  background: var(--sage-light); border-radius: 12px; padding: 1.25rem;
  border-left: 3px solid var(--sage);
}
.value-card h4 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.value-card p { font-size: 0.83rem; color: var(--warm-gray); line-height: 1.7; }
.differentiators { background: var(--navy); }
.differentiators .section-title { color: white; }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.diff-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1.75rem; text-align: center;
}
.diff-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: #a8c8a0; font-weight: 500; }
.diff-label { font-size: 0.83rem; color: rgba(232,226,219,0.6); margin-top: 0.3rem; }

/* ─── SERVICES ─── */
.services-hero {
  background: var(--charcoal); padding: 8rem 5% 5rem; text-align: center;
}
.services-hero h1 { color: white; font-size: clamp(2.4rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.services-hero p { color: rgba(232,226,219,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.services-detail { background: white; }
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.service-detail-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.2s;
}
.service-detail-card:hover { border-color: var(--sage); box-shadow: 0 4px 24px rgba(109,122,103,0.1); }
.service-tag {
  display: inline-block; background: var(--sage-light); color: var(--sage);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1rem;
}
.service-detail-card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.6rem; }
.service-detail-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.8; margin-bottom: 1rem; }
.service-list { list-style: none; }
.service-list li { font-size: 0.87rem; color: var(--text-body); padding: 0.25rem 0; padding-left: 1.1rem; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--sage); }
.how-it-works { background: var(--sage-light); }
.steps { display: flex; gap: 0; margin-top: 3rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 40px; right: 40px; height: 1px;
  background: var(--border); z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 1rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: white;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  border: 3px solid var(--sage-light);
}
.step h4 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.step p { font-size: 0.83rem; color: var(--warm-gray); line-height: 1.7; }
.faq { background: white; }
.faq-list { margin-top: 3rem; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q span { color: var(--sage); font-size: 1.3rem; transition: transform 0.2s; }
.faq-a { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.8; margin-top: 0.75rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* ─── RESOURCES ─── */
.resources-hero {
  background: var(--cream); padding: 8rem 5% 4rem;
}
.resources-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.resources-hero p { color: var(--warm-gray); font-size: 1.05rem; max-width: 560px; }
.resources-section { background: white; }
.filter-bar {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; margin-top: 1rem;
}
.filter-btn {
  background: var(--sage-light); border: 1px solid transparent; color: var(--charcoal);
  padding: 0.45rem 1.1rem; border-radius: 100px; font-size: 0.83rem; font-weight: 400;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--sage); color: white; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.resource-card {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s;
}
.resource-card:hover { transform: translateY(-4px); }
.resource-img { height: 180px; overflow: hidden; position: relative; }
.resource-img img { width: 100%; height: 100%; object-fit: cover; }
.resource-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: white; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px;
}
.resource-body { padding: 1.25rem; }
.resource-body h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; }
.resource-body p { font-size: 0.83rem; color: var(--warm-gray); line-height: 1.7; margin-bottom: 1rem; }
.resource-link { font-size: 0.8rem; color: var(--sage); font-weight: 500; display: flex; align-items: center; gap: 4px; }

/* ─── CONTACT ─── */
.contact-hero {
  background: var(--navy); padding: 8rem 5% 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-hero h1 { color: white; font-size: clamp(2.4rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.contact-hero > div:first-child p { color: rgba(232,226,219,0.65); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-info-list { list-style: none; }
.contact-info-list li { display: flex; align-items: center; gap: 12px; color: rgba(232,226,219,0.8); font-size: 0.9rem; margin-bottom: 1rem; }
.contact-info-list li svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--sage); }
.contact-form-card {
  background: white; border-radius: 20px; padding: 2.5rem;
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--charcoal); background: var(--sage-light); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); background: white; }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-section { background: var(--sage-light); padding: 4rem 5%; }
.map-wrap { border-radius: 16px; overflow: hidden; height: 380px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.socials-row { display: flex; gap: 1rem; margin-top: 2rem; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.social-btn:hover { background: var(--sage); border-color: var(--sage); }
.social-btn svg { width: 18px; height: 18px; stroke: white; fill: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal); padding: 4rem 5% 2rem;
  color: rgba(232,226,219,0.7);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.83rem; cursor: pointer; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: #a8c8a0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.78rem; flex-wrap: wrap; gap: 1rem;
}

/* CALC */
.calc-section { background: var(--cream); }
.calc-card {
  background: white; border-radius: 20px; padding: 2.5rem; max-width: 640px;
  border: 1px solid var(--border);
}
.calc-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.calc-label { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.4rem; display: flex; justify-content: space-between; }
.calc-label span { color: var(--sage); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; }
.calc-result {
  background: var(--navy); border-radius: 14px; padding: 1.75rem; margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 1rem;
}
.calc-result-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: white; font-weight: 500; }
.calc-result-label { font-size: 0.72rem; color: rgba(232,226,219,0.55); margin-top: 2px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::after { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-preview { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .contact-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .steps::before { display: none; }
  .step { padding-bottom: 1.5rem; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calc-result { grid-template-columns: 1fr; }
}
