@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.938rem, 0.9rem + 0.25vw, 1.063rem);
  line-height: 1.7;
  color: #1a1f36;
  background-color: #fafbff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
  color: #0f1329;
}

h1 {
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 1.4rem + 2vw, 3rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
}

p {
  max-width: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.container--narrow {
  max-width: 900px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(88, 101, 242, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 32px;
  height: 32px;
}

.site-logo__text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: #0f1329;
  letter-spacing: -0.02em;
}

.site-logo__text span {
  color: #5865f2;
}

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

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5068;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(88, 101, 242, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--secondary {
  background: transparent;
  color: #5865f2;
  border: 1.5px solid rgba(88, 101, 242, 0.25);
}

.btn--secondary:hover {
  background: rgba(88, 101, 242, 0.06);
  border-color: rgba(88, 101, 242, 0.5);
}

.btn--ghost {
  background: transparent;
  color: #4a5068;
  padding: 0.5rem 0.75rem;
}

.btn--ghost:hover {
  color: #5865f2;
}

.btn--large {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  border-radius: 12px;
}

.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1f36;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 6rem);
  background: linear-gradient(165deg, #0f1329 0%, #1a1f4e 35%, #252b6e 60%, #1e2460 100%);
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(88, 101, 242, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(2.5rem, 2rem + 4vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  max-width: 14ch;
  line-height: 1.1;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #00d4ff 0%, #5865f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: #ffffff;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section-wrapper {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-wrapper--alt {
  background: #f3f4f9;
}

.section-wrapper--dark {
  background: #0f1329;
  color: #ffffff;
}

.section-heading {
  margin-bottom: 0.75rem;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5865f2;
  margin-bottom: 0.75rem;
}

.eyebrow--cyan {
  color: #00b4d8;
}

.eyebrow--gold {
  color: #c9a55a;
}

.lead-paragraph {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  color: #4a5068;
  line-height: 1.75;
  max-width: 640px;
}

.lead-paragraph--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead-paragraph--light {
  color: rgba(255, 255, 255, 0.6);
}

.body-text {
  color: #4a5068;
  line-height: 1.75;
}

.body-text--light {
  color: rgba(255, 255, 255, 0.55);
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card-grid--2col {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
}

.card-grid--3col {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.card-grid--4col {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border: 1px solid rgba(88, 101, 242, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.15);
}

.card--featured {
  border-color: rgba(0, 212, 255, 0.2);
  background: linear-gradient(165deg, #ffffff 0%, #f8faff 100%);
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
  color: #5865f2;
}

.card__icon--cyan {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.04) 100%);
  color: #00b4d8;
}

.card__icon--gold {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.15) 0%, rgba(201, 165, 90, 0.05) 100%);
  color: #c9a55a;
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #e8eaf6 0%, #f3f4f9 100%);
}

.card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #0f1329;
  margin-bottom: 0.5rem;
}

.card__title--light {
  color: #ffffff;
}

.card__description {
  font-size: 0.9rem;
  color: #6b7194;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card__description--light {
  color: rgba(255, 255, 255, 0.5);
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(88, 101, 242, 0.06);
}

.card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: rgba(88, 101, 242, 0.08);
  color: #5865f2;
}

.card__tag--cyan {
  background: rgba(0, 212, 255, 0.1);
  color: #00b4d8;
}

.card__tag--gold {
  background: rgba(201, 165, 90, 0.12);
  color: #c9a55a;
}

.card__meta {
  font-size: 0.8rem;
  color: #8b90a8;
}

.card__meta--light {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== BOT CARD (directory style) ===== */
.bot-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.bot-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.bot-card__info {
  flex: 1;
  min-width: 0;
}

/* ===== IMAGE ===== */
.image {
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FEATURE SECTION ===== */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

.feature-row__visual {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: linear-gradient(165deg, #1a1f4e 0%, #252b6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-row__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
}

/* ===== TESTIMONIAL ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: #ffffff;
  border: 1px solid rgba(88, 101, 242, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial__quote {
  font-size: 1rem;
  color: #4a5068;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5865f2, #00d4ff);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f1329;
}

.testimonial__role {
  font-size: 0.8rem;
  color: #8b90a8;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(88, 101, 242, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(88, 101, 242, 0.12);
}

.pricing-card--popular {
  border-color: rgba(88, 101, 242, 0.3);
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.15);
}

.pricing-card--popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #ffffff;
}

.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b90a8;
  margin-bottom: 0.75rem;
}

.pricing-card__price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  color: #0f1329;
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #8b90a8;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: #6b7194;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #4a5068;
}

.pricing-card__feature::before {
  content: '✓';
  font-weight: 700;
  color: #5865f2;
  font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(165deg, #0f1329 0%, #1a1f4e 50%, #252b6e 100%);
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section__subtitle {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0d1a;
  color: rgba(255, 255, 255, 0.5);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand__logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-brand__logo-text span {
  color: #5865f2;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-col__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-col__links a:hover {
  color: #00d4ff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SEARCH BAR (for directory) ===== */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 2rem;
  background: #ffffff;
  border: 1.5px solid rgba(88, 101, 242, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.search-bar:focus-within {
  border-color: #5865f2;
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.08);
}

.search-bar__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  background: transparent;
  min-width: 0;
}

.search-bar__input::placeholder {
  color: #a0a5c0;
}

.search-bar__button {
  padding: 0.9rem 1.25rem;
  background: #5865f2;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}

.search-bar__button:hover {
  background: #4752c4;
}

/* ===== BADGE / TAG ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(88, 101, 242, 0.08);
  color: #5865f2;
  white-space: nowrap;
}

.badge--cyan {
  background: rgba(0, 212, 255, 0.1);
  color: #00b4d8;
}

.badge--gold {
  background: rgba(201, 165, 90, 0.12);
  color: #c9a55a;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.15), transparent);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(250, 251, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(88, 101, 242, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero__stats {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 60px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

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

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

  .card-grid,
  .card-grid--2col,
  .card-grid--3col,
  .card-grid--4col {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
/* 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}
