/* ==========================================================================
   tasksyncr — Landing Page Styles
   Design system: Outfit (400/600), navy-anchored palette, ocean accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Brand colours */
  --navy:       #0b2a4a;
  --blue:       #47859f;
  --light-blue: #72c3d5;
  --orange:     #ff9e1a;
  --orange-dark: #e08a0a;

  /* Surfaces */
  --bg:         #f8fafb;
  --white:      #ffffff;

  /* Text */
  --text-primary:   var(--navy);
  --text-muted:     #4a6a82;   /* darkened from #5a7a94 for WCAG AA on white */
  --text-on-dark:   var(--white);

  /* Borders */
  --border:     rgba(11, 42, 74, 0.12);
  --border-light: rgba(11, 42, 74, 0.06);

  /* Typography */
  --font: 'Outfit', sans-serif;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Elevation */
  --shadow-sm:  0 1px 3px rgba(11, 42, 74, 0.08), 0 1px 2px rgba(11, 42, 74, 0.04);
  --shadow-md:  0 4px 12px rgba(11, 42, 74, 0.10), 0 2px 4px rgba(11, 42, 74, 0.06);
  --shadow-lg:  0 12px 32px rgba(11, 42, 74, 0.14), 0 4px 8px rgba(11, 42, 74, 0.08);

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 350ms ease;
}


/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */

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

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

body {
  font-family: var(--font);
  font-size: 1rem;           /* 16px */
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Focus-visible ring — accessibility */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */

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

/* Wider variant for full-bleed backgrounds that need inner constraint */
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section base spacing — desktop */
section {
  padding: 80px 0;
}


/* --------------------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }   /* ~36–56px */
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); } /* ~28–40px */
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }/* ~20–28px */
h4 { font-size: 1.125rem; }                       /* 18px */

p {
  color: var(--text-muted);
  font-size: 1.0625rem; /* 17px — slightly more comfortable than 16px */
}

/* Lead paragraph — larger intro copy */
.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Section eyebrow label — navy for WCAG AA contrast at small size */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--space-md);
}


/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  white-space: nowrap;
  line-height: 1;
}

/* Primary — orange CTA */
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 158, 26, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary — navy outline */
.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--navy);
  color: var(--white);
}

/* Ghost — for use on dark backgrounds */
.btn-ghost {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Size modifier — smaller button */
.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}


/* --------------------------------------------------------------------------
   6. CARDS & SURFACES
   -------------------------------------------------------------------------- */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   7. SECTION THEMING HELPERS
   -------------------------------------------------------------------------- */

/* Light section (default) */
.section-light {
  background-color: var(--bg);
}

/* White section */
.section-white {
  background-color: var(--white);
}

/* Dark navy section */
.section-dark {
  background-color: var(--navy);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.75);
}

.section-dark .eyebrow {
  color: var(--light-blue);
}

/* Tinted blue section */
.section-tint {
  background-color: #e8f4f8;
}


/* --------------------------------------------------------------------------
   8. DIVIDERS & DECORATION
   -------------------------------------------------------------------------- */

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}


/* --------------------------------------------------------------------------
   9. ACCESSIBILITY UTILITIES
   -------------------------------------------------------------------------- */

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top var(--transition);
}

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


/* --------------------------------------------------------------------------
   10. NAV BAR
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow var(--transition);
}

.nav-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  /* Override .container's side padding since we're embedding padding here */
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: none; /* full-width bar with centered content */
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}


/* --------------------------------------------------------------------------
   11. HERO SECTION
   -------------------------------------------------------------------------- */

.hero {
  padding: 100px 0 80px;
  background-color: var(--bg);
  /* Subtle radial glow behind the grid for depth */
  background-image:
    radial-gradient(ellipse 70% 50% at 65% 60%, rgba(114, 195, 213, 0.13) 0%, transparent 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  /* Subtle entrance animation */
  animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero brand logo — prominent placement above headline */
.hero-logo {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  /* Crisp letter-spacing for large display text */
  letter-spacing: -0.02em;
}

.hero-subline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-illustration {
  animation: heroFadeUp 0.65s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Larger CTA button */
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero illustration SVG — responsive height */
.hero-illustration svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Entrance keyframe */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --------------------------------------------------------------------------
   12. FOUR PILLARS SECTION
   -------------------------------------------------------------------------- */

.pillars {
  padding: 96px 0 80px;
}

.pillars .section-heading {
  margin-bottom: 64px;
}

/* Individual pillar row — two-column grid, text left / SVG right */
.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.pillar-row:last-child {
  margin-bottom: 0;
}

/* Reversed row: on desktop the SVG appears on the left, text on right.
   We use order to keep the source order text-first (better for accessibility
   and mobile — text always comes first in DOM). */
.pillar-row--reversed .pillar-text {
  order: 2;
}

.pillar-row--reversed .pillar-visual {
  order: 1;
}

/* Pillar label — navy text for WCAG AA contrast on white/light backgrounds */
.pillar-label {
  color: var(--navy);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* Pillar body copy */
.pillar-copy {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 440px;
}

/* SVG illustration panel — contains real inline SVGs */
.pillar-svg {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
}


/* --------------------------------------------------------------------------
   13. MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* ------ Tablet (max-width: 1023px) ------ */
@media (max-width: 1023px) {
  section {
    padding: 64px 0;
  }

  /* Hero: stack to single column */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-illustration {
    order: 2;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-logo {
    max-width: 280px;
  }

  /* Pillars: single column, SVG below text */
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  /* Always show text first, SVG second — regardless of reversed class */
  .pillar-row--reversed .pillar-text {
    order: 1;
  }

  .pillar-row--reversed .pillar-visual {
    order: 2;
  }

  /* Cards: 2-up on tablet */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Integrations heading row: stack on tablet */
  .integrations-heading-row {
    flex-direction: column;
    gap: 16px;
  }

  .dot-divider--inline {
    width: 200px;
    flex: none;
  }

  .integrations-row {
    gap: 28px;
  }
}

/* ------ Tablet portrait (max-width: 768px) ------ */
@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .container {
    padding: 0 20px;
  }

  .btn {
    padding: 13px 24px;
  }

  /* Hero illustration — constrain height on tablet */
  .hero-illustration svg {
    max-height: 300px;
  }

  /* Integrations — allow 4+4 wrapping on tablet portrait */
  .integrations-row {
    gap: 24px 32px;
  }

  /* Cards grid — 2-col on tablet (already set at 1023px, restate for clarity) */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   14. SECTION HEADINGS (shared)
   -------------------------------------------------------------------------- */

.section-heading {
  text-align: center;
  color: var(--navy);
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 48px;
}

/* Inline variant used alongside flanking dividers */
.section-heading--inline {
  margin-bottom: 0;
  white-space: nowrap;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   15. DOTTED DIVIDER
   -------------------------------------------------------------------------- */

.dot-divider {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 4px;
  margin: 0 auto 24px;
  background-image: radial-gradient(circle, #72c3d5 2px, transparent 2px);
  background-size: 16px 4px;
  background-repeat: repeat-x;
  background-position: center;
}

/* Inline variant — sits beside a heading, grows to fill space */
.dot-divider--inline {
  display: block;
  flex: 1;
  max-width: none;
  margin: 0;
  height: 4px;
}


/* --------------------------------------------------------------------------
   16. AI AGE SECTION
   -------------------------------------------------------------------------- */

.ai-age {
  background-color: var(--white);
}

/* Four-column card grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ai-card {
  background: var(--white);
  border-top: 3px solid var(--light-blue);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.ai-card:hover {
  box-shadow: 0 6px 20px rgba(11, 42, 74, 0.1);
  transform: translateY(-3px);
}

.ai-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ai-card-title {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Override the base h3 font-size for card titles */
.ai-card h3.ai-card-title {
  font-size: 1.1rem;
}

.ai-card-desc {
  color: #4a5568;
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
}


/* --------------------------------------------------------------------------
   17. INTEGRATIONS SECTION
   -------------------------------------------------------------------------- */

.integrations {
  background-color: var(--bg);
}

/* Heading row — flanking dot dividers + centred heading */
.integrations-heading-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.integrations-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 32px 40px;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90px;
  transition: filter var(--transition), transform var(--transition);
}

.integration-item svg,
.integration-item .integration-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: 72px;
}

.integration-label {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

/* Optional: grayscale with colour reveal on hover */
.integration-item {
  filter: grayscale(30%);
  opacity: 0.8;
}

.integration-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   18. NOT ANOTHER APP SECTION
   -------------------------------------------------------------------------- */

.not-another-app {
  background: var(--navy);
  padding: 96px 0;
}

.not-another-app h2 {
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  text-align: center;
  margin-bottom: 48px;
}

/* Reading-width constraint */
.not-another-app .container > *:not(h2) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pain-points {
  list-style: none;
  counter-reset: pain-counter;
  padding: 0;
  margin: 0 auto 0;
  max-width: 700px;
}

.pain-points li {
  counter-increment: pain-counter;
  position: relative;
  padding-left: 52px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pain-points li::before {
  content: counter(pain-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1.3;
  width: 36px;
  text-align: center;
}

.response-block {
  max-width: 700px;
  margin: 40px auto 0;
}

.response-label {
  display: block;
  color: var(--orange);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.response-block ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.response-block ul li {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.response-block ul li::marker {
  color: var(--orange);
}


/* --------------------------------------------------------------------------
   19. CONTACT FORM SECTION
   -------------------------------------------------------------------------- */

.contact-section {
  padding: 96px 0;
  background-color: var(--bg);
}

.contact-section h2 {
  color: var(--navy);
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  text-align: center;
  margin-bottom: 12px;
}

.contact-subline {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.0625rem;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 158, 26, 0.15);
}

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

.btn-full {
  width: 100%;
  text-align: center;
}

.form-message {
  text-align: center;
  padding: 40px 0;
  max-width: 560px;
  margin: 0 auto;
}

.form-message h3 {
  color: var(--navy);
  font-family: var(--font);
  font-weight: 600;
  margin-bottom: 12px;
}

.form-message p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-message a {
  color: var(--orange);
}

.form-message a:hover {
  text-decoration: underline;
  color: var(--orange-dark);
}

.form-message--error p {
  color: #dc2626;
}


/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid #e2e8f0;
  padding: 48px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.site-footer a {
  color: var(--blue);
}

.site-footer a:hover {
  color: var(--orange);
}

.copyright {
  color: #94a3b8;
  font-size: 0.9375rem;
  margin-top: 8px !important;
}


/* ------ Mobile (max-width: 767px) ------ */
@media (max-width: 767px) {
  section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }

  .btn {
    padding: 13px 22px;
    font-size: 0.9375rem;
  }

  /* Nav */
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-logo {
    max-height: 32px;
  }

  .nav .btn {
    font-size: 0.8125rem;
    padding: 9px 14px;
    white-space: nowrap;
  }

  /* Hero */
  .hero {
    padding: 64px 0 40px;
  }

  .hero-logo {
    max-width: 240px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-subline {
    font-size: 1.0625rem;
    margin-bottom: 24px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Hero illustration — cap height so it doesn't dominate on mobile */
  .hero-illustration {
    display: flex;
    justify-content: center;
  }

  .hero-illustration svg {
    max-height: 260px;
  }

  /* Pillars — reduced spacing on mobile */
  .pillars {
    padding: 56px 0 40px;
  }

  .pillars .eyebrow {
    margin-bottom: 36px;
  }

  .pillar-row {
    margin-bottom: 40px;
    gap: 16px;
  }

  .pillar-label {
    font-size: 1rem;
  }

  .pillar-copy {
    font-size: 1rem;
  }

  /* Pillar SVGs — cap height on mobile */
  .pillar-visual svg {
    max-height: 220px;
    width: 100%;
  }

  /* AI Age cards — single column on mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-card {
    padding: 24px 20px;
  }

  /* Integrations — tighter grid on mobile */
  .integrations-row {
    gap: 20px 24px;
  }

  .integration-item svg {
    height: 34px;
  }

  .integration-label {
    font-size: 0.8125rem;
  }

  /* Not another app — reduce list indent on mobile */
  .pain-points li {
    padding-left: 44px;
    font-size: 1rem;
  }

  .pain-points li::before {
    font-size: 1.25rem;
    width: 30px;
  }

  .response-block ul li {
    font-size: 1rem;
  }

  /* Contact form — ensure full width on mobile */
  .contact-form {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px; /* prevent iOS auto-zoom on input focus */
  }
}
