@import 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap';

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; font-family: 'Inter', system-ui, sans-serif; color: #1a1a1a; background: #f7f5f2; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
p { overflow-wrap: anywhere; word-wrap: break-word; hyphens: auto; }

/* ── Page / Layout ── */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.content-fill { flex: 1; }

/* ── Header / Nav ── */
.gs-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.gs-header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 72px;
}
.gs-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.35rem;
  color: #1a1a1a;
  letter-spacing: -0.03em;
}
.gs-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #e8722a;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.gs-logo-icon::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 5px,
    rgba(255,255,255,0.15) 5px,
    rgba(255,255,255,0.15) 6px
  );
}
.gs-logo-icon span {
  color: #fff; font-size: 0.85rem; font-weight: 700;
  position: relative; z-index: 1;
}
.gs-nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.gs-nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  color: #6b7280;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.gs-nav-links a:hover { color: #1a1a1a; background: rgba(26,26,26,0.04); }
.gs-nav-links a.gs-nav-active { color: #1a1a1a; }
.gs-nav-cta {
  margin-left: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem; font-weight: 600;
  color: #fff;
  background: #1a1a1a;
  border-radius: 9px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gs-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,26,26,0.25); }

/* Mobile nav toggle */
.gs-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 0.5rem;
}
.gs-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: #1a1a1a; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.gs-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gs-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.gs-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.gs-hero {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 80vh;
}
.gs-hero-text { max-width: 600px; }
.gs-hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #e8722a;
  margin-bottom: 1.25rem;
  background: rgba(232, 114, 42, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.gs-hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: #e8722a;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.gs-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}
.gs-hero-title .accent {
  color: #e8722a;
  position: relative;
}
.gs-hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; width: 100%; height: 6px;
  background: rgba(232, 114, 42, 0.2);
  border-radius: 3px;
}
.gs-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.gs-hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.gs-hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.gs-hero-mockup {
  width: 100%; max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26, 26, 26, 0.2), 0 0 0 1px rgba(26,26,26,0.05);
}
.gs-hero-mockup::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px),
    radial-gradient(ellipse at 30% 40%, rgba(232,114,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(107,114,128,0.2) 0%, transparent 50%);
}
.gs-hero-mockup-grid {
  position: absolute; inset: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.gs-mockup-cell {
  border-radius: 8px;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}
.gs-mockup-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.03) 3px,
    rgba(255,255,255,0.03) 4px
  );
}
.gs-mockup-cell:nth-child(1) { background: linear-gradient(135deg, #4a3728 0%, #2a1f18 100%); }
.gs-mockup-cell:nth-child(2) { background: linear-gradient(135deg, #3a4a5a 0%, #1a2a3a 100%); }
.gs-mockup-cell:nth-child(3) { background: linear-gradient(135deg, #5a5a5a 0%, #2a2a2a 100%); }
.gs-mockup-cell:nth-child(4) { background: linear-gradient(135deg, #e8722a 0%, #c4551a 100%); }
.gs-mockup-cell:nth-child(5) { background: linear-gradient(135deg, #4a5a3a 0%, #2a3a1a 100%); }
.gs-mockup-cell:nth-child(6) { background: linear-gradient(135deg, #3a3a5a 0%, #1a1a3a 100%); }
.gs-hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.gs-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem; font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.gs-stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Buttons ── */
.gs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  white-space: nowrap;
}
.gs-btn:hover { transform: translateY(-2px); }
.gs-btn-primary {
  color: #fff;
  background: #e8722a;
  box-shadow: 0 4px 20px rgba(232, 114, 42, 0.3);
}
.gs-btn-primary:hover {
  box-shadow: 0 8px 32px rgba(232, 114, 42, 0.4);
  background: #d66420;
}
.gs-btn-secondary {
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.06);
  border: 1px solid rgba(26, 26, 26, 0.1);
}
.gs-btn-secondary:hover {
  background: rgba(26, 26, 26, 0.1);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.08);
}
.gs-btn-dark {
  color: #fff;
  background: #1a1a1a;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.2);
}
.gs-btn-dark:hover {
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.3);
}

/* ── Sections ── */
.gs-section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
}
.gs-section-full {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}
.gs-section-alt {
  background: #1a1a1a;
  color: #f5f3f0;
}
.gs-section-alt .gs-section-heading { color: #f5f3f0; }
.gs-section-alt .gs-section-sub { color: #9ca3af; }
.gs-section-alt .gs-card { background: #262626; border-color: rgba(255,255,255,0.06); }
.gs-section-alt .gs-card-title { color: #f5f3f0; }
.gs-section-alt .gs-card-desc { color: #9ca3af; }
.gs-section-alt .gs-card-tag { background: rgba(232,114,42,0.15); color: #e8722a; }

.gs-section-inner { max-width: 1280px; margin: 0 auto; }

.gs-section-heading {
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.gs-section-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #6b7280;
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ── Eyebrow / Label ── */
.gs-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #e8722a;
  margin-bottom: 1rem;
}
.gs-eyebrow-line {
  width: 24px; height: 2px;
  background: #e8722a; border-radius: 1px;
}

/* ── Cards ── */
.gs-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.gs-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}
.gs-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e5e3df;
  overflow: hidden;
  position: relative;
}
.gs-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gs-card:hover .gs-card-image img { transform: scale(1.05); }
.gs-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  color: rgba(255,255,255,0.3);
}
.gs-card-body { padding: 1.5rem; }
.gs-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.gs-card-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.gs-card-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.06);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.gs-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.05);
}
.gs-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e8722a;
}
.gs-card-link {
  font-size: 0.85rem; font-weight: 600;
  color: #e8722a;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.gs-card-link:hover { gap: 0.6rem; }
.gs-card-link-arrow { font-size: 1.1rem; }

/* ── Feature Row ── */
.gs-feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
}
.gs-feature {
  text-align: center;
  padding: 2rem 1.5rem;
}
.gs-feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(232, 114, 42, 0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.gs-feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.gs-feature-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Pricing Cards ── */
.gs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
  align-items: start;
}
.gs-pricing-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gs-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}
.gs-pricing-card.featured {
  background: #1a1a1a;
  color: #f5f3f0;
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.25);
}
.gs-pricing-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: #e8722a;
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}
.gs-pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.gs-pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: #e8722a;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.gs-pricing-price span {
  font-size: 1rem; font-weight: 500;
  color: inherit;
  opacity: 0.6;
}
.gs-pricing-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.gs-pricing-card.featured .gs-pricing-desc { color: #9ca3af; }
.gs-pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}
.gs-pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  display: flex; align-items: center; gap: 0.6rem;
}
.gs-pricing-card.featured .gs-pricing-features li {
  border-bottom-color: rgba(255,255,255,0.06);
  color: #d1d5db;
}
.gs-pricing-check {
  color: #e8722a;
  font-weight: 700;
  font-size: 1rem;
}

/* ── Blog Cards ── */
.gs-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 2rem;
}
.gs-blog-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gs-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}
.gs-blog-image {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  overflow: hidden;
}
.gs-blog-image img { width: 100%; height: 100%; object-fit: cover; }
.gs-blog-body { padding: 1.75rem; }
.gs-blog-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; color: #6b7280;
  margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.gs-blog-title {
  font-size: 1.2rem; font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.gs-blog-excerpt {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Testimonials ── */
.gs-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.gs-testimonial {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 16px;
  padding: 2rem;
}
.gs-testimonial-quote {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.gs-testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.gs-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #e5e3df;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
  color: #6b7280;
}
.gs-testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: #1a1a1a;
}
.gs-testimonial-role {
  font-size: 0.78rem;
  color: #6b7280;
}

/* ── Image ── */
.gs-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.gs-image img {
  width: 100%; height: auto;
  display: block;
}

/* ── Footer ── */
.gs-footer {
  background: #1a1a1a;
  color: #9ca3af;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
}
.gs-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.gs-footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gs-footer-brand {
  max-width: 300px;
}
.gs-footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.25rem;
  color: #f5f3f0;
  margin-bottom: 1rem;
}
.gs-footer-logo-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: #e8722a;
  display: flex; align-items: center; justify-content: center;
}
.gs-footer-logo-icon span {
  color: #fff; font-size: 0.8rem; font-weight: 700;
}
.gs-footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #6b7280;
}
.gs-footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #f5f3f0;
  margin-bottom: 1.25rem;
}
.gs-footer-links li { margin-bottom: 0.6rem; }
.gs-footer-links a {
  font-size: 0.88rem;
  color: #6b7280;
  transition: color 0.2s;
}
.gs-footer-links a:hover { color: #e8722a; }
.gs-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #4a4a4a;
}
.gs-footer-social {
  display: flex; gap: 1rem;
}
.gs-footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex; align-items: center; justify-content: center;
  color: #6b7280;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.gs-footer-social a:hover {
  background: rgba(232, 114, 42, 0.15);
  color: #e8722a;
}

/* ── Divider / Decorative ── */
.gs-divider {
  width: 48px; height: 3px;
  background: #e8722a;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gs-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .gs-hero-text { max-width: 100%; margin: 0 auto; }
  .gs-hero-subtitle { margin-left: auto; margin-right: auto; }
  .gs-hero-actions { justify-content: center; }
  .gs-hero-stats { justify-content: center; }
  .gs-hero-visual { order: -1; }
  .gs-hero-mockup { max-width: 400px; margin: 0 auto; }
  .gs-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .gs-nav-links,
  .gs-nav-cta { display: none; }
  .gs-nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(247, 245, 242, 0.97);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-bottom: 1px solid rgba(26,26,26,0.06);
    gap: 0.25rem;
  }
  .gs-nav-links.mobile-open a {
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }
  .gs-mobile-toggle { display: flex; }
  .gs-hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
  .gs-footer-top { grid-template-columns: 1fr; }
  .gs-footer-bottom { flex-direction: column; text-align: center; }
  .gs-pricing-grid { grid-template-columns: 1fr; }
}

/* ── Utility ── */
.gs-text-center { text-align: center; }
.gs-mx-auto { margin-left: auto; margin-right: auto; }
.gs-flex-center { display: flex; align-items: center; justify-content: center; }
.gs-gap-sm { gap: 0.5rem; }
.gs-gap-md { gap: 1rem; }
.gs-gap-lg { gap: 2rem; }
.gs-mt-1 { margin-top: 1rem; }
.gs-mt-2 { margin-top: 2rem; }
.gs-mt-3 { margin-top: 3rem; }
.gs-mb-1 { margin-bottom: 1rem; }
.gs-mb-2 { margin-bottom: 2rem; }
.gs-mb-3 { margin-bottom: 3rem; }
.gs-body-text { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: #4a4a4a; line-height: 1.7; }
.gs-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #6b7280; line-height: 1.7; max-width: 640px; }
.gs-bg-light { background: #f0eeeb; }
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
