@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --surface: #c7d4e3;
  --page: #ffffff;
  --cta: #0b0c10;
  --soft-white: #f8fafc;
  --muted: #cbd5e1;
  --card-radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter";
  background: var(--page);
  color: #0f172a;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  overflow-x: hidden;
}

.page > .hero {
  margin: 0;
  padding: 0;
}

.page > .features,
.page > .faq {
  padding: 64px 24px;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Hero Section - Launching Soon */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f1419 100%);
  box-sizing: border-box;
}

.hero__header {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
}

.hero__logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: -300px;
  right: -200px;
  animation-delay: 7s;
}

.hero__glow--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 900px;
}

.hero__overline {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.hero__headline {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 700px;
  font-weight: 400;
}

/* Countdown Timer */
.hero__countdown {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 100px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.countdown__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.countdown__value {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.countdown__separator {
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 4px;
}

/* CTA Section */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  width: 100%;
}

.hero__cta-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #cbd5e1;
}

.hero__form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px 8px 8px 20px;
  transition: all 0.3s ease;
}

.hero__form:focus-within {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.hero__form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  padding: 12px 0;
}

.hero__form input::placeholder {
  color: #94a3b8;
}

.hero__form button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.hero__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

.hero__form button:active {
  transform: translateY(0);
}

.hero__microcopy {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
}

/* Launch Benefits Strip Section */
.benefits {
  width: 100%;
  padding: 80px 24px;
  background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.3) 50%, transparent 100%);
}

.benefits__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.benefits__card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.benefits__card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
}

.benefits__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 14px;
  color: #a78bfa;
  transition: all 0.3s ease;
}

.benefits__card:hover .benefits__icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  transform: scale(1.05);
}

.benefits__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.benefits__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.benefits__description {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #94a3b8;
  font-weight: 400;
}

/* What is Ziplofy? Intro Section */
.intro {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0f1419 0%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

.intro__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.intro__label {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.intro__headline {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.intro__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
  font-weight: 400;
}

.intro__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.6;
}

.intro__highlight svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: #a78bfa;
  stroke-width: 2.5;
}

.intro__highlight span {
  flex: 1;
}

/* Dashboard Mockup Visual */
.intro__visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.intro__image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.1);
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.intro__image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 24px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* How Ziplofy Works Section */
.how-it-works {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1419 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out;
}

.how-it-works__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.how-it-works__headline {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.how-it-works__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.how-it-works__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.step-card:nth-child(1) {
  animation-delay: 0.1s;
}

.step-card:nth-child(3) {
  animation-delay: 0.2s;
}

.step-card:nth-child(5) {
  animation-delay: 0.3s;
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.25);
}

.step-card__number {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: rgba(139, 92, 246, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.step-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 18px;
  color: #a78bfa;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step-card:hover .step-card__icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  transform: scale(1.05);
}

.step-card__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.step-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.step-card__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-connector svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.step-connector:hover {
  color: rgba(139, 92, 246, 0.7);
  transform: translateX(4px);
}

/* Core Features Section */
.core-features {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0f1419 0%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

.core-features__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.core-features__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out;
}

.core-features__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.core-features__headline {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.core-features__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.core-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.core-features .feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.core-features .feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.25);
}

.core-features .feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  color: #a78bfa;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.core-features .feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  transform: scale(1.05);
}

.core-features .feature-card__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.core-features .feature-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.core-features .feature-card__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

/* Why Ziplofy Section */
.why-ziplofy {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1419 100%);
  position: relative;
  overflow: hidden;
}

.why-ziplofy__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-ziplofy__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out;
}

.why-ziplofy__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.why-ziplofy__headline {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.why-ziplofy__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.why-ziplofy__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-ziplofy__benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.benefit-point:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-point:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-point:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-point:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-point__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: #a78bfa;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-point:hover .benefit-point__icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  transform: scale(1.05);
}

.benefit-point__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.benefit-point__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-point__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.benefit-point__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.why-ziplofy__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeInRight 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
}

.stat-card__value {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}

.stat-card__label {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Social Proof / Trust Section */
.social-proof {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0f1419 0%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

.social-proof__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.social-proof__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out;
}

.social-proof__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.social-proof__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.rating__stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
}

.rating__stars svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.social-proof__headline {
  margin: 0;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.social-proof__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.social-proof__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stat-block {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-block:nth-child(1) {
  animation-delay: 0.3s;
}

.stat-block:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-block__value {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-block__label {
  font-size: 16px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-proof__testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.5s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.6s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.7s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.25);
}

.testimonial-card__quote {
  color: rgba(139, 92, 246, 0.5);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.testimonial-card__quote svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.testimonial-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  font-weight: 400;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #c4b5fd;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.4;
}

/* Launch Sign-Up Form Section */
.signup-form {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
  position: relative;
  overflow: hidden;
}

.signup-form__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.signup-form__card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.1);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.signup-form__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 24px;
  pointer-events: none;
  z-index: -1;
}

.signup-form__header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-form__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.signup-form__headline {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.signup-form__subtext {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.signup-form__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.01em;
}

.form-label .required {
  color: #f87171;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #64748b;
}

.form-input:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1f2e;
  color: #ffffff;
  padding: 12px;
}

.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  color: #cbd5e1;
  user-select: none;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-color: #8b5cf6;
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-input:focus + .checkbox-custom {
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.checkbox-text {
  flex: 1;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.3), 0 6px 24px rgba(99, 102, 241, 0.5);
}

.form-trust {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #050810 0%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

.faq__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out;
}

.faq__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  opacity: 0.9;
}

.faq__headline {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.faq__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.faq__list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq__header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__header-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq__question {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -0.01em;
  flex: 1;
  text-align: left;
}

.faq__toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #a78bfa;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}

.faq__toggle:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.1);
}

.faq__toggle:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.faq__toggle span {
  display: block;
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__toggle {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 32px;
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
  padding: 0 32px 24px;
}

.faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #94a3b8;
  font-weight: 400;
  padding-top: 8px;
}

/* Final Call-to-Action Section */
.final-cta {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.final-cta__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.final-cta__headline {
  margin: 0;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta__subtext {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
}

.final-cta__button {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.final-cta__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.final-cta__button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.final-cta__button:hover::before {
  opacity: 1;
}

.final-cta__button:active {
  transform: scale(1.02);
}

.final-cta__button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.3), 0 12px 32px rgba(99, 102, 241, 0.5);
}

/* Footer Section */
.footer {
  width: 100%;
  padding: 80px 24px 32px;
  background: linear-gradient(180deg, #050810 0%, #000000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  margin-bottom: 48px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__column-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 15px;
  font-weight: 400;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.footer__link:hover {
  color: #a78bfa;
  transform: translateX(4px);
}

.footer__link:focus {
  outline: none;
  color: #a78bfa;
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer__copyright {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}

/* Features section */
.features {
  width: 100%;
  padding: 8px 4px 24px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #0f172a;
}

.feature-card__shape {
  position: relative;
  background: #f8fafc;
  /* 1. Create the organic "squircle" shape */
  border-radius: 60px 60px 60px 60px / 60px 60px 60px 60px;
  padding: 30px; /* Increased padding to match the airy look of the image */
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid #f0f0f0;
  /* 2. Create the unique notched corner at the bottom */
  -webkit-mask-image: radial-gradient(circle at bottom right, transparent 60px, black 61px);
  mask-image: radial-gradient(circle at bottom right, transparent 60px, black 61px);
}

/* right notch
.feature-card__shape::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 45%;
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 50%;
}

/* bottom notch 
.feature-card__shape::before {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 40%;
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 50%;
} */

.feature-card__shape {
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Update your hover effect to keep the soft look */
.feature-card__shape:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.feature-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* 3. Give the inner image its own organic rounding */
  border-radius: 40px; 
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: #374151;
  line-height: 1.35;
  font-size: 14px;
}

.faq {
  width: 100%;
  padding: 8px 4px 8px;
}

.faq__title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.faq__list {
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.faq__item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  gap: 8px;
}

.faq__item:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

.faq__question {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #0b0c10;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.faq__toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.faq__toggle:active {
  transform: translateY(0);
}

.faq__answer {
  display: none;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.faq__item.is-open .faq__answer {
  display: block;
}


@media (max-width: 1100px) {
  .hero__container {
    gap: 40px;
  }

  .hero__countdown {
    gap: 12px;
  }

  .countdown__item {
    min-width: 90px;
    padding: 20px 16px;
  }

  .benefits__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits {
    padding: 64px 24px;
  }

  .intro {
    padding: 80px 24px;
  }

  .intro__container {
    gap: 60px;
  }

  .how-it-works {
    padding: 80px 24px;
  }

  .how-it-works__steps {
    gap: 20px;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .core-features {
    padding: 80px 24px;
  }

  .core-features__grid {
    gap: 24px;
  }

  .why-ziplofy {
    padding: 80px 24px;
  }

  .why-ziplofy__content {
    gap: 60px;
  }

  .social-proof {
    padding: 80px 24px;
  }

  .social-proof__testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .page > .features,
  .page > .faq {
    padding: 48px 16px;
  }

  .hero {
    padding: 32px 20px;
    min-height: 100vh;
  }

  .hero__header {
    top: 24px;
    left: 24px;
  }

  .hero__logo {
    font-size: 20px;
  }

  .hero__container {
    gap: 36px;
  }

  .hero__content {
    gap: 16px;
  }

  .hero__countdown {
    gap: 8px;
  }

  .countdown__item {
    min-width: 75px;
    padding: 16px 12px;
  }

  .countdown__separator {
    font-size: 18px;
    padding: 0 2px;
  }

  .hero__form {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .hero__form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero__form button {
    width: 100%;
    padding: 14px 24px;
  }

  .benefits {
    padding: 56px 20px;
  }

  .benefits__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefits__card {
    padding: 28px 20px;
  }

  .benefits__title {
    font-size: 17px;
  }

  .benefits__description {
    font-size: 14px;
  }

  .intro {
    padding: 64px 20px;
  }

  .intro__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro__content {
    order: 1;
  }

  .intro__visual {
    order: 2;
  }

  .intro__headline {
    font-size: clamp(28px, 6vw, 40px);
  }

  .intro__description {
    font-size: 17px;
  }

  .how-it-works {
    padding: 64px 20px;
  }

  .how-it-works__header {
    margin-bottom: 48px;
  }

  .how-it-works__steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: -8px 0;
  }

  .step-connector svg {
    width: 32px;
    height: 32px;
  }

  .core-features {
    padding: 64px 20px;
  }

  .core-features__header {
    margin-bottom: 48px;
  }

  .core-features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .core-features .feature-card {
    padding: 32px 28px;
  }

  .why-ziplofy {
    padding: 64px 20px;
  }

  .why-ziplofy__header {
    margin-bottom: 48px;
  }

  .why-ziplofy__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-ziplofy__benefits {
    order: 1;
    gap: 28px;
  }

  .why-ziplofy__stats {
    order: 2;
    flex-direction: row;
    gap: 16px;
  }

  .stat-card {
    flex: 1;
    padding: 24px 20px;
  }

  .stat-card__label {
    font-size: 28px;
  }

  .social-proof {
    padding: 64px 20px;
  }

  .social-proof__header {
    margin-bottom: 48px;
  }

  .social-proof__stats {
    gap: 32px;
    margin-bottom: 48px;
  }

  .stat-block__value {
    font-size: 40px;
  }

  .social-proof__testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .signup-form {
    padding: 64px 20px;
  }

  .signup-form__card {
    padding: 40px 32px;
  }

  .signup-form__header {
    margin-bottom: 32px;
  }

  .signup-form__form {
    gap: 20px;
  }

  .faq {
    padding: 64px 20px;
  }

  .faq__header {
    margin-bottom: 48px;
  }

  .faq__list {
    border-radius: 16px;
  }

  .faq__header-item {
    padding: 20px 24px;
  }

  .faq__question {
    font-size: 17px;
  }

  .faq__answer {
    padding: 0 24px;
  }

  .faq__item.is-open .faq__answer {
    padding: 0 24px 20px;
  }

  .faq__answer p {
    font-size: 15px;
  }

  .final-cta {
    padding: 80px 24px;
  }

  .final-cta__container {
    gap: 28px;
  }

  .final-cta__subtext {
    font-size: 18px;
  }

  .final-cta__button {
    padding: 16px 40px;
    font-size: 17px;
  }

  .footer {
    padding: 64px 24px 28px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    margin-bottom: 40px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 28px 24px;
  }

  .faq__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 16px;
  }

  .hero__header {
    top: 20px;
    left: 20px;
  }

  .hero__logo {
    font-size: 18px;
  }

  .hero__container {
    gap: 32px;
  }

  .hero__countdown {
    gap: 6px;
  }

  .countdown__item {
    min-width: 65px;
    padding: 14px 10px;
  }

  .countdown__value {
    font-size: 28px;
  }

  .countdown__label {
    font-size: 10px;
  }

  .countdown__separator {
    font-size: 16px;
  }

  .hero__cta {
    gap: 12px;
  }

  .hero__cta-text {
    font-size: 14px;
  }

  .hero__microcopy {
    font-size: 12px;
  }

  .benefits {
    padding: 48px 16px;
  }

  .benefits__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits__card {
    padding: 24px 20px;
  }

  .benefits__icon {
    width: 48px;
    height: 48px;
  }

  .benefits__icon svg {
    width: 20px;
    height: 20px;
  }

  .benefits__title {
    font-size: 16px;
  }

  .benefits__description {
    font-size: 14px;
  }

  .intro {
    padding: 56px 16px;
  }

  .intro__container {
    gap: 40px;
  }

  .intro__headline {
    font-size: clamp(24px, 7vw, 32px);
  }

  .intro__description {
    font-size: 16px;
  }

  .intro__highlight {
    font-size: 15px;
  }

  .how-it-works {
    padding: 56px 16px;
  }

  .how-it-works__header {
    margin-bottom: 40px;
  }

  .how-it-works__headline {
    font-size: clamp(28px, 7vw, 36px);
  }

  .how-it-works__subtext {
    font-size: 16px;
  }

  .how-it-works__steps {
    gap: 28px;
  }

  .step-card {
    padding: 32px 24px;
  }

  .step-card__number {
    top: 20px;
    left: 20px;
    font-size: 40px;
  }

  .step-card__icon {
    width: 64px;
    height: 64px;
  }

  .step-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .step-card__title {
    font-size: 20px;
  }

  .step-card__description {
    font-size: 15px;
  }

  .step-connector {
    margin: -12px 0;
  }

  .step-connector svg {
    width: 28px;
    height: 28px;
  }

  .core-features {
    padding: 56px 16px;
  }

  .core-features__header {
    margin-bottom: 40px;
  }

  .core-features__headline {
    font-size: clamp(28px, 7vw, 36px);
  }

  .core-features__subtext {
    font-size: 16px;
  }

  .core-features__grid {
    gap: 20px;
  }

  .core-features .feature-card {
    padding: 28px 24px;
  }

  .core-features .feature-card__icon {
    width: 56px;
    height: 56px;
  }

  .core-features .feature-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .core-features .feature-card__title {
    font-size: 20px;
  }

  .core-features .feature-card__description {
    font-size: 15px;
  }

  .why-ziplofy {
    padding: 56px 16px;
  }

  .why-ziplofy__header {
    margin-bottom: 40px;
  }

  .why-ziplofy__headline {
    font-size: clamp(28px, 7vw, 36px);
  }

  .why-ziplofy__subtext {
    font-size: 16px;
  }

  .why-ziplofy__content {
    gap: 40px;
  }

  .why-ziplofy__benefits {
    gap: 24px;
  }

  .benefit-point {
    gap: 16px;
  }

  .benefit-point__icon {
    width: 44px;
    height: 44px;
  }

  .benefit-point__icon svg {
    width: 20px;
    height: 20px;
  }

  .benefit-point__title {
    font-size: 18px;
  }

  .benefit-point__description {
    font-size: 15px;
  }

  .why-ziplofy__stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-card__value {
    font-size: 13px;
  }

  .stat-card__label {
    font-size: 24px;
  }

  .social-proof {
    padding: 56px 16px;
  }

  .social-proof__header {
    margin-bottom: 40px;
  }

  .social-proof__headline {
    font-size: clamp(28px, 7vw, 36px);
  }

  .social-proof__subtext {
    font-size: 16px;
  }

  .social-proof__rating {
    gap: 12px;
  }

  .rating__stars svg {
    width: 24px;
    height: 24px;
  }

  .social-proof__stats {
    gap: 24px;
    margin-bottom: 40px;
  }

  .stat-block__value {
    font-size: 36px;
  }

  .stat-block__label {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card__text {
    font-size: 15px;
  }

  .testimonial-card__avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .testimonial-card__name {
    font-size: 15px;
  }

  .testimonial-card__role {
    font-size: 13px;
  }

  .signup-form {
    padding: 56px 16px;
  }

  .signup-form__card {
    padding: 32px 24px;
  }

  .signup-form__header {
    margin-bottom: 28px;
  }

  .signup-form__headline {
    font-size: clamp(24px, 6vw, 28px);
  }

  .signup-form__subtext {
    font-size: 15px;
  }

  .signup-form__form {
    gap: 20px;
  }

  .form-input,
  .form-select {
    padding: 12px 14px;
    font-size: 15px;
  }

  .form-submit {
    padding: 14px 20px;
    font-size: 15px;
  }

  .form-trust {
    font-size: 12px;
  }

  .faq {
    padding: 56px 16px;
  }

  .faq__header {
    margin-bottom: 40px;
  }

  .faq__headline {
    font-size: clamp(28px, 7vw, 36px);
  }

  .faq__subtext {
    font-size: 16px;
  }

  .faq__list {
    border-radius: 16px;
  }

  .faq__header-item {
    padding: 18px 20px;
    gap: 16px;
  }

  .faq__question {
    font-size: 16px;
  }

  .faq__toggle {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .faq__answer {
    padding: 0 20px;
  }

  .faq__item.is-open .faq__answer {
    padding: 0 20px 18px;
    max-height: 300px;
  }

  .faq__answer p {
    font-size: 14px;
  }

  .final-cta {
    padding: 64px 16px;
  }

  .final-cta__container {
    gap: 24px;
  }

  .final-cta__headline {
    font-size: clamp(28px, 7vw, 40px);
  }

  .final-cta__subtext {
    font-size: 16px;
  }

  .final-cta__button {
    padding: 16px 36px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
  }

  .footer {
    padding: 56px 16px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer__column {
    gap: 12px;
  }

  .footer__column-title {
    font-size: 15px;
  }

  .footer__links {
    gap: 10px;
  }

  .footer__link {
    font-size: 14px;
  }

  .footer__bottom {
    padding-top: 24px;
    gap: 20px;
  }

  .footer__copyright {
    font-size: 13px;
  }

  .feature-card__media {
    aspect-ratio: 5 / 6;
  }

  .faq__item {
    padding: 14px 0;
  }

  .faq__question {
    font-size: 15px;
  }
}

/* Success Modal Popup */
.success-modal {
  position: fixed !important;
  inset: 0;
  z-index: 99999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.success-modal.is-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.success-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.success-modal__container {
  position: relative;
  z-index: 100000 !important;
  width: 100%;
  max-width: 520px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.success-modal.is-active .success-modal__container {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
}

.success-modal__content {
  background: rgba(15, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.success-modal__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.success-modal__content > * {
  position: relative;
  z-index: 1;
}

.success-modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  color: #22c55e;
  box-shadow: 
    0 8px 32px rgba(34, 197, 94, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: iconPulse 0.6s ease-out 0.3s both;
}

@keyframes iconPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-modal__icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.success-modal__title {
  margin: 0 0 24px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-modal__body {
  margin-bottom: 24px;
  text-align: center;
}

.success-modal__welcome {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
}

.success-modal__message {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  font-weight: 400;
}

.success-modal__message:last-of-type {
  margin-bottom: 0;
}

.success-modal__queue-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  color: #c4b5fd;
  box-shadow: 
    0 4px 12px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 4px;
  letter-spacing: 0.02em;
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 
      0 4px 12px rgba(139, 92, 246, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 
      0 4px 16px rgba(139, 92, 246, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 20px rgba(139, 92, 246, 0.3);
  }
}

.success-modal__footer {
  margin: 0 0 32px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
  font-weight: 400;
}

.success-modal__button {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.success-modal__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-modal__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

.success-modal__button:hover::before {
  opacity: 1;
}

.success-modal__button:active {
  transform: translateY(0);
}

.success-modal__button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.3), 0 6px 24px rgba(99, 102, 241, 0.5);
}

/* Toast Notification */
.toast-notification {
  position: fixed !important;
  top: 24px;
  right: 24px;
  z-index: 100001 !important;
  transform: translateX(400px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}

.toast-notification.is-active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

.toast-notification__content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(15, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(34, 197, 94, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: 320px;
  max-width: 400px;
}

.toast-notification__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #22c55e;
  stroke-width: 2.5;
}

.toast-notification__text {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.4;
}

/* Responsive Styles for Modal */
@media (max-width: 600px) {
  .success-modal {
    padding: 16px;
  }

  .success-modal__content {
    padding: 40px 32px;
    border-radius: 20px;
  }

  .success-modal__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .success-modal__icon svg {
    width: 36px;
    height: 36px;
  }

  .success-modal__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .success-modal__welcome {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .success-modal__message {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .success-modal__queue-badge {
    font-size: 15px;
    padding: 5px 12px;
  }

  .success-modal__footer {
    font-size: 12px;
    margin-bottom: 28px;
  }

  .success-modal__button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .toast-notification {
    top: 16px;
    right: 16px;
    left: 16px;
    transform: translateY(-100px);
  }

  .toast-notification.is-active {
    transform: translateY(0);
  }

  .toast-notification__content {
    min-width: auto;
    width: 100%;
    padding: 14px 18px;
  }

  .toast-notification__text {
    font-size: 13px;
  }
}

