/* ==========================================================================
   ATLANTIC GROWTH SOLUTIONS — Style System
   Modern Canadian Business / Approachable + Professional
   ========================================================================== */

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

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

/* ---------- Variables ---------- */
:root {
  --navy: #0f2942;
  --navy-light: #1a3a5c;
  --blue: #1e6091;
  --blue-light: #2980b9;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-subtle: rgba(13, 148, 136, 0.08);
  --coral: #e8734a;
  --coral-light: #f08c69;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-50: #f1f5f9;
  --gray-100: #e8edf2;
  --gray-200: #d1d9e2;
  --gray-300: #b0bec5;
  --gray-400: #8a98a5;
  --gray-500: #607080;
  --gray-600: #455a64;
  --gray-700: #2d3e4a;
  --text-primary: #0f2942;
  --text-secondary: #455a64;
  --text-muted: #8a98a5;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
  --shadow-sm: 0 2px 8px rgba(15, 41, 66, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 41, 66, 0.06);
  --shadow-lg: 0 16px 48px rgba(15, 41, 66, 0.08);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 120px;
  --container-max: 1200px;
  --nav-height: 76px;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--off-white);
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  max-width: 600px;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(248, 250, 251, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
}

.nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 34px;
  width: auto;
  transition: height var(--transition-base);
}

.nav.scrolled .nav-logo img {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

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

.nav-cta-link {
  font-weight: 600 !important;
  color: var(--white) !important;
  background: var(--teal);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base) !important;
}

.nav-cta-link:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 96, 145, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--teal);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 96, 145, 0.2);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--off-white);
}

.hero-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
}

.hero-wave-bg svg {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-dots {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--navy) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-content {
  position: relative;
}

.hero-label {
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 24px;
}

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

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

.hero-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.hero-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.hero-feature-icon {
  margin-bottom: 12px;
}

.hero-feature-blue .hero-feature-icon { color: var(--blue); }
.hero-feature-teal .hero-feature-icon { color: var(--teal); }
.hero-feature-coral .hero-feature-icon { color: var(--coral); }

.hero-feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Section Common ---------- */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header .label {
  margin-bottom: 12px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1rem;
}

/* ---------- About ---------- */
.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-highlight {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.about-highlight-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.about-highlight-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ---------- Solutions ---------- */
.solutions {
  background: var(--off-white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.solution-icon-blue {
  background: rgba(30, 96, 145, 0.08);
  color: var(--blue);
}

.solution-icon-teal {
  background: var(--teal-subtle);
  color: var(--teal);
}

.solution-icon-coral {
  background: rgba(232, 115, 74, 0.08);
  color: var(--coral);
}

.solution-icon-navy {
  background: rgba(15, 41, 66, 0.06);
  color: var(--navy);
}

.solution-card h3 {
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- Expansion ---------- */
.expansion {
  background: var(--white);
}

.expansion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.expansion-content h2 {
  margin-bottom: 20px;
}

.expansion-content > p {
  font-size: 1rem;
  margin-bottom: 24px;
}

.expansion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expansion-list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.expansion-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--teal-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
}

.expansion-visual {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  text-align: center;
}

.expansion-visual-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.expansion-visual-label {
  font-size: 0.9375rem;
  opacity: 0.85;
}

.expansion-visual-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  margin: 24px auto;
}

/* ---------- Customer Acquisition ---------- */
.acquisition {
  background: var(--navy);
  color: var(--white);
}

.acquisition .label {
  color: var(--teal-light);
}

.acquisition h2 {
  color: var(--white);
}

.acquisition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.acquisition-content > p {
  color: var(--gray-300);
  font-size: 1rem;
  margin-bottom: 24px;
}

.acquisition-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

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

.acquisition-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 4px;
}

.acquisition-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.acquisition-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acquisition-method {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.acquisition-method:hover {
  border-color: rgba(13, 148, 136, 0.3);
  background: rgba(13, 148, 136, 0.04);
}

.acquisition-method h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.acquisition-method p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ---------- Process ---------- */
.process {
  background: var(--off-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  border-radius: 1px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.process-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--gray-400);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.process-step:hover .process-dot {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 0 6px var(--teal-subtle);
}

.process-step h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  margin: 0 auto;
  max-width: 200px;
}

/* ---------- Why Us ---------- */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-content h2 {
  margin-bottom: 20px;
}

.why-content > p {
  font-size: 1rem;
  margin-bottom: 32px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.why-item-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-testimonial {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.why-testimonial-quote {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
}

.why-testimonial-author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
}

.why-testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- CTA / Contact Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  text-align: left;
}

.contact-text p {
  margin: 0 0 0;
  max-width: 480px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.18);
}

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

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 8px 0 0;
}

.form-success.visible {
  display: block;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-text p {
    margin: 0 auto;
  }
}

.cta-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  transform: rotate(180deg);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 36px;
  font-size: 1.0625rem;
  max-width: 480px;
}

.cta-section .btn {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--gray-500);
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.footer ul a:hover {
  color: var(--teal-light);
}

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

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--teal-light);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Wave Decoration ---------- */
.wave-decoration {
  position: relative;
  overflow: hidden;
}

.wave-decoration::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,50 1440,30 L1440,60 L0,60 Z' fill='%23f8fafb'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 480px;
  }

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

  .expansion-layout,
  .acquisition-layout,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-timeline::before {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 80px;
  }

  .hero-layout {
    padding: 32px 0;
  }

  .hero-dots {
    display: none;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-feature-card {
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: start;
  }

  .hero-feature-icon {
    margin-bottom: 0;
    min-width: 28px;
    padding-top: 2px;
  }

  .hero-feature-card p {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

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

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .acquisition-stats {
    flex-direction: column;
    gap: 16px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: start;
  }

  .process-dot {
    margin: 0;
    min-width: 48px;
  }

  .process-step p {
    max-width: none;
  }

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

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

@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .solution-card {
    padding: 28px 24px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 0;
  }
}

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

  .reveal, .js-loaded .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}
