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

:root {
  --bg: #2b2b2b;
  --bg-card: #333333;
  --bg-card-hover: #3a3a3a;
  --bg-input: #3a3a3a;
  --text: #e8e8e8;
  --text-muted: #999999;
  --text-heading: #f0f0f0;
  --accent: #0066FF;
  --accent-hover: #0052cc;
  --accent-glow: rgba(0, 102, 255, 0.15);
  --border: #404040;
  --border-light: #4a4a4a;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1400px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-hover);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; }

p { max-width: 640px; }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(48, 48, 48, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 44px;
  height: 42px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: #fff;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 1.0rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-heading);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.0rem;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero Viewport ===== */
.hero-viewport {
  min-height: calc(100vh - 3.5rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}

/* ===== Hero ===== */
.hero {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 17.625rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

/* Diagonal lines pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0, 102, 255, 0.04) 40px,
    rgba(0, 102, 255, 0.04) 41px
  );
  pointer-events: none;
}

/* Top-right accent glow */
.hero::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

/* Glow behind hero text area */
.hero-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  margin-bottom: 0.75rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Trust indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-trust span {
  white-space: nowrap;
}

.hero-trust .dot {
  color: var(--border-light);
}

/* Hero feature cards */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.hero-feature-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.hero-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: none;
}

/* Tech strip section */
.tech-strip {
  padding: 2rem 0;
  background: #242424;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tech-strip-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.tech-strip-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.tech-pill {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #333333;
  border: 1px solid #444444;
  border-radius: 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.tech-strip-note {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 0.6rem;
  max-width: none;
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-light);
  background: var(--bg-card);
  color: var(--text-heading);
}

/* ===== Stats Bar ===== */
.stats-bar {
  padding: 2rem 0;
  background: #303030;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 auto;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.why-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Signup Form ===== */
.signup {
  background: linear-gradient(180deg, var(--bg) 0%, #262626 100%);
}

.signup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.signup-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.signup-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.signup-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.signup-checklist .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.signup-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
  padding: 0.7rem 0.9rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: #555555;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239999b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: 1.25rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ===== Contact ===== */
.contact-grid {
  display: flex;
  gap: 16px;
  margin-top: 3rem;
}

.contact-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.5rem;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.contact-card a,
.contact-card p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.contact-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-card a:hover {
  color: var(--accent);
}


/* ===== Testimonials ===== */
.testimonials-section {
  background: #262626;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.testimonial-quote {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: none;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-heading);
  max-width: none;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: none;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--text-heading);
}

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

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

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Legal Pages ===== */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 720px;
  line-height: 1.7;
}

.legal-content ul {
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  max-width: 720px;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content a {
  color: var(--accent);
}

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

/* Wide screens — fluid layout */
@media (min-width: 1400px) {
  .container {
    max-width: min(90vw, 1800px);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* --- General --- */
  section {
    padding: 3rem 0;
  }

  /* --- Nav --- */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(48, 48, 48, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  /* --- Hero --- */
  .hero-viewport {
    min-height: auto;
  }

  .hero {
    flex: none;
    padding-top: 4.5rem;
    padding-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-features {
    gap: 0.5rem;
  }

  .hero-feature-card {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .hero-feature-icon {
    width: 32px;
    height: 32px;
  }

  .hero-feature-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-feature-card h4 {
    font-size: 0.85rem;
  }

  .hero-feature-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  /* --- Tech Strip --- */
  .tech-strip {
    padding: 1.25rem 0;
  }

  .tech-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .tech-strip-label {
    font-size: 0.8rem;
  }

  .tech-strip-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    width: 100%;
  }

  .tech-pill {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    text-align: center;
  }

  .tech-strip-note {
    font-size: 0.75rem;
  }

  /* --- Stats Bar --- */
  .stats-bar {
    padding: 1.25rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.8rem;
  }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 2rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }

  .service-icon svg {
    width: 18px;
    height: 18px;
  }

  .service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .service-card p {
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-card:nth-child(9) {
    grid-column: 1 / -1;
  }

  /* --- Why Us --- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 2rem;
  }

  .why-card {
    padding: 1rem;
    gap: 0.75rem;
    flex-direction: column;
  }

  .why-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .why-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .why-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* --- Contact --- */
  .contact-grid {
    gap: 6px;
    margin-top: 2rem;
  }

  .contact-card {
    padding: 0.5rem 0.25rem;
  }

  .contact-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.35rem;
  }

  .contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .contact-card h3 {
    font-size: 0.65rem;
    margin-bottom: 0.15rem;
  }

  .contact-card p,
  .contact-card a {
    font-size: 0.6rem;
  }

  /* --- Signup --- */
  .signup-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .signup-form {
    padding: 1.5rem;
  }

  /* --- Section titles --- */
  .section-label {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

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

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* --- Footer --- */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}
