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

/* ===========================
   VARIABLES
=========================== */
:root {
  --primary:      #1B3A8C;
  --accent:       #29ABE2;
  --accent-dark:  #1a8fc9;
  --dark:         #111827;
  --text:         #374151;
  --text-light:   #6B7280;
  --bg:           #ffffff;
  --bg-alt:       #f8fafc;
  --border:       #e5e7eb;
  --shadow:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --radius:       12px;
  --radius-sm:    8px;
  --max-width:    1160px;
  --transition:   0.2s ease;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: #152e73;
  border-color: #152e73;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}
.nav-toggle svg {
  display: block;
}

/* ===========================
   SECTION SHARED STYLES
=========================== */
section { padding: 88px 0; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.75;
}

/* ===========================
   HERO  (photo background)
=========================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
/* dark gradient overlay — heavy at bottom for text, lighter at top */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 55, 0.92) 0%,
    rgba(15, 25, 60, 0.75) 40%,
    rgba(15, 25, 60, 0.40) 70%,
    rgba(10, 20, 50, 0.25) 100%
  );
  z-index: 1;
}
/* subtle teal accent glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(41,171,226,0.12) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 171, 226, 0.18);
  border: 1px solid rgba(41, 171, 226, 0.30);
  color: #7dd8f8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 10px;
}
.hero-h1-line2 {
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  display: block;
  margin-bottom: 28px;
}
.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.78;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Override buttons for dark hero */
.hero .btn-primary {
  background: white;
  color: var(--primary);
  border-color: white;
}
.hero .btn-primary:hover {
  background: #eef2ff;
  border-color: #eef2ff;
}
.hero .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.55);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}
/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* ===========================
   STATS STRIP  (new)
=========================== */
.stats-strip {
  background: var(--primary);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
  max-width: 120px;
}

/* ===========================
   WHAT WE DO
=========================== */
.what-we-do { background: white; }
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.what-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27,58,140,0.14), 0 8px 24px rgba(0,0,0,0.08);
}
.what-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
/* Teal accent bar on photo */
.what-photo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  z-index: 2;
  border-radius: 4px 0 0 4px;
}
/* Photo caption overlay */
.what-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(10,20,55,0.82) 0%, transparent 100%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  z-index: 2;
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27,58,140,0.07), rgba(41,171,226,0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  border: 1px solid rgba(27,58,140,0.08);
}
.pillar-text h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pillar-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===========================
   PRODUCTS PREVIEW
=========================== */
.products-preview { background: var(--bg-alt); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::before { opacity: 1; }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.card-icon {
  font-size: 2rem;
  line-height: 1;
}
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-live     { background: #d1fae5; color: #065f46; }
.badge-soon     { background: #e0e7ff; color: #3730a3; }
.badge-dev      { background: #fef3c7; color: #92400e; }
.product-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition), gap var(--transition);
}
.card-link:hover { color: var(--accent-dark); gap: 9px; }
.card-link-muted {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===========================
   MISSION BAND
=========================== */
.mission-band {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}
.mission-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,70,0.92) 0%, rgba(15,30,80,0.88) 100%);
}
.mission-band .container { position: relative; z-index: 1; }
.mission-band .section-label { color: rgba(41,171,226,0.9); }
.mission-band h2 {
  color: white;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.mission-band p {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ===========================
   PAGE HERO  (inner pages — photo)
=========================== */

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--dark);
  color: white;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  margin-top: 18px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo img {
  height: 40px;
  width: auto;
  /* logo shows well on dark background as-is */
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ===========================
   PAGE HERO  (inner pages — photo)
=========================== */
.page-hero {
  position: relative;
  padding: 80px 0 72px;
  background-image: url('https://images.unsplash.com/photo-1531973576160-7125cd663d86?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,65,0.88) 0%, rgba(15,40,100,0.80) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: rgba(41,171,226,0.9); }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  line-height: 1.7;
}

/* ===========================
   PRODUCTS PAGE (full cards)
=========================== */
.products-full { background: white; }
.products-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.product-card-full {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  background: white;
  position: relative;
  overflow: hidden;
}
.product-card-full::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card-full:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card-full:hover::before { opacity: 1; }
.pcard-icon { font-size: 2.5rem; line-height: 1; padding-top: 4px; }
.pcard-body h3 { color: var(--primary); font-size: 1.25rem; margin-bottom: 6px; }
.pcard-body .pcard-url {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.pcard-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.pcard-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.pcard-features li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pcard-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.pcard-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 140px;
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-content { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: start;
}
.about-text h2 {
  color: var(--primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-sidebar {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.about-sidebar h4 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.about-stat:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===========================
   BLOG PAGE
=========================== */
.blog-content { background: white; }
.blog-coming {
  text-align: center;
  padding: 72px 0;
}
.blog-coming .big-icon { font-size: 3.5rem; margin-bottom: 24px; }
.blog-coming h2 { color: var(--primary); margin-bottom: 16px; font-size: 1.7rem; }
.blog-coming p { color: var(--text-light); font-size: 1rem; max-width: 440px; margin: 0 auto 32px; line-height: 1.75; }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-content { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-info p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-method:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41,171,226,0.08);
}
.contact-method-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-text { display: flex; flex-direction: column; }
.contact-method-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-method-value { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.contact-method-value a { color: inherit; transition: color var(--transition); }
.contact-method-value a:hover { color: var(--accent); }
.contact-form-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-box h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41,171,226,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .stat-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .what-inner         { grid-template-columns: 1fr; gap: 48px; }
  .what-photo img     { height: 320px; }
  .products-grid      { grid-template-columns: 1fr; }
  .product-card-full  { grid-template-columns: auto 1fr; }
  .pcard-side         { grid-column: 1 / -1; flex-direction: row; align-items: center; min-width: 0; }
  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid       { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand       { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero               { min-height: 70vh; padding-bottom: 64px; }
  .hero h1            { font-size: 2.2rem; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 20px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav { position: sticky; }
  .nav-toggle { display: block; }

  section { padding: 64px 0; }
  .hero   { padding: 72px 0 64px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .product-card-full { grid-template-columns: 1fr; }
  .pcard-side { flex-direction: row; }
}
