/* ============================================
   Welcome Home Baby ATX — Stylesheet
   Warm, nurturing design for new parents
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #fdf8f3;
  --cream-dark: #f5ede4;
  --warm-gold: #a9804a;
  --warm-gold-light: #c9a876;
  --warm-gold-dark: #7a5c32;
  --sage: #5e8a5a;
  --sage-light: #e8f0e7;
  --sage-dark: #3d6639;
  --blush: #e8c4b8;
  --blush-light: #f2ddd5;
  --text-dark: #3d3530;
  --text-medium: #5c4f45;
  --text-light: #6e6259;
  --white: #ffffff;
  --shadow-soft: 0 2px 20px rgba(61, 53, 48, 0.08);
  --shadow-card: 0 4px 30px rgba(61, 53, 48, 0.1);
  --shadow-hover: 0 8px 40px rgba(61, 53, 48, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Open Sans", Arial, sans-serif;
  --max-width: 1200px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--warm-gold-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--warm-gold-dark);
  color: var(--white);
  border-color: var(--warm-gold-dark);
}

.btn-primary:hover {
  background-color: #63491f;
  border-color: #63491f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: rgba(253, 248, 243, 0.92);
  color: var(--warm-gold-dark);
  border-color: var(--warm-gold-dark);
}

.btn-outline:hover {
  background-color: var(--warm-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-white {
  background-color: var(--white);
  color: var(--warm-gold);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--warm-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--warm-gold);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-links a.active:not(.nav-cta) {
  color: var(--warm-gold);
}

.nav-cta {
  padding: 10px 28px !important;
  font-size: 0.85rem !important;
  color: var(--white) !important;
  padding-bottom: 10px !important;
}

.nav-cta:hover {
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(253, 248, 243, 0.88) 0%,
    rgba(253, 248, 243, 0.6) 50%,
    rgba(253, 248, 243, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 4rem 0;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gold-dark);
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-medium);
}

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

/* ---------- Section Styles ---------- */
.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--white);
}

.section-sage {
  background-color: var(--sage-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gold-dark);
  margin-bottom: 0.8rem;
}

/* ---------- Feature Cards (Homepage) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  border-radius: 50%;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--warm-gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ---------- About Preview (Homepage) ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-preview-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-preview-content .section-label {
  display: block;
}

.about-preview-content h2 {
  margin-bottom: 1.5rem;
}

.about-preview-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ---------- Insurance Banner ---------- */
.insurance-banner {
  background: linear-gradient(135deg, #3d6639 0%, #2d4d2a 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
}

.insurance-banner h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.insurance-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ---------- Pricing Cards (Services) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--warm-gold-light);
  transition: background var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card:hover::before {
  background: var(--warm-gold);
}

.pricing-card.featured {
  border: 2px solid var(--warm-gold-light);
}

.pricing-card.featured::before {
  background: var(--warm-gold);
  height: 4px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--warm-gold);
  margin-bottom: 0.3rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-divider {
  height: 1px;
  background: var(--cream-dark);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sage);
}

/* ---------- Not Provided Section ---------- */
.not-provided {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
}

.not-provided h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.not-provided ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.6rem;
}

.not-provided li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.not-provided li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--blush);
  font-weight: 700;
}

/* ---------- Service Area ---------- */
.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-area-map img {
  width: 100%;
  height: auto;
}

.service-area-text h2 {
  margin-bottom: 1rem;
}

.service-area-text p {
  font-size: 1.05rem;
}

/* ---------- Team Grid (About) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.team-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.team-card-body {
  padding: 2rem;
}

.team-card-body h3 {
  margin-bottom: 0.3rem;
}

.team-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-card-body p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---------- Story Section ---------- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.story-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  border-radius: 50%;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--warm-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail h4 {
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-detail p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-detail a {
  color: var(--warm-gold);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  border-radius: 50%;
  transition: all var(--transition);
}

.social-link:hover {
  background-color: var(--warm-gold);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--warm-gold);
  transition: fill var(--transition);
}

.social-link:hover svg {
  fill: var(--white);
}

/* ---------- Form ---------- */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--cream);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(122, 92, 50, 0.15);
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 60px;
  height: 60px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 1rem;
}

.form-success h3 {
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 70px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--warm-gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--warm-gold-light);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--warm-gold-light);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--warm-gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill var(--transition);
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  max-width: 700px;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blush-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 1rem;
  position: relative;
}

.page-header p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ---------- Acceptance Banner (Carrot Fertility) ---------- */
.acceptance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-light);
  color: #2d4d2a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.acceptance-badge svg {
  width: 16px;
  height: 16px;
  stroke: #2d4d2a;
  fill: none;
  stroke-width: 2;
}

/* ---------- Focus & Accessibility ---------- */
*:focus-visible {
  outline: 2px solid var(--warm-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(122, 92, 50, 0.25);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(122, 92, 50, 0.2);
}

.social-link:focus-visible,
.footer-social a:focus-visible {
  outline-offset: 3px;
}

/* Skip to content link (screen reader) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--warm-gold-dark);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-preview,
  .story-section,
  .service-area,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    list-style: none;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.4rem;
    color: var(--text-dark);
    padding-bottom: 0;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links .nav-cta {
    font-size: 1rem !important;
    padding: 14px 36px !important;
    margin-top: 0.5rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 4rem 0;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .not-provided ul {
    grid-template-columns: 1fr;
  }
}
