/* ═══════════════════════════════════════════════
   ATLAS AGENTS — Global Stylesheet
   ALTO · Automated Labor & Task Operations
   ═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --navy: #0c1926;
  --navy-light: #132337;
  --navy-mid: #1a3150;
  --navy-90: rgba(12, 25, 38, 0.9);
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --teal-glow: rgba(20, 184, 166, 0.15);
  --teal-glow-strong: rgba(20, 184, 166, 0.25);
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-glow: rgba(245, 158, 11, 0.12);
  --slate: #64748b;
  --slate-dark: #334155;
  --slate-light: #94a3b8;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #e2e8f0;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(0, 0, 0, 0.06);
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Syne', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }

p { color: var(--slate); font-size: 1.0625rem; line-height: 1.75; }

.text-teal { color: var(--teal); }
.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.text-slate-light { color: var(--slate-light); }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(20, 184, 166, 0.2); }
  50% { box-shadow: 0 0 40px rgba(20, 184, 166, 0.35); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 100px 0;
}

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

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

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

.section--off-white {
  background: var(--off-white);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: var(--navy-90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--teal);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  border: 1.5px solid var(--teal);
}

.btn--outline:hover {
  background: var(--teal-glow);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero__glow--teal {
  background: var(--teal);
  top: 10%;
  right: -10%;
}

.hero__glow--amber {
  background: var(--amber);
  bottom: -20%;
  left: -10%;
  opacity: 0.08;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--teal), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

/* ─── Problem Section ─── */
.problem {
  padding: 100px 0;
  background: var(--off-white);
}

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

.problem__stat {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.problem__stat-label {
  font-size: 1.125rem;
  color: var(--slate);
  margin-bottom: 32px;
}

.problem__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.problem__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--amber-dark);
}

.problem__item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.problem__item p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ─── Agents Section ─── */
.agents__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.agents__header p {
  margin-top: 16px;
}

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

.agent-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

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

.agent-card:hover::before {
  opacity: 1;
}

.agent-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.agent-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
}

.agent-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.agent-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate);
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 60px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats-bar__item-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
}

.stats-bar__item-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(170deg, var(--navy), var(--navy-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(150px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-size: 1.125rem;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__founder {
  margin-top: 48px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-light);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Features Page ─── */
.features-hero {
  padding: 160px 0 80px;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}

.features-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.features-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.feature-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-dark);
}

.feature-detail:last-of-type {
  border-bottom: none;
}

.feature-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.feature-detail:nth-child(even) .feature-detail__inner {
  direction: rtl;
}

.feature-detail:nth-child(even) .feature-detail__inner > * {
  direction: ltr;
}

.feature-detail__icon-lg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-detail__icon-lg svg {
  width: 28px;
  height: 28px;
  color: var(--teal-dark);
}

.feature-detail h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.feature-detail p {
  margin-bottom: 24px;
}

.feature-detail__capabilities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-detail__cap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--slate-dark);
}

.feature-detail__cap svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.feature-detail__visual {
  background: linear-gradient(135deg, var(--off-white), #eef2f7);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border: 1px solid var(--border-dark);
}

.feature-detail__visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-detail__visual-icon svg {
  width: 40px;
  height: 40px;
  color: var(--teal);
}

/* ─── Privacy Page ─── */
.privacy-hero {
  padding: 160px 0 60px;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.privacy-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.privacy-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 48px;
}

.privacy-notice svg {
  width: 24px;
  height: 24px;
  color: var(--amber-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-notice p {
  font-size: 0.9375rem;
  color: var(--slate-dark);
  line-height: 1.7;
}

.privacy-section {
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.privacy-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.privacy-section__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-section__icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
}

.privacy-section h3 {
  font-size: 1.125rem;
}

.privacy-section__items {
  padding-left: 54px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-section__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate);
}

.privacy-section__item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--slate-light);
  margin-top: 10px;
  flex-shrink: 0;
}

.privacy-contact {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 16px;
}

.privacy-contact__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.privacy-contact__header svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.privacy-contact__header h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 1.0625rem;
}

.privacy-contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.privacy-footer-note {
  font-size: 0.8125rem;
  color: var(--slate-light);
  margin-top: 40px;
  text-align: center;
  line-height: 1.6;
}

/* ─── Mobile Nav ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu__close svg {
  width: 28px;
  height: 28px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .agents__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .feature-detail__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-detail:nth-child(even) .feature-detail__inner {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__actions { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 12px; }

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .section { padding: 64px 0; }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .feature-detail__visual {
    min-height: 200px;
    padding: 32px;
  }

  .cta-section { padding: 80px 0; }
  .cta-section__actions { flex-direction: column; align-items: center; }

  .privacy-section__items { padding-left: 0; }
  .privacy-contact { padding: 28px; }
}
