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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  background-color: #050508;
  color: #E2E8F0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== HOME PAGE SCOPE ===== */
.home-page {
  background-color: #050508;
}

/* ===== MAIN NAVIGATION - CLASS SELECTOR ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(5, 5, 8, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(244, 114, 182, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #F472B6 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #94A3B8;
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #F472B6, #FBBF24);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #F3F4F6;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #F472B6 0%, #C026D3 100%);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 114, 182, 0.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #E2E8F0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.home-page .hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}

.home-page .hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.home-page .hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F472B6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #F3F4F6;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, #F472B6 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #F472B6 0%, #C026D3 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244, 114, 182, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(226, 232, 240, 0.2);
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border: 1px solid rgba(226, 232, 240, 0.5);
  background: rgba(226, 232, 240, 0.05);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.hero-stat-card {
  background: #0C0C1A;
  border: 1px solid rgba(226, 232, 240, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stat-card:nth-child(1) {
  margin-top: 24px;
}

.hero-stat-card:nth-child(2) {
  margin-top: -24px;
}

.hero-stat-card:nth-child(3) {
  margin-bottom: 24px;
}

.hero-stat-card:nth-child(4) {
  margin-bottom: -24px;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(244, 114, 182, 0.3);
}

.hero-stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F472B6 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-card .stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== STATEMENT SECTION ===== */
.home-page .statement-section {
  padding: 100px 32px;
  position: relative;
}

.statement-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.statement-image-wrapper {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(226, 232, 240, 0.015) 2px,
    rgba(226, 232, 240, 0.015) 4px
  );
  pointer-events: none;
}

.statement-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.statement-icon-grid .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.statement-icon-grid .icon-shape {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.statement-icon-grid .icon-shape.pink {
  background: rgba(244, 114, 182, 0.15);
  color: #F472B6;
}

.statement-icon-grid .icon-shape.amber {
  background: rgba(251, 191, 36, 0.15);
  color: #FBBF24;
}

.statement-icon-grid .icon-shape.purple {
  background: rgba(192, 38, 211, 0.15);
  color: #C026D3;
}

.statement-icon-grid .icon-shape.emerald {
  background: rgba(52, 211, 153, 0.15);
  color: #34D399;
}

.statement-icon-grid .icon-label {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.statement-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F3F4F6;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.statement-content h2 .highlight {
  background: linear-gradient(135deg, #F472B6 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.statement-content p {
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.statement-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.metric-item {
  background: #0C0C1A;
  border: 1px solid rgba(226, 232, 240, 0.04);
  border-radius: 12px;
  padding: 20px;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #F472B6;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.home-page .process-section {
  padding: 100px 32px;
  background: #07070D;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FBBF24;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.process-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F3F4F6;
  margin-bottom: 12px;
}

.process-header p {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 36px 24px 24px;
  background: #0C0C1A;
  border: 1px solid rgba(226, 232, 240, 0.04);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F472B6 0%, #C026D3 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F3F4F6;
  margin: 16px 0 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ===== SERVICES SCROLL SECTION ===== */
.home-page .services-scroll-section {
  padding: 100px 0;
  position: relative;
}

.services-scroll-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.services-scroll-header .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #34D399;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-scroll-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F3F4F6;
  max-width: 500px;
}

.services-scroll-header .scroll-hint {
  color: #64748B;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 32px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #F472B6 transparent;
}

.services-scroll-track::-webkit-scrollbar {
  height: 4px;
}

.services-scroll-track::-webkit-scrollbar-track {
  background: transparent;
}

.services-scroll-track::-webkit-scrollbar-thumb {
  background: rgba(244, 114, 182, 0.2);
  border-radius: 4px;
}

.service-scroll-card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  background: #0C0C1A;
  border: 1px solid rgba(226, 232, 240, 0.04);
  border-radius: 20px;
  padding: 32px 28px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-scroll-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.service-scroll-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-scroll-card .card-icon.pink {
  background: rgba(244, 114, 182, 0.12);
  color: #F472B6;
}

.service-scroll-card .card-icon.amber {
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
}

.service-scroll-card .card-icon.purple {
  background: rgba(192, 38, 211, 0.12);
  color: #C026D3;
}

.service-scroll-card .card-icon.emerald {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
}

.service-scroll-card .card-icon.blue {
  background: rgba(96, 165, 250, 0.12);
  color: #60A5FA;
}

.service-scroll-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F3F4F6;
  margin-bottom: 10px;
}

.service-scroll-card p {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.home-page .faq-section {
  padding: 100px 32px;
  background: #07070D;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244, 114, 182, 0.08);
  border: 1px solid rgba(244, 114, 182, 0.18);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F472B6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F3F4F6;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.06);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #E2E8F0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: #F472B6;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(226, 232, 240, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #94A3B8;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(244, 114, 182, 0.15);
  color: #F472B6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.home-page .contact-section {
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}

.home-page .contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FBBF24;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F3F4F6;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #0C0C1A;
  border: 1px solid rgba(226, 232, 240, 0.04);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.contact-detail-item:hover {
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.contact-detail-item .detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(244, 114, 182, 0.12);
  color: #F472B6;
}

.contact-detail-item .detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-detail-item .detail-text span {
  color: #E2E8F0;
  font-size: 0.95rem;
}

.contact-form {
  background: #0C0C1A;
  border: 1px solid rgba(226, 232, 240, 0.04);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(226, 232, 240, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F472B6;
  background: rgba(244, 114, 182, 0.03);
}

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

.form-submit-btn {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #F472B6 0%, #C026D3 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: inherit;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244, 114, 182, 0.3);
}

.form-feedback {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(52, 211, 153, 0.1);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.form-feedback.error {
  display: block;
  background: rgba(248, 113, 113, 0.1);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 32px;
  background: #030306;
  border-top: 1px solid rgba(226, 232, 240, 0.04);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #F472B6 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: #64748B;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #F472B6;
}

.footer-copy {
  font-size: 0.8rem;
  color: #475569;
}

/* ===== SCROLL REVEAL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

noscript .fade-up,
noscript style + .fade-up {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-stat-card:nth-child(1),
  .hero-stat-card:nth-child(2),
  .hero-stat-card:nth-child(3),
  .hero-stat-card:nth-child(4) {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .statement-image-wrapper {
    height: 300px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .nav-links {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px 32px;
    gap: 16px;
    border-bottom: 1px solid rgba(244, 114, 182, 0.12);
  }

  .main-nav.mobile-open .nav-cta {
    display: flex;
    position: absolute;
    top: calc(68px + 200px);
    left: 32px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-scroll-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .statement-content h2,
  .process-header h2,
  .services-scroll-header h2,
  .faq-container h2,
  .contact-info h2 {
    font-size: 1.85rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}

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

  .hero-content p {
    font-size: 0.95rem;
  }

  .home-page .hero-section {
    padding: 80px 20px 60px;
  }

  .home-page .statement-section,
  .home-page .process-section,
  .home-page .services-scroll-section,
  .home-page .faq-section,
  .home-page .contact-section {
    padding: 64px 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .service-scroll-card {
    min-width: 260px;
    max-width: 260px;
  }

  .contact-form {
    padding: 24px;
  }
}
