/* ============================================================
   Digital Toolkit Hub — Global Styles
   ============================================================ */

:root {
  --teal-dark:    #0a4f4f;
  --teal-mid:     #0d6b6b;
  --teal-bright:  #1a9090;
  --teal-light:   #e4f4f4;
  --teal-pale:    #f0fafa;
  --white:        #ffffff;
  --off-white:    #f8fcfc;
  --gold:         #c9953a;
  --gold-light:   #f5e4c3;
  --text-dark:    #1a2828;
  --text-mid:     #3d5454;
  --text-light:   #6b8888;
  --border:       #d0e8e8;
  --shadow-sm:    0 2px 8px rgba(10,79,79,0.08);
  --shadow-md:    0 4px 20px rgba(10,79,79,0.12);
  --shadow-lg:    0 8px 40px rgba(10,79,79,0.16);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.25s ease;
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-mid); }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.75rem;
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(800px, calc(100% - 3rem));
  margin-inline: auto;
}

section { padding: 5rem 0; }

.section--alt { background: var(--teal-pale); }
.section--dark {
  background: var(--teal-dark);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p,
.section--dark .lead { color: rgba(255,255,255,0.82); }

.text-center { text-align: center; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-mid);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
  background: #b07d2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 2px solid var(--teal-mid);
  color: var(--teal-mid);
  background: transparent;
}
.btn--outline:hover {
  background: var(--teal-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}

.nav__logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--teal-mid);
  background: var(--teal-light);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  overflow-y: auto;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav__mobile a:hover { color: var(--teal-mid); background: var(--teal-light); }

.nav__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 60%, var(--teal-bright) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero--centered .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero .lead {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}

.hero__card-stack .card-item {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
}

.hero__card-stack .card-item:nth-child(1) {
  top: 0; left: 0; right: 60px;
  transform: rotate(-3deg);
}
.hero__card-stack .card-item:nth-child(2) {
  top: 60px; left: 30px; right: 0;
  transform: rotate(2deg);
  background: rgba(255,255,255,0.18);
}
.hero__card-stack .card-item:nth-child(3) {
  bottom: 0; left: 15px; right: 30px;
  transform: rotate(-1deg);
}

.hero__stat {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

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

.card__body { padding: 1.75rem; }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-mid);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card__icon--gold {
  background: var(--gold-light);
  color: var(--gold);
}

.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; }

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__image {
  height: 160px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.5rem;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.875rem; flex: 1; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-dark);
}

/* ============================================================
   Feature Grid
   ============================================================ */

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-mid);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__text h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.feature-item__text p { font-size: 0.88rem; }

/* ============================================================
   Testimonials
   ============================================================ */

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--teal-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-mid);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name { font-weight: 700; font-size: 0.9rem; }
.testimonial__role { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   Pricing / Membership
   ============================================================ */

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--featured {
  border-color: var(--teal-mid);
  background: linear-gradient(145deg, var(--teal-dark), var(--teal-mid));
  color: var(--white);
}

.pricing-card--featured h3,
.pricing-card--featured h2,
.pricing-card--featured p,
.pricing-card--featured .pricing-period { color: var(--white); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 1rem 0 0.25rem;
  color: var(--teal-dark);
}

.pricing-card--featured .pricing-price { color: var(--white); }

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

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.pricing-feature .check {
  color: var(--teal-bright);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-card--featured .pricing-feature .check { color: #7de8d8; }

/* ============================================================
   Forms & Email Capture
   ============================================================ */

.email-capture {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--white);
}

.email-capture h2,
.email-capture h3 { color: var(--white); margin-bottom: 0.75rem; }
.email-capture p { color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; }

.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
}

.email-form input::placeholder { color: var(--text-light); }

.email-form input:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input {
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-input:focus { border-color: var(--teal-mid); }

/* ============================================================
   Tags / Badges
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge--teal { background: var(--teal-light); color: var(--teal-mid); }
.badge--gold { background: var(--gold-light); color: #a07020; }
.badge--coming { background: #fff3e0; color: #e65100; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .nav__logo-name { color: var(--white); font-size: 1.2rem; }
.footer__brand .nav__logo-tagline { color: rgba(255,255,255,0.6); }

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom a { color: rgba(255,255,255,0.65); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   Utilities
   ============================================================ */

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ============================================================
   Page-specific helpers
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); }

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

.about-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-pale) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--teal-mid);
  box-shadow: var(--shadow-lg);
}

.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {}
.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-mid);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* AI Hub */
.prompt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.prompt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prompt-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin-bottom: 0.5rem;
}
.prompt-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.prompt-card p { font-size: 0.875rem; }
.prompt-card__code {
  margin-top: 1rem;
  background: var(--teal-pale);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.82rem;
  font-family: 'Courier New', monospace;
  color: var(--teal-dark);
  line-height: 1.6;
  border-left: 3px solid var(--teal-bright);
}

/* Article cards */
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.article-card__body { padding: 1.5rem; }
.article-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-bright);
  margin-bottom: 0.5rem;
}
.article-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.article-card p { font-size: 0.875rem; }
.article-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Coming soon overlay */
.coming-soon-overlay {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--teal-light);
}
.coming-soon-overlay .icon { font-size: 4rem; margin-bottom: 1rem; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  section { padding: 3.5rem 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .email-capture { padding: 2rem 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .stat-row { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
