:root {
  --bg-deep: #060913;
  --bg-surface: rgba(16, 23, 42, 0.6);
  --bg-card: rgba(30, 41, 59, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.3);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --accent-cyan: #00f0ff;
  --accent-purple: #7000ff;
  --accent-blue: #0ea5e9;
  
  --gradient-neon: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  --gradient-glow: 0 0 24px rgba(0, 240, 255, 0.25);
  
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background: 
    radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.08), transparent 30vw),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08), transparent 30vw),
    var(--bg-deep);
  background-attachment: fixed;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Glassmorphism Header */
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 64px);
  color: var(--text-main);
  transition: all 300ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #ffffff;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.site-header.is-scrolled .site-nav a {
  color: var(--text-dark);
}

.site-header.is-scrolled .brand {
  color: var(--text-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 300ms ease;
}

.site-logo-footer {
  height: 64px;
}

.brand:hover .site-logo {
  transform: scale(1.05);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  border-radius: 8px;
  padding: 10px 16px;
  transition: all 200ms ease;
  color: var(--text-muted);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-neon);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
  border-radius: 2px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
  outline: none;
}

.site-nav a:hover::after {
  transform: scaleX(0.6);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: inherit;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  cursor: pointer;
  z-index: 101;
  transition: all 300ms ease;
}

.site-header.is-scrolled .nav-toggle {
  background: var(--bg-deep);
  border-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 11px;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 26px; }

.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.is-open .nav-toggle span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 64px) 86px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transition: opacity 500ms ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.05);
}

.hero.is-changing .hero-image,
.hero.is-changing .hero-content {
  opacity: 0;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(6, 9, 19, 0.85) 0%, rgba(6, 9, 19, 0.6) 100%);
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  max-width: 900px;
  transition: opacity 500ms ease, transform 500ms ease;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

.eyebrow::before {
  display: inline-block;
  width: 32px;
  height: 2px;
  margin-right: 14px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

h1 {
  max-width: 850px;
  font-size: clamp(46px, 8vw, 100px);
  background: linear-gradient(to right, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 24px;
  color: var(--text-main);
}

.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-proof span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button-primary {
  color: #fff;
  background: var(--gradient-neon);
  box-shadow: var(--gradient-glow);
  border: none;
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
}

.button-secondary {
  color: var(--text-main);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  box-shadow: 0 0 30px rgba(112, 0, 255, 0.6);
  filter: brightness(1.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
}

/* Glassmorphism Sections & Cards */
.section {
  padding: 120px clamp(18px, 5vw, 64px);
  position: relative;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.stats-strip article {
  padding: 42px clamp(18px, 5vw, 64px);
  background: var(--bg-deep);
  text-align: center;
  transition: all 300ms ease;
}

.stats-strip article:hover {
  background: var(--bg-surface);
  transform: translateY(-4px);
}

.stats-strip strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.stats-strip span {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.intro-section > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glass-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-glass);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.service-card {
  min-height: 300px;
}

.service-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--gradient-neon);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card span {
  display: block;
  width: 54px;
  height: 6px;
  margin-bottom: 38px;
  border-radius: 8px;
  background: var(--gradient-neon);
}

.service-card p,
.project-card p,
.capability-grid p,
.team-card p,
.process-list p {
  color: var(--text-muted);
  line-height: 1.7;
}

.capabilities-section {
  background: rgba(16, 23, 42, 0.3);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.capability-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  min-height: 240px;
  padding: 32px;
  transition: all 300ms ease;
}

.capability-grid article:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  border-color: var(--accent-purple);
}

.capability-grid h3 {
  margin-bottom: 18px;
}

.work-section {
  background: radial-gradient(circle at 82% 12%, rgba(0, 240, 255, 0.08), transparent 40rem);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  transition: all 400ms ease;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
  filter: grayscale(20%) brightness(0.9);
}

.project-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
  transform: translateY(-8px);
}

.project-card:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.08);
}

.project-card div {
  padding: 28px;
}

.project-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 1px;
}

.project-card p {
  margin-top: 12px;
}

.blog-card {
  max-width: 400px;
  justify-self: center;
}

.blog-card img {
  aspect-ratio: 16 / 9;
}

.blog-card div {
  padding: 20px;
}

.blog-card h3 {
  font-size: 18px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 14px;
  margin-top: 8px;
}

.blog-card span {
  color: var(--accent-purple);
  font-size: 11px !important;
  margin-bottom: 6px;
}

.partners-section {
  background: rgba(16, 23, 42, 0.2);
}

.auto-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.auto-slider-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: slider-scroll 35s linear infinite;
}

.auto-slider:hover .auto-slider-track {
  animation-play-state: paused;
}

.partner-slider article {
  width: 250px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.partner-slider img,
.partner-mark {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--bg-deep);
}

.partner-slider img {
  object-fit: cover;
}

.partner-mark {
  display: grid;
  place-items: center;
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.partner-slider strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.partner-sector {
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: all 400ms ease;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  transition: transform 500ms ease;
  filter: brightness(0.9) contrast(1.1);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(112, 0, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.team-card div {
  padding: 24px;
}

.team-card span {
  display: block;
  margin: 10px 0 16px;
  color: var(--accent-purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  display: grid;
  grid-template-columns: 80px 280px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: all 300ms ease;
}

.process-list span {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.process-list article:hover {
  transform: translateX(10px);
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
}

.process-list p {
  margin: 0;
  font-size: 18px;
}

.testimonials-section {
  background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.1), transparent 40rem);
}

.testimonial-slider .auto-slider-track {
  animation-duration: 40s;
}

.testimonial-slider article {
  width: min(400px, calc(100vw - 36px));
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 0 1px rgba(255,255,255,0.2);
}

.testimonial-slider blockquote {
  margin: 0 0 32px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  position: relative;
}

.testimonial-slider blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -16px;
  font-size: 64px;
  color: var(--accent-purple);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-slider p {
  margin: 0;
  font-weight: 800;
  color: var(--accent-cyan);
}

.testimonial-slider span {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
  display: block;
}

@keyframes slider-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 64px;
  padding: 120px clamp(18px, 5vw, 64px);
  background: var(--bg-deep);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.3;
}

.contact-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 20px;
}

.contact-panel {
  display: grid;
  gap: 20px;
  align-content: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.contact-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: var(--gradient-neon);
  border-radius: 0 4px 4px 0;
}

.contact-panel a {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  transition: text-shadow 300ms ease;
}

.contact-panel a:hover {
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.6);
}

.contact-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.site-footer {
  padding: 80px clamp(18px, 5vw, 64px) 40px;
  color: var(--text-muted);
  background: #030408;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand {
  display: grid;
  gap: 24px;
  max-width: 460px;
}

.site-footer h3 {
  margin: 0 0 24px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-grid a,
.footer-bottom a {
  color: var(--text-muted);
  transition: all 200ms ease;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add generic service-card & equivalent classes for standard glass blocks */
.service-card { @extend .glass-card; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    border-left: 1px solid var(--border);
    background: #ffffff;
    backdrop-filter: blur(32px);
    box-shadow: -15px 0 40px rgba(0,0,0,0.15);
    transform: translateX(101%);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    color: var(--text-dark);
    font-size: 20px;
    padding: 16px 0;
    font-weight: 700;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-radius: 0;
  }

  .section-heading {
    display: block;
  }

  .process-list article {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .process-list p {
    grid-column: 2;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 900px) {
  .stats-strip,
  .service-grid,
  .project-grid,
  .team-grid,
  .intro-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 85vh;
    padding-top: 110px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  h2 {
    font-size: 30px;
  }

  .hero-content > p:not(.eyebrow),
  .intro-section > p {
    font-size: 17px;
    margin-top: 20px;
  }

  .stats-strip strong {
    font-size: 36px;
  }

  .section,
  .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .site-logo {
    height: 38px;
  }

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

  .button {
    width: 100%;
    min-height: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 380px) {
  h1 { font-size: 34px; }
  .section { padding-left: 14px; padding-right: 14px; }
  .hero { padding-top: 100px; }
}
