/* ===========================
   MODELLESS — Design System
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Mono&display=swap');

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

:root {
  /* Colors */
  --color-bg: #0e0e0e;
  --color-surface: #1a1a1a;
  --color-border: #2a2a2a;
  --color-text-primary: #f5f0eb;
  --color-text-secondary: #8a8a8a;
  --color-accent: #ff2d2d;
  --color-overlay: rgba(10, 10, 10, 0.8);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ===========================
   Navigation Bar
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 48px;
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-text-primary);
  letter-spacing: 1.5px;
  line-height: 1;
  display: block;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  color: #f5f0eb;
}

.nav__links li.active a {
  color: var(--color-text-secondary);
  border-bottom: 2px solid var(--color-accent);
}

.nav__cta {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav__cta:hover {
  background-color: #e62626;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__container {
    padding: 16px 24px;
  }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  min-height: 100vh;
  padding: 120px var(--space-xl) var(--space-xl) 80px;
  align-items: center;
}

/* ---------- Left Column ---------- */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Tagline */
.hero__tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4.2px;
  line-height: 20px;
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 110px);
  line-height: 99px;
  letter-spacing: -5.5px;
  color: var(--color-text-primary);
}

.hero__headline span {
  display: block;
}

.hero__headline .accent {
  color: var(--color-accent);
}

/* Description */
.hero__description {
  max-width: 512px;
  padding-top: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 32.5px;
  color: var(--color-text-secondary);
}

/* Buttons */
.hero__actions {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
  padding: 16.5px 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  border: none;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
}

.btn--primary:hover {
  background-color: #e62626;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 45, 45, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-text-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
}

/* ---------- Right Column ---------- */
.hero__visual {
  position: relative;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  height: auto;
  align-self: center;
  justify-self: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__image {
  position: absolute;
  top: 0;
  left: -12.5%;
  width: 125%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.15);
  transform: scale(1.02); /* Slight scale to crop baked-in dirty edges from the image */
  transition: filter 0.6s ease, transform 0.6s ease;
}

.hero__visual:hover .hero__image {
  filter: saturate(0.3);
  transform: scale(1.04);
}

/* Overlay Badge */
.hero__badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--color-overlay);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__badge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  line-height: 15px;
}

.hero__badge-version {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-text-primary);
  letter-spacing: 2.4px;
  line-height: 32px;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translate(10px, 10px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.hero__tagline {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero__headline {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero__description {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero__actions {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero__visual {
  animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero__badge {
  animation: badgeFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg);
    min-height: auto;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__headline {
    font-size: 64px;
    line-height: 0.95;
  }

  .hero__description {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: var(--space-md) var(--space-sm);
  }

  .hero__visual {
    width: 100%;
  }

  .hero__headline {
    font-size: 48px;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .hero__badge {
    bottom: 16px;
    right: 16px;
    padding: 16px;
  }
}

/* ===========================
   Problem / Solution Section
   =========================== */
.problem {
  background-color: #0a0a0a;
  padding: 128px 48px 160px 48px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.problem__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 64px;
}

/* Shared section tagline */
.section-tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4.2px;
  line-height: 20px;
}

/* Card Grid */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
}

.card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 46px 40px;
  min-height: 312px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #444;
}

.card__icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  margin-bottom: 30px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--color-text-primary);
  letter-spacing: 0.75px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}

.card__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-secondary);
}

/* Solution Bottom Area */
.solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
  padding-top: 64px;
  gap: 24px;
}

.solution__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-text-primary);
  font-weight: 400;
}

/* Responsive adjustments for Problem/Solution */
@media (max-width: 1024px) {
  .problem {
    padding: 96px 32px;
  }
  
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .problem {
    padding: 80px 24px;
  }

  .problem__container {
    gap: 48px;
  }

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

  .card {
    min-height: auto;
    padding: 32px 24px;
  }

  .solution {
    padding-top: 32px;
  }
}

/* ===========================
   How It Works Section
   =========================== */
.how {
  background-color: var(--color-surface);
  padding: 128px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.how__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 96px;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 191px;
  width: 100%;
}

.step {
  display: flex;
  align-items: center;
  gap: 96px;
  width: 100%;
}

.step--reverse {
  flex-direction: row-reverse;
}

/* Step Content (Left/Right Text) */
.step__content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step__number {
  position: absolute;
  top: -40px;
  left: 0;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.step__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-text-primary);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}

.step__description {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 29.25px;
  color: var(--color-text-secondary);
  max-width: 540px;
}

/* Step Visuals */
.step__visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.visual-box {
  background-color: #0a0a0a;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 33px;
  width: 100%;
  max-width: 546px;
  height: 307px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.visual-box--video {
  padding: 0;
}

.step__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.step__image--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Visual Grid (Step 2) */
.visual-grid {
  background-color: #0a0a0a;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 33px;
  width: 100%;
  max-width: 546px;
  height: 307px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.visual-grid__item {
  background-color: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-grid__item--active {
  border: 2px solid var(--color-accent);
  padding: 2px;
}

/* Generating Badge */
.generating-badge {
  position: absolute;
  background-color: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 2px;
  z-index: 2;
}

/* Responsive adjustments for How It Works */
@media (max-width: 1024px) {
  .how {
    padding: 96px 32px;
  }
  
  .step {
    flex-direction: column;
    gap: 64px;
    text-align: center;
  }
  
  .step--reverse {
    flex-direction: column;
  }
  
  .step__content {
    align-items: center;
  }
  
  .step__number {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
  
  .how__steps {
    gap: 120px;
  }
}

@media (max-width: 600px) {
  .how {
    padding: 64px 24px;
  }
  
  .how__steps {
    gap: 96px;
  }
  
  .step__title {
    font-size: 40px;
  }
  
  .visual-box, .visual-grid {
    height: 220px;
    padding: 16px;
  }
  
  .visual-grid {
    gap: 8px;
  }
}

/* ===========================
   Benefits Section
   =========================== */
.benefits {
  background-color: #0a0a0a;
  padding: 128px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.benefits__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 64px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.benefit-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 46px 40px;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: #444;
}

.benefit-card__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 30px;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-text-primary);
  letter-spacing: 2.4px;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 400;
}

.benefit-card__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--color-text-secondary);
}

/* Responsive adjustments for Benefits Grid */
@media (max-width: 1024px) {
  .benefits {
    padding: 96px 32px;
  }
  
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 80px 24px;
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefit-card {
    padding: 32px 24px;
    min-height: auto;
  }
}

/* ===========================
   Showcase Slider Section
   =========================== */
.showcase {
  background-color: #0a0a0a;
  padding: 129px 48px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  width: 100%;
}

.showcase__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 64px;
}

.showcase__slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 764 / 1024;
  background-color: #f7f7f7;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.showcase__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.showcase__front {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  pointer-events: none;
}

.showcase__overlay {
  position: absolute;
  top: 32px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ffffff;
  z-index: 2;
  pointer-events: none;
}

.showcase__overlay--left {
  left: 32px;
  background-color: rgba(10, 10, 10, 0.6);
}

.showcase__overlay--right {
  right: 32px;
  background-color: var(--color-accent);
}

.showcase__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--color-accent);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.showcase__handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 10px rgba(255, 45, 45, 0.4);
  animation: handlePulse 2s ease-in-out infinite;
}

@keyframes handlePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@media (max-width: 1024px) {
  .showcase {
    padding: 96px 32px;
  }
}

@media (max-width: 768px) {
  .showcase {
    padding: 80px 24px;
  }
  .showcase__overlay {
    top: 16px;
    font-size: 10px;
    padding: 6px 12px;
  }
  .showcase__overlay--left {
    left: 16px;
  }
  .showcase__overlay--right {
    right: 16px;
  }
}

/* ===========================
   Pricing CTA Section
   =========================== */
.pricing-cta {
  background-color: #0a0a0a;
  padding: 128px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pricing-cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  gap: 24px;
}

.pricing-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--color-text-primary);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-cta__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  color: var(--color-text-secondary);
  max-width: 560px;
}

@media (max-width: 768px) {
  .pricing-cta {
    padding: 80px 24px;
  }
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
  background-color: #0a0a0a;
  padding: 128px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.faq__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  gap: 64px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: #f5f0eb;
  margin: 0;
  padding-right: 24px;
}

.faq-item__icon {
  width: 16px;
  height: 16px;
  background-image: url('assets/icon-plus.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item--active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item--active .faq-item__content {
  max-height: 300px; /* Sufficiently large */
  margin-top: 16px;
  opacity: 1;
}

.faq-item__content p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .faq {
    padding: 80px 24px;
  }
  .faq__container {
    gap: 40px;
  }
  .faq-item {
    padding: 32px 0;
  }
  .faq-item__title {
    font-size: 16px;
  }
  .faq-item__content p {
    font-size: 14px;
  }
}

/* ===========================
   Final CTA Section
   =========================== */
.cta {
  background-color: #0a0a0a;
  padding: 192px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  gap: 48px;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400; /* Regular */
  font-size: 120px;
  line-height: 1;
  letter-spacing: -6px;
  text-transform: uppercase;
  color: #f5f0eb;
  text-align: center;
  margin: 0;
  max-width: 900px;
}

.cta__btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #f5f0eb;
  font-family: var(--font-display);
  font-weight: 400; /* Regular */
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 24px 64px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0px 0px 50px 0px rgba(255, 45, 45, 0.3);
  transition: all 0.3s ease;
}

.cta__btn:hover {
  background-color: #e02626;
  box-shadow: 0px 0px 70px 0px rgba(255, 45, 45, 0.5);
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .cta__title {
    font-size: 80px;
    letter-spacing: -4px;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 128px 24px;
  }
  .cta__title {
    font-size: 56px;
    letter-spacing: -2px;
  }
  .cta__btn {
    font-size: 24px;
    padding: 20px 48px;
  }
}

button.cta__btn {
  border: none;
  cursor: pointer;
  appearance: none;
  font-family: var(--font-display);
  align-self: center;
  margin-top: 16px;
  width: 100%;
  max-width: 500px;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  margin-top: 24px;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(230, 38, 38, 0.2);
}

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

/* ===========================
   Footer Section
   =========================== */
.footer {
  background-color: #0a0a0a;
  border-top: 1px solid #2a2a2a;
  padding: 96px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 96px;
}

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

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

.footer__brand {
  gap: 24px;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1.2px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin: 0;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #f5f0eb;
  text-transform: uppercase;
  margin: 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #f5f0eb;
}

.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin: 0;
}

.footer__socials {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__socials a:hover {
  opacity: 1;
}

.footer__socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 64px 24px;
  }
  .footer__container {
    gap: 64px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
