/* ==========================================================================
   FLODESK INTEGRATIONS PAGE — COMBINED STYLES
   Base design system + page-specific styles
   ========================================================================== */

/* ---------- CUSTOM FONT ---------- */
@font-face {
  font-family: 'Flodesk Sans';
  src: url('assets/fonts/FlodeskSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Flodesk Sans';
  src: url('assets/fonts/FlodeskSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Flodesk palette — monochrome with warm cream */
  --color-cream:       #F8F8F5;
  --color-white:       #ffffff;
  --color-dark:        #111110;
  --color-dark-hover:  #333333;
  --color-text:        #111110;
  --color-text-mid:    #555555;
  --color-text-muted:  #888888;
  --color-border:      #e5e3de;
  --color-border-light:#eeece7;
  --color-placeholder: #f0eeea;

  /* Typography — all sans-serif */
  --font:  'Flodesk Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Sizing */
  --container-max: 1200px;
  --container-wide: 1360px;
  --container-narrow: 800px;
  --nav-height: 72px;
  --radius: 10px;
  --radius-pill: 100px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- UTILITIES ---------- */
.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;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  height: 64px;
  padding: 0 2.25rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: #464643;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  box-shadow: inset 0 0 0 1.5px var(--color-border);
}

.btn--outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--color-text);
}

.btn--lg {
  font-size: 0.875rem;
  padding: 0 3rem;
}

/* Inverted for dark backgrounds */
.btn--inverted {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--inverted:hover {
  background: #E1E1DB;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  height: var(--nav-height);
}

.nav__inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 100%;
}

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

.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: var(--space-lg);
  margin: 0 auto;
}

.nav__links li {
  display: flex;
  align-items: center;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  transition: opacity 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__links a:hover {
  opacity: 0.6;
}

/* Dropdown chevron */
.nav__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}

.nav__chevron::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
  margin-left: auto;
}

.nav__actions .btn {
  height: 48px;
  font-size: 0.875rem;
  padding: 0 1.5rem;
}

.nav__login {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity 0.15s ease;
}

.nav__login:hover {
  opacity: 0.6;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-cream);
  color: var(--color-text);
  padding: 0 40px 40px;
}

.footer > .container {
  background: var(--color-border-light);
  border-radius: 24px;
  max-width: var(--container-wide);
  padding: 64px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  flex-shrink: 0;
}

.footer__brand--mobile {
  display: none;
}

.footer__logo {
  display: inline-block;
}

.footer__logo img {
  height: 42px;
  width: auto;
  display: block;
}

.footer__columns {
  display: flex;
  gap: 64px;
}

.footer__col {
  list-style: none;
}

.footer__col summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
}

.footer__col summary::-webkit-details-marker {
  display: none;
}

.footer__col summary::marker {
  display: none;
  content: '';
}

.footer__chevron {
  display: none;
}

.footer h4 {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity 0.15s ease;
}

.footer a:hover {
  opacity: 0.6;
}

.footer__bottom {
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.footer__legal a:hover {
  opacity: 0.6;
}

.footer__bottom p {
  margin-left: auto;
}


/* ==========================================================================
   PAGE-SPECIFIC — Integrations V2
   ========================================================================== */

/* ---------- HERO ---------- */
.v2-hero {
  background: var(--color-cream);
  padding: 160px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.v2-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.v2-hero h1 {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  max-width: 602px;
}

.v2-hero__sub {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.25;
  color: rgba(17, 17, 16, 0.65);
  max-width: 546px;
}

.v2-hero__cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.v2-hero__image {
  width: 100%;
  max-width: 1360px;
  border-radius: 24px;
  overflow: hidden;
}

.v2-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- INTEGRATION CARDS ---------- */
.v2-integrations {
  background: var(--color-cream);
  padding: 240px 155px;
}

.v2-integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.v2-card {
  background: #f0f0eb;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.v2-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-card__icon img {
  max-width: 64px;
  max-height: 64px;
  width: auto;
  height: auto;
}

.v2-card__icon-placeholder {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.v2-card__name {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: #111110;
}

.v2-card__desc {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  color: rgba(17, 17, 16, 0.65);
}

/* ---------- AUTOMATION — "Plus thousands more" ---------- */
.v2-automation {
  background: #111110;
  padding: 240px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.v2-automation__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.v2-automation__header h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f0f0eb;
  margin-bottom: 0;
}

.v2-automation__sub {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.25;
  color: rgba(240, 240, 235, 0.6);
  max-width: 445px;
}

.v2-automation__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0 155px;
  max-width: 1440px;
  width: 100%;
}

.v2-automation__card {
  flex: 1 1 0;
  min-width: 300px;
  background: rgba(240, 240, 235, 0.05);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.v2-automation__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2-automation__card-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-automation__card-icon img {
  max-width: 64px;
  max-height: 64px;
  width: auto;
  height: auto;
}

.v2-automation__card-icon-placeholder {
  width: 64px;
  height: 64px;
  background: rgba(240, 240, 235, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 500;
  color: #f0f0eb;
}

.v2-automation__card-header h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f0f0eb;
}

.v2-automation__workflows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-automation__workflows p {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: #f0f0eb;
}

.v2-automation__workflows strong {
  font-weight: 500;
}

.v2-automation__workflows span {
  font-weight: 400;
  color: rgba(240, 240, 235, 0.6);
}

.v2-automation__card .btn {
  align-self: flex-start;
}

/* ---------- API — "Build your own integration" ---------- */
.v2-api {
  background: var(--color-cream);
  padding: 240px 40px 0;
}

.v2-api__inner {
  max-width: 1360px;
  margin: 0 auto;
  background: #c2bafc;
  border-radius: 24px;
  padding: 160px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.v2-api h2 {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111110;
  margin-bottom: 0;
}

.v2-api__sub {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.25;
  color: rgba(17, 17, 16, 0.65);
  max-width: 560px;
}

/* ---------- FAQ ---------- */
.v2-faq {
  background: var(--color-cream);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.v2-faq h2 {
  font-family: var(--font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #111110;
  margin-bottom: 48px;
}

.v2-faq__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 272px;
}

.v2-faq__item {
  background: #f0f0eb;
  border-radius: 16px;
  overflow: hidden;
}

.v2-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}

.v2-faq__item summary::-webkit-details-marker {
  display: none;
}

.v2-faq__item summary::marker {
  display: none;
  content: '';
}

.v2-faq__question {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: #111110;
  flex: 1;
}

.v2-faq__chevron {
  flex-shrink: 0;
  color: var(--color-text);
  transition: transform 0.25s ease;
  transform: rotate(90deg);
}

.v2-faq__item[open] .v2-faq__chevron {
  transform: rotate(270deg);
}

.v2-faq__answer {
  padding: 0 32px 32px;
  max-width: 640px;
}

.v2-faq__answer p {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(17, 17, 16, 0.65);
  margin-bottom: 0.75rem;
}

.v2-faq__answer p:last-child {
  margin-bottom: 0;
}

.v2-faq__answer a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-border);
}

.v2-faq__answer a:hover {
  text-decoration-color: var(--color-text);
}

/* ---------- BOTTOM CTA ---------- */
.v2-cta {
  background: var(--color-cream);
  padding: 0 40px 40px;
}

.v2-cta__wrapper {
  max-width: 1360px;
  margin: 0 auto;
}

.v2-cta__inner {
  background: #111110;
  border-radius: 24px;
  overflow: hidden;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.v2-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 670px;
  padding: 0 var(--space-md);
}

.v2-cta h2 {
  font-family: var(--font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f8f8f6;
  margin-bottom: 0;
}

.v2-cta__cards {
  overflow: hidden;
  height: 560px;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.v2-cta__cards-track {
  display: flex;
  gap: 24px;
  animation: cta-scroll 30s linear infinite;
  width: max-content;
}

@keyframes cta-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-cta__cards-track {
    animation: none;
  }
}

.v2-cta__email-card {
  height: 560px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* -- Pause / Play toggle -- */
.v2-cta__cards-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: rgba(17, 17, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 1;
}

.v2-cta__cards-toggle:hover {
  background: rgba(17, 17, 16, 0.75);
}

.v2-cta__cards-toggle svg {
  width: 20px;
  height: 20px;
  fill: #f8f8f6;
}

.v2-cta__cards-toggle .icon-play {
  display: none;
}

.v2-cta__cards-toggle.is-paused .icon-pause {
  display: none;
}

.v2-cta__cards-toggle.is-paused .icon-play {
  display: block;
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: #f0f0eb;
  padding: 8px;
  margin-bottom: 16px;
}

.mobile-nav__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.mobile-nav__item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav__label {
  display: block;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 500;
  color: #f0f0eb;
  line-height: 1.2;
  margin-bottom: 4px;
}

.mobile-nav__desc {
  display: block;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(240, 240, 235, 0.5);
  line-height: 1.4;
}

.mobile-nav__chevron {
  flex-shrink: 0;
  color: rgba(240, 240, 235, 0.4);
  margin-left: 16px;
}

.mobile-nav__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
}

.mobile-nav__actions .btn {
  height: 52px;
  padding: 0 2rem;
  font-size: 0.9375rem;
}

.mobile-nav__login {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #f0f0eb;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.mobile-nav__login:hover {
  opacity: 0.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1280px) {
  .v2-integrations {
    padding: 240px 80px;
  }

  .v2-automation__grid {
    padding: 0 80px;
  }

  .v2-faq__list {
    padding: 0 120px;
  }
}

@media (max-width: 1024px) {
  .v2-hero {
    padding: 100px 24px 0;
    gap: 60px;
  }

  .v2-integrations {
    padding: 160px 24px;
  }

  .v2-automation {
    padding: 160px 0;
  }

  .v2-api {
    padding: 160px 24px 0;
  }

  .v2-automation__grid {
    padding: 0 24px;
  }

  .v2-api__inner {
    padding: 100px 24px;
  }

  .v2-faq__list {
    padding: 0 80px;
  }

  .footer {
    padding: 0 24px 24px;
  }

  .v2-cta {
    padding: 0 24px 24px;
  }

  .v2-cta__cards {
    height: 360px;
  }

  .v2-cta__cards-track {
    gap: 16px;
  }

  .v2-cta__email-card {
    height: 360px;
  }
}

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

  .nav__inner {
    padding: 0 24px;
  }

  .nav__links {
    display: none;
  }

  .footer {
    padding: 0;
  }

  .footer > .container {
    background: transparent;
    border-radius: 0;
    padding: 0 24px 48px;
    max-width: none;
  }

  .footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
  }

  .footer__brand--desktop {
    display: none;
  }

  .footer__brand--mobile {
    display: flex;
    justify-content: center;
    padding: 48px 0 32px;
  }

  .footer__columns {
    flex-direction: column;
    gap: 0;
  }

  .footer__col {
    border-bottom: 1px solid var(--color-border);
  }

  .footer__col summary {
    cursor: pointer;
    padding: 24px 0;
    user-select: none;
    width: 100%;
  }

  .footer__col h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0;
  }

  .footer__chevron {
    display: block;
    flex-shrink: 0;
    color: var(--color-text);
    transition: transform 0.25s ease;
    transform: rotate(90deg);
    margin-left: auto;
  }

  .footer__col[open] .footer__chevron {
    transform: rotate(270deg);
  }

  .footer__col ul {
    padding: 0 0 24px;
    gap: 1rem;
  }

  .footer__col ul a {
    font-size: 1rem;
    font-weight: 500;
  }

  .footer__col:not([open]) ul {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
  }

  .footer__bottom p {
    margin-left: 0;
  }

  .v2-hero {
    padding: 80px 24px 0;
    gap: 40px;
  }

  .v2-hero h1 {
    font-size: 2.5rem;
  }

  .v2-hero__image {
    border-radius: 16px;
  }

  .v2-integrations {
    padding: 100px 24px;
  }

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

  .v2-card {
    padding: 24px;
  }

  .v2-card__icon,
  .v2-card__icon-placeholder {
    width: 48px;
    height: 48px;
  }

  .v2-card__icon img {
    max-width: 48px;
    max-height: 48px;
  }

  .v2-automation {
    padding: 100px 0;
    gap: 32px;
  }

  .v2-automation__grid {
    padding: 0 24px;
    flex-direction: column;
  }

  .v2-automation__card {
    padding: 32px;
    gap: 24px;
  }

  .v2-automation__card-icon,
  .v2-automation__card-icon-placeholder {
    width: 48px;
    height: 48px;
  }

  .v2-automation__card-icon img {
    max-width: 48px;
    max-height: 48px;
  }

  .v2-automation__card-header h3 {
    font-size: 1.25rem;
  }

  .v2-api {
    padding: 100px 24px 0;
  }

  .v2-api__inner {
    padding: 80px 24px;
    border-radius: 16px;
  }

  .v2-faq {
    padding: var(--space-2xl) 0;
  }

  .v2-faq__list {
    padding: 0 24px;
  }

  .v2-faq__item summary {
    padding: 24px;
  }

  .v2-faq__answer {
    padding: 0 24px 24px;
  }

  .v2-cta {
    padding: 0;
  }

  .v2-cta__inner {
    padding-top: 100px;
    gap: 48px;
    border-radius: 0;
  }

  .v2-cta__cards {
    height: 280px;
  }

  .v2-cta__cards-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .v2-cta__email-card {
    height: 280px;
  }

  .v2-cta__cards-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    bottom: 12px;
    right: 12px;
  }

  .v2-cta__cards-toggle svg {
    width: 16px;
    height: 16px;
  }
}

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

  .v2-integrations__grid {
    grid-template-columns: 1fr;
  }

  .v2-automation__header h2 {
    font-size: 2rem;
  }

  .v2-api h2 {
    font-size: 2rem;
  }

  .v2-faq h2 {
    font-size: 2.5rem;
  }

  .v2-cta h2 {
    font-size: 2.5rem;
  }

  .v2-cta__cards {
    height: 220px;
  }

  .v2-cta__cards-track {
    gap: 8px;
    animation-duration: 15s;
  }

  .v2-cta__email-card {
    height: 220px;
  }

  .v2-cta__cards-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    bottom: 8px;
    right: 8px;
  }

  .v2-cta__cards-toggle svg {
    width: 14px;
    height: 14px;
  }
}