/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-black: #0a0a0a;
  --color-black-soft: #111111;
  --color-dark-blue: #0f172a;
  --color-dark-teal: #1e293b;
  --color-orange: #d97706;
  --color-orange-warm: #f97316;
  --color-orange-dark: #b45309;
  --color-orange-glow: rgba(217, 119, 6, 0.3);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-text-light: rgba(255, 255, 255, 0.5);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-orange-dark);
}

.accent-text {
  color: var(--color-orange);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
  border-radius: 25px;
}

.subscriber-container {
  background-image: radial-gradient(
      circle at bottom right,
      rgb(233, 113, 34) 0,
      rgba(208, 104, 63, 0.7) 10%,
      rgba(255, 140, 0, 0) 80%
    ),
    radial-gradient(
      circle at top left,
      rgba(81, 209, 255, 0.5) 0,
      rgba(141, 216, 254, 0.5) 0,
      rgba(0, 77, 102, 0) 40%
    );
  background-repeat: no-repeat;
  padding-block: 1rem;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================
   BACKGROUND FADE EFFECTS
   ============================================ */

.hero-bg-fade,
.benefits-bg-fade,
.testimonials-bg-fade,
.cta-bg-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero-bg-fade {
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(217, 119, 6, 0.08) 0%,
    transparent 50%
  );
}

.hero-corner-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.hero-corner-blur-bottom-left {
  bottom: -400px;
  left: -400px;
  width: 1000px;
  height: 1000px;
  background: rgba(233, 114, 34, 0.801);
}

.hero-corner-blur-top-right {
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: rgba(81, 209, 255, 0.6);
}

.benefits-bg-fade {
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(217, 119, 6, 0.05) 0%,
    transparent 60%
  );
}

.testimonials-bg-fade {
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(217, 119, 6, 0.04) 0%,
    transparent 55%
  );
}

.cta-bg-fade {
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(217, 119, 6, 0.1) 0%,
    transparent 60%
  );
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  background: transparent;
  box-shadow: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.nav-logo img {
  width: 125px;
}

.nav-cta {
  height: 48px;
  width: 188px;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0);
  /* border-color: rgba(255, 255, 255, 0.5); */
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-orange);
}

/* Mobile Menu Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-mobile-bar {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-mobile-toggle.active .nav-mobile-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active .nav-mobile-bar:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active .nav-mobile-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-md);
  flex-direction: column;
  gap: var(--spacing-sm);
}

.nav-mobile-menu.active {
  display: flex;
}

.nav-mobile-link {
  color: var(--color-text-muted);
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-decoration: none;
}

.nav-mobile-link:hover {
  color: var(--color-orange);
}

.nav-mobile-link.nav-mobile-cta {
  color: var(--color-orange);
  font-weight: 500;
  border-bottom: none;
  margin-top: var(--spacing-xs);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
  background: var(--color-black);
  color: var(--color-text);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    padding: calc(60px + var(--spacing-lg)) var(--spacing-sm) var(--spacing-lg);
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: var(--spacing-sm);
  }

  .hero-subheading {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }

  .hero-corner-blur-bottom-left {
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
  }

  .hero-corner-blur-top-right {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.3) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(rgba(217, 119, 6, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.2) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  opacity: 0.8;
  filter: blur(0.4px);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.6) 0%,
    transparent 75%
  );
}

.hero-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(217, 119, 6, 0.02) 2px,
      rgba(217, 119, 6, 0.02) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(217, 119, 6, 0.02) 2px,
      rgba(217, 119, 6, 0.02) 4px
    );
  opacity: 0.5;
  pointer-events: none;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-headline {
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-subheading {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform, opacity;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius-full);
  font-weight: 300;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  /* background: var(--color-orange-warm); */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  border-radius: var(--border-radius-full);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: var(--spacing-xl) var(--spacing-md);
  padding-top: calc(var(--spacing-xl) * 1.5);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Decorative SVGs */
.about-svg {
  position: absolute;
  color: var(--color-orange);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.about-svg-1 {
  width: 300px;
  height: 300px;
  top: 5%;
  left: -5%;
  animation: spin-slow 60s linear infinite;
}

.about-svg-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -8%;
  opacity: 0.1;
  animation: spin-slow 80s linear infinite reverse;
}

.about-svg-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
  opacity: 0.12;
  animation: spin-slow 40s linear infinite;
}

.about-svg-4 {
  width: 500px;
  height: 250px;
  bottom: 20%;
  left: 5%;
  opacity: 0.08;
}

.about-svg-5 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Subtle glows */
.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.about-glow-1 {
  width: 600px;
  height: 600px;
  top: -20%;
  right: -10%;
  background: rgba(217, 119, 6, 0.08);
}

.about-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: rgba(81, 209, 255, 0.05);
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.about-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--border-radius-full);
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  transition: var(--transition);
}

.about-card:hover::before {
  border-color: rgba(217, 119, 6, 0.2);
}

/* Inner grid effect - fades from bottom-left to top-right */
.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(217, 119, 6, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(135deg, black 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* Main card spanning two rows */
.about-card-main {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-orange) 0%,
    rgba(217, 119, 6, 0.2) 100%
  );
}

.about-card > *:not(.about-card-accent) {
  position: relative;
  z-index: 1;
}

.about-card-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-card-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-muted);
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Highlight box */
.about-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.1) 0%,
    rgba(217, 119, 6, 0.02) 100%
  );
  border-left: 3px solid var(--color-orange);
  padding: var(--spacing-md) var(--spacing-lg);
  position: relative;
}

.about-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-left: none;
  pointer-events: none;
}

.about-highlight-text {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card-main {
    grid-row: auto;
  }

  .about-svg-1 {
    width: 200px;
    height: 200px;
  }

  .about-svg-2 {
    width: 250px;
    height: 250px;
  }

  .about-svg-3,
  .about-svg-4,
  .about-svg-5 {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-card {
    padding: var(--spacing-md);
  }

  .about-highlight-text {
    font-size: 1.1rem;
  }
}

/* ============================================
   WHO CAN JOIN SECTION
   ============================================ */

.who-can-join {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.who-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-muted);
}

.who-list {
  list-style: none;
  max-width: 1100px;
  margin: var(--spacing-lg) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.who-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  /* max-width: 50%; */
  margin: 0 auto;
}

.who-list li:last-child {
  width: 100%;
  text-align: center;
}

.who-list li {
  padding: var(--spacing-md) var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  /* border-radius: var(--border-radius-lg); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.who-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-2px);
}

.who-list li:hover::before {
  transform: scaleY(1);
}

/* Inner grid effect for who-list items - fades from bottom-left to top-right */
.who-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(217, 119, 6, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(135deg, black 0%, transparent 45%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, transparent 45%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* Messy grid - asymmetric layout */
.messy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.messy-grid .benefit-card:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.messy-grid .benefit-card:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-top: 20px;
}

.messy-grid .benefit-card:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  margin-top: -30px;
}

.messy-grid .benefit-card:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  margin-left: 40px;
}

.messy-grid .benefit-card:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.messy-grid .benefit-card:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 4 / 5;
  margin-left: 60px;
  margin-right: 60px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--spacing-md);
  /* border-radius: var(--border-radius-lg); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.benefit-card > * {
  position: relative;
  z-index: 2;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-orange) 0%,
    var(--color-orange-warm) 100%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  filter: grayscale(100%);
  transition: var(--transition);
  opacity: 0;
  position: static;
}

/* Inner grid effect for benefit cards - uses icon's ::before to span full card */
.benefit-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(217, 119, 6, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(135deg, black 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: -25px;
  right: -90px;
  background-size: contain;
  height: 75%;
  aspect-ratio: 1/1;
  z-index: -1;
  /* filter: grayscale(100%); */
}

.benefit-card:nth-child(1)::after {
  background-image: url(/static/money.svg);
}

.benefit-card:nth-child(2)::after {
  background-image: url(/static/rocket.svg);
}

.benefit-card:nth-child(3)::after {
  background-image: url(/static/user.svg);
}

.benefit-card:nth-child(4)::after {
  background-image: url(/static/diamond.svg);
}

.benefit-card:nth-child(5)::after {
  background-image: url(/static/handshake.svg);
}

.benefit-card:nth-child(6)::after {
  background-image: url(/static/box.svg);
  right: -55px;
  height: 100%;
}

.benefit-card:hover .benefit-icon {
  filter: grayscale(0%);
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
  font-weight: 600;
}

.benefit-text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.steps-container {
  max-width: 1000px;
  margin: var(--spacing-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.step {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  /* border-radius: var(--border-radius-lg); */
  border-left: 3px solid var(--color-orange);
  opacity: 0;
  transform: translateX(-20px);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Inner grid effect for step cards */
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(217, 119, 6, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(135deg, black 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.step > * {
  position: relative;
  z-index: 1;
}

.step:nth-child(even) {
  margin-left: 40px;
}

.step:nth-child(odd) {
  margin-right: 40px;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transform: translateX(4px);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-orange);
  opacity: 0.5;
  line-height: 1;
  min-width: 80px;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
  font-weight: 600;
}

.step-text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonials-grid .testimonial-card:nth-child(1) {
  grid-column: 1 / 2;
  margin-top: 0;
  border-bottom-left-radius: 0 !important;
}

.testimonials-grid .testimonial-card:nth-child(2) {
  grid-column: 2 / 3;
  margin-top: 30px;
}

.testimonials-grid .testimonial-card:nth-child(3) {
  grid-column: 3 / 4;
  margin-top: -20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--spacing-md);
  /* border-radius: var(--border-radius-lg); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  border-radius: 35px;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -90px;
  left: -20px;
  font-size: 10rem;
  color: var(--color-orange);
  opacity: 0.25;
  font-weight: 700;
}

.testimonial-card::after {
  content: "";
  height: 40px;
  width: 75px;
  position: absolute;
  top: 100%;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.testimonial-card:nth-child(1)::after {
  left: 0;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.testimonial-card:nth-child(2)::after {
  left: 30%;
  
  clip-path: polygon(100% 0, 0 0, 33% 100%);
}

.testimonial-card:nth-child(3)::after {
  right: 15%;
  
  clip-path: polygon(100% 0, 0 0, 74% 100%);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(217, 119, 6, 0.4);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); */
  transform: translateY(-4px);
}

.testimonial-card:hover::after {
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--color-black);
  color: var(--color-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-heading {
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  font-weight: 300;
}

.cta-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  color: #fff;
  line-height: 1.7;
}

.cta-secondary {
  margin-top: var(--spacing-md);
  color: var(--color-text-muted);
}

.cta-secondary a {
  color: var(--color-orange);
  text-decoration: underline;
}

.cta-secondary a:hover {
  color: var(--color-orange-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  background: var(--color-black);
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer-subheading {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.footer-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-link {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--color-orange);
}

.footer-social,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--spacing-lg) 0;
}

.footer-bottom {
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .messy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .messy-grid .benefit-card:nth-child(1),
  .messy-grid .benefit-card:nth-child(2),
  .messy-grid .benefit-card:nth-child(3),
  .messy-grid .benefit-card:nth-child(4),
  .messy-grid .benefit-card:nth-child(5),
  .messy-grid .benefit-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / 3;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 3rem;
  }

  .nav-container {
    padding: var(--spacing-sm);
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero {
    padding: calc(60px + var(--spacing-lg)) var(--spacing-sm) var(--spacing-lg);
    min-height: auto;
  }

  .who-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .who-list li {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .benefits-grid,
  .testimonials-grid,
  .messy-grid {
    grid-template-columns: 1fr;
  }

  .messy-grid .benefit-card,
  .testimonials-grid .testimonial-card {
    margin: 0 !important;
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .testimonials-grid .testimonial-card:nth-child(1),
  .testimonials-grid .testimonial-card:nth-child(2),
  .testimonials-grid .testimonial-card:nth-child(3) {
    margin: 0 !important;
    grid-column: 1 !important;
  }

  .step {
    flex-direction: column;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .step-number {
    min-width: auto;
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

@media (max-width: 1024px) {
  .cta-section {
    padding-inline: 0;
  }

  .subscriber-container {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .subscriber-container {
    padding-block: 0.5rem;
  }

  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

/* ============================================
   APPLY PAGE STYLES
   ============================================ */

.apply-page {
  background: var(--color-black);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Decorations */
.apply-bg-decorations {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.apply-deco {
  position: absolute;
  color: var(--color-orange);
  opacity: 0.12;
}

.apply-deco-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -10%;
  animation: spin-slow 90s linear infinite;
}

.apply-deco-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -8%;
  animation: spin-slow 70s linear infinite reverse;
}

.apply-deco-3 {
  width: 600px;
  height: 360px;
  top: 40%;
  right: -15%;
  opacity: 0.06;
}

.apply-deco-4 {
  width: 250px;
  height: 250px;
  bottom: 30%;
  left: 5%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.apply-deco-5 {
  width: 150px;
  height: 150px;
  top: 25%;
  left: 10%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite 1s;
}

.apply-deco-corner-tl {
  width: 150px;
  height: 150px;
  top: 80px;
  left: 0;
  opacity: 0.3;
}

.apply-deco-corner-br {
  width: 150px;
  height: 150px;
  bottom: 0;
  right: 0;
  opacity: 0.3;
}

/* Glows */
.apply-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(180px);
  pointer-events: none;
  z-index: 0;
}

.apply-glow-1 {
  width: 800px;
  height: 800px;
  top: -300px;
  right: -200px;
  background: rgba(217, 119, 6, 0.15);
}

.apply-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -150px;
  background: rgba(81, 209, 255, 0.08);
}

.apply-glow-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(217, 119, 6, 0.05);
}

/* Main Content */
.apply-main {
  position: relative;
  z-index: 1;
  padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
}

.apply-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.apply-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.apply-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--border-radius-full);
  color: var(--color-orange);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.apply-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-md);
}

.apply-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Form Styles */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

/* Form Section */
.form-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-orange) 0%,
    rgba(217, 119, 6, 0.1) 100%
  );
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  opacity: 0.4;
  line-height: 1;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

/* Labels */
.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.required {
  color: var(--color-orange);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

/* Inputs */
.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--color-text);
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

/* Input with prefix */
.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-prefix {
  position: absolute;
  left: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.form-input.has-prefix {
  padding-left: 2rem;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Select */
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--color-black);
  color: var(--color-text);
}

/* Checkbox Group */
.form-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: var(--transition);
}

.form-checkbox:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.form-checkbox input {
  display: none;
}

.form-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.form-checkbox input:checked + .form-checkbox-custom {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.form-checkbox input:checked + .form-checkbox-custom::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--color-black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-checkbox input:checked ~ .form-checkbox-label {
  color: var(--color-text);
}

/* Radio Group */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-radio-group.form-radio-inline {
  flex-direction: row;
  flex-wrap: wrap;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: var(--transition);
}

.form-radio:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.form-radio input {
  display: none;
}

.form-radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.form-radio input:checked + .form-radio-custom {
  border-color: var(--color-orange);
}

.form-radio input:checked + .form-radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-orange);
  border-radius: 50%;
}

.form-radio-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-radio input:checked ~ .form-radio-label {
  color: var(--color-text);
}

/* Terms Checkbox */
.form-checkbox-terms {
  background: transparent;
  border: none;
  padding: 0;
}

.form-checkbox-terms:hover {
  background: transparent;
}

.form-link {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-link:hover {
  color: var(--color-orange-warm);
}

/* Submit Section */
.form-submit-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.btn-submit .btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit .btn-spinner {
  animation: spin 1s linear infinite;
}

.btn-submit .btn-check,
.btn-submit .btn-error {
  width: 20px;
  height: 20px;
}

.btn-submit:disabled {
  cursor: not-allowed;
}

.form-submit-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Apply Footer */
.apply-footer {
  position: relative;
  z-index: 1;
  padding: var(--spacing-md) var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apply-footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.apply-footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.apply-footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.apply-footer-links a:hover {
  color: var(--color-orange);
}

/* Apply Page Responsive */
@media (max-width: 768px) {
  .apply-main {
    padding: calc(70px + var(--spacing-md)) var(--spacing-sm) var(--spacing-lg);
  }

  .form-section {
    padding: var(--spacing-md);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-checkbox-group {
    grid-template-columns: 1fr;
  }

  .form-radio-group.form-radio-inline {
    flex-direction: column;
  }

  .apply-deco-1 {
    width: 300px;
    height: 300px;
  }

  .apply-deco-2 {
    width: 250px;
    height: 250px;
  }

  .apply-deco-3,
  .apply-deco-4,
  .apply-deco-5 {
    display: none;
  }

  .apply-glow-1 {
    width: 400px;
    height: 400px;
  }

  .apply-glow-2 {
    width: 300px;
    height: 300px;
  }

  .apply-footer-content {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .btn-submit {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .form-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .form-section-number {
    font-size: 2rem;
  }

  .form-section-title {
    font-size: 1.25rem;
  }

  .form-checkbox,
  .form-radio {
    padding: 0.75rem;
  }

  .form-checkbox-label,
  .form-radio-label {
    font-size: 0.85rem;
  }
}
