/* Hummingbird Technologies — Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0a0f1e;
  --charcoal: #1a1f2e;
  --charcoal-light: #242a3d;
  --electric-blue: #00d4ff;
  --sky-blue: #0ea5e9;
  --teal: #06b6d4;
  --amber: #f59e0b;
  --gold: #fbbf24;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--gray-300);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Intro Animation ── */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay img {
  width: 180px;
  height: auto;
  animation: intro-pulse 1.2s ease-in-out;
}

@keyframes intro-pulse {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

body.intro-active .navbar,
body.intro-active .hero,
body.intro-active .page-hero,
body.intro-active .section,
body.intro-active .section-dark,
body.intro-active .credibility-bar,
body.intro-active .cta-banner,
body.intro-active .footer,
body.intro-active .password-gate {
  opacity: 0;
}

body.intro-done .navbar {
  animation: intro-reveal 0.6s ease forwards;
  animation-delay: 0s;
}

body.intro-done .hero,
body.intro-done .page-hero,
body.intro-done .password-gate {
  animation: intro-reveal 0.8s ease forwards;
  animation-delay: 0.1s;
}

body.intro-done .section,
body.intro-done .section-dark,
body.intro-done .credibility-bar,
body.intro-done .cta-banner {
  animation: intro-reveal 0.8s ease forwards;
  animation-delay: 0.2s;
}

body.intro-done .footer {
  animation: intro-reveal 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes intro-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.95);
  border-bottom-color: rgba(0, 212, 255, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .nav-logo-icon {
  height: 42px;
  width: auto;
}

.nav-logo .nav-logo-text {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--electric-blue);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--electric-blue);
  border-radius: 1px;
}

.nav-cta {
  padding: 8px 20px !important;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  color: var(--electric-blue) !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: rgba(0, 212, 255, 0.2) !important;
  border-color: var(--electric-blue) !important;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-logo {
  width: 240px;
  height: auto;
  margin-bottom: 40px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--electric-blue), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--electric-blue), var(--sky-blue));
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--electric-blue);
  transform: translateY(-1px);
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-amber:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

/* ── Sections ── */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--charcoal);
}

.section-darker {
  background: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--electric-blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
  text-align: center;
}

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

/* ── Feature Cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--electric-blue);
  font-size: 1.3rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Use Case Cards ── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.usecase-card {
  background: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.usecase-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.usecase-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.usecase-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.usecase-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── Credibility Bar ── */
.credibility-bar {
  text-align: center;
  padding: 60px 24px;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

.credibility-bar p {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--gray-400);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  padding: 60px 24px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 64px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--electric-blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer-bottom a {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gray-400);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.team-card {
  background: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.06);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--electric-blue);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--electric-blue);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  padding: 28px 24px;
  border-left: 3px solid var(--electric-blue);
  background: rgba(26, 31, 46, 0.4);
  border-radius: 0 8px 8px 0;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Diagram ── */
.diagram-placeholder {
  background: rgba(26, 31, 46, 0.5);
  border: 2px dashed rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 48px;
}

.diagram-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.diagram-step {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--electric-blue);
  font-weight: 600;
}

.diagram-arrow {
  color: var(--gray-500);
  font-size: 1.2rem;
}

/* ── Careers Role Cards ── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.role-card {
  background: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.role-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
}

.role-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.role-card p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Contact Form ── */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
}

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

/* ── Investor Portal ── */
.password-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.password-form {
  background: var(--charcoal);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.password-form img {
  height: 80px;
  margin-bottom: 24px;
}

.password-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.password-form p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.password-input-group {
  display: flex;
  gap: 8px;
}

.password-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrap input {
  width: 100%;
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.password-toggle:hover {
  color: var(--gray-300);
}

.password-input-group input {
  padding: 12px 16px;
  background: rgba(10, 15, 30, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.password-input-group input:focus {
  outline: none;
  border-color: var(--electric-blue);
}

.password-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

.investor-content {
  display: none;
}

.investor-section {
  background: rgba(26, 31, 46, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 24px;
}

.investor-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.investor-section p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── Contact Info Cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--electric-blue);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Particle Canvas ── */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #0a0f1e;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    display: none;
  }

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

  .nav-links a {
    font-size: 1.25rem;
    color: var(--gray-300);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--electric-blue);
  }

  .password-input-group {
    flex-direction: column;
  }

  .password-input-group button {
    width: 100%;
    justify-content: center;
  }

  .password-form {
    padding: 36px 24px !important;
    margin: 0 12px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 10000;
    position: relative;
  }

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

  .hero p {
    font-size: 1rem;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

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

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

  .diagram-flow {
    flex-direction: column;
  }

  .diagram-arrow {
    transform: rotate(90deg);
  }

  /* Contact page 2-col layout */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-logo {
    width: 160px;
  }

  .section {
    padding: 60px 16px;
  }

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