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

:root {
  --obsidian: #0A0910;
  --twilight: #111019;
  --violet: #1E1A2E;
  --periwinkle: #7B74C9;
  --lilac: #9B93B8;
  --offwhite: #F5F4F8;
  --silver: #B0ADBE;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--offwhite);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== NOISE CANVAS ===== */
#noise-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 40%, #7B74C9 80%, #E879F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ===== SHARED LABEL ===== */
.label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 16px;
}

/* ===== NAV ===== */
.s-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  background: rgba(10, 9, 16, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.s-nav.scrolled { background: rgba(10, 9, 16, 0.95); }

.s-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.s-nav__logo img {
  height: 32px;
  width: auto;
}

.s-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.s-nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.s-nav__links a:hover { color: var(--offwhite); }

.s-nav__cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--periwinkle), #9D6EE8);
  color: var(--offwhite) !important;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  transition: box-shadow 0.3s, transform 0.3s !important;
}

.s-nav__cta:hover {
  box-shadow: 0 0 30px rgba(123,116,201,0.5);
  transform: translateY(-1px);
}

/* burger — hidden on desktop */
.s-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.s-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile menu — hidden by default */
.s-nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 4px;
}

.s-nav__mobile.open { display: flex; }

.mob-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--silver);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}

.mob-link:hover { color: var(--offwhite); }

.mob-cta {
  margin-top: 12px;
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--periwinkle), #9D6EE8);
  color: var(--offwhite) !important;
  border-radius: 12px;
  font-weight: 500;
  border-bottom: none;
}

/* ===== TABLET — max-width: 900px ===== */
@media (max-width: 900px) {
  .s-nav__inner { padding: 0 24px; }
  .s-nav__links { display: none; }
  .s-nav__burger { display: flex; }

  .hero-inner { padding: 100px 24px 60px; }
  .hero-title { font-size: clamp(3.5rem, 10vw, 7rem); }
  .hero-sub { max-width: 100%; }

  .section-header { padding: 0 24px; }
  .services-grid { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .services-grid.five-col { grid-template-columns: repeat(2, 1fr); }

  .process-track { padding: 0 24px; }
  .process-step { min-width: 140px; }
  .process-arrow { display: none; }

  #statement { padding: 80px 24px; }
  .statement-inner { padding-left: 24px; }
  .m-line:nth-child(2) { padding-left: 30px; }
  .m-line:nth-child(3) { padding-left: 15px; }
  .m-line:nth-child(4) { padding-left: 50px; }

  .included-grid { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }

  .contact-notice-section, #contact-notice { padding: 60px 24px; }
  .notice-inner { padding: 32px; gap: 20px; }

  #cta { padding: 80px 24px; }

  .form-section-inner { padding: 0 24px; gap: 48px; }
  .form-intro { position: static; }

  #footer { padding: 60px 24px 32px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--periwinkle), #9D6EE8);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(123,116,201,0.55), 0 0 100px rgba(157,110,232,0.2);
}

.btn-primary.large { padding: 18px 40px; font-size: 0.95rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 100px;
  border: 1px solid rgba(123,116,201,0.25);
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-ghost:hover {
  color: var(--offwhite);
  border-color: var(--lilac);
  transform: translateY(-2px);
}

.btn-ghost.large { padding: 18px 40px; font-size: 0.95rem; }

/* ===== HERO — HOMEPAGE ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: radial-gradient(rgba(123,116,201,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  width: 100%;
}

.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--periwinkle);
  background: rgba(123,116,201,0.1);
  border: 1px solid rgba(123,116,201,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--periwinkle);
  box-shadow: 0 0 8px var(--periwinkle);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}

.hero-title .line { display: block; }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--lilac));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== PAGE HERO — SERVICE PAGES ===== */
.page-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: radial-gradient(rgba(123,116,201,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.brand-hero  { background-color: #0c0a18; }
.web-hero    { background-color: #090d18; }
.carousel-hero { background-color: #0d0a14; }
.custom-hero { background-color: #0a0c10; }

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 48px 80px;
  width: 100%;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--lilac);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.back-link:hover { color: var(--offwhite); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.page-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--silver);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

/* page stats row */
.page-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--offwhite);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(123,116,201,0.25);
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(123,116,201,0.12);
  border-bottom: 1px solid rgba(123,116,201,0.12);
  padding: 18px 0;
  background: rgba(123,116,201,0.025);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lilac);
}

.mdot { color: var(--periwinkle); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--offwhite);
}

.section-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #A78BFA, #E879F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SERVICES ===== */
#services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* on pages with 5 services, wrap to 3+2 centered */
.services-grid.five-col {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  background: var(--twilight);
  border: 1px solid var(--violet);
  padding: 48px 40px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(123,116,201,0.16) 0%, transparent 55%);
  transition: opacity 0.5s;
}

.service-card:hover .service-card__glow { opacity: 1; }
.service-card:hover {
  border-color: var(--periwinkle);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(123,116,201,0.18);
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--periwinkle), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--periwinkle);
  margin-bottom: 28px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.service-card:hover .service-icon { opacity: 1; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.service-card:hover h3 { color: #B8B0E8; }

.service-card p {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  flex: 1;
}

.service-list li {
  font-size: 0.8rem;
  color: var(--lilac);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--periwinkle);
}

.service-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--periwinkle);
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: color 0.3s;
}

.service-card:hover .service-link { color: #C4B5FD; }

/* ===== PROCESS ===== */
#process {
  padding: 100px 0;
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(123,116,201,0.35);
  background: rgba(123,116,201,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.process-step:hover .step-circle {
  border-color: var(--periwinkle);
  background: rgba(123,116,201,0.15);
}

.step-circle span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--periwinkle);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.65;
  max-width: 180px;
  margin: 0 auto;
}

.process-arrow {
  font-size: 1.4rem;
  color: rgba(123,116,201,0.3);
  align-self: center;
  padding: 0 8px;
  margin-top: -20px;
}

/* ===== STATEMENT ===== */
#statement {
  position: relative;
  padding: 100px 48px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(123,116,201,0.04) 50%, transparent 100%);
}

#statement-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.statement-inner {
  max-width: 1400px;
  margin: 0 auto;
  border-left: 2px solid var(--periwinkle);
  padding-left: 48px;
  position: relative;
  z-index: 1;
}

.statement-inner::before {
  content: '';
  position: absolute;
  left: -1px; top: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--periwinkle), #E879F9, transparent);
}

.manifesto-lines { display: flex; flex-direction: column; gap: 6px; }

.m-line {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: rgba(245,244,248,0.2);
  letter-spacing: -0.02em;
  transition: color 0.8s ease, opacity 0.8s ease, transform 0.8s ease;
}

.m-line.visible:not(.accent) { color: rgba(245,244,248,0.7); }
.m-line.accent.visible { color: var(--offwhite); }

.m-line:nth-child(2) { padding-left: 60px; transition-delay: 0.1s; }
.m-line:nth-child(3) { padding-left: 30px; transition-delay: 0.2s; }
.m-line:nth-child(4) { padding-left: 100px; transition-delay: 0.3s; }

.m-line em {
  font-style: italic;
  background: linear-gradient(90deg, var(--periwinkle), #E879F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== INCLUDED GRID (service pages) ===== */
.included {
  padding: 100px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.included-item {
  background: var(--twilight);
  border: 1px solid var(--violet);
  padding: 40px 32px;
  transition: border-color 0.4s, transform 0.4s;
}

.included-item:hover {
  border-color: rgba(123,116,201,0.4);
  transform: translateY(-4px);
}

.included-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--periwinkle);
  margin-bottom: 20px;
}

.included-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 10px;
}

.included-item p {
  font-size: 0.83rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ===== PLATFORMS (carousel page) ===== */
.platforms-section {
  padding: 80px 0;
  background: rgba(123,116,201,0.02);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.platform-card {
  background: var(--twilight);
  border: 1px solid var(--violet);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.4s, transform 0.4s;
}

.platform-card:hover {
  border-color: rgba(123,116,201,0.4);
  transform: translateY(-4px);
}

.platform-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}

.platform-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.platform-card p {
  font-size: 0.78rem;
  color: var(--silver);
  line-height: 1.55;
}

/* ===== CONTACT NOTICE ===== */
.contact-notice-section, #contact-notice {
  padding: 80px 48px;
}

.notice-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.notice-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.notice-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.notice-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.notice-text p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 28px;
}

.notice-text strong { color: var(--offwhite); }

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

.notice-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.3s, background 0.3s;
  min-width: 200px;
}

.notice-contact:hover {
  border-color: rgba(123,116,201,0.4);
  background: rgba(123,116,201,0.06);
}

.nc-role {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
}

.nc-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--offwhite);
}

.nc-email {
  font-size: 0.78rem;
  color: var(--periwinkle);
}

/* ===== CTA ===== */
#cta {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse, rgba(123,116,201,0.12) 0%, rgba(232,121,249,0.05) 40%, transparent 65%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FORM SECTION ===== */
.form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(123,116,201,0.03) 50%, transparent 100%);
}

.form-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* sticky intro column */
.form-intro {
  position: sticky;
  top: 88px;
}

.form-intro .label { margin-bottom: 20px; }

.form-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--offwhite);
  margin-bottom: 20px;
}

.form-intro p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 32px;
}

.form-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-trust span {
  font-size: 0.78rem;
  color: var(--lilac);
  letter-spacing: 0.04em;
}

/* form fields */
.s-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--periwinkle);
  padding: 28px 0 16px;
  border-top: 1px solid rgba(123,116,201,0.15);
  margin-top: 8px;
}

.form-section-label:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.03em;
}

.req { color: var(--periwinkle); }

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123,116,201,0.2);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(176,173,190,0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--periwinkle);
  background: rgba(123,116,201,0.07);
  box-shadow: 0 0 0 3px rgba(123,116,201,0.12);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B93B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--twilight);
  color: var(--offwhite);
}

/* inline warning inside form */
.form-notice-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #fdba74;
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-notice-inline strong { color: var(--offwhite); }

.s-submit {
  margin-top: 32px;
  padding: 17px 40px;
  background: linear-gradient(135deg, var(--periwinkle), #9D6EE8);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
}

.s-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.s-submit:hover::after { opacity: 1; }
.s-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(123,116,201,0.55);
}

/* ===== FOOTER ===== */
#footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--violet);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--lilac);
  letter-spacing: 0.1em;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--silver);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--offwhite); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(34,30,49,0.7);
  font-size: 0.73rem;
  color: var(--lilac);
}

.footer-made { opacity: 0.7; }

/* ===== WHATSAPP CHANNEL CTA ===== */
#whatsapp-cta {
  padding: 100px 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.03) 50%, transparent 100%);
  border-top: 1px solid rgba(37, 211, 102, 0.1);
  border-bottom: 1px solid rgba(37, 211, 102, 0.1);
}

.wa-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(37, 211, 102, 0.04);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.wa-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.wa-icon {
  flex-shrink: 0;
  color: #25D366;
  filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.3));
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.wa-content { flex: 1; position: relative; z-index: 1; }

.wa-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.wa-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--offwhite);
  margin-bottom: 16px;
}

.wa-sub {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
}

.wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
}

.wa-btn svg {
  flex-shrink: 0;
}

/* ===== MOBILE — max-width: 480px ===== */
@media (max-width: 480px) {
  .s-nav__inner { padding: 0 16px; height: 60px; }
  .s-nav__logo img { height: 26px; }
  .s-nav__logo span { font-size: 0.95rem; }

  .hero-inner { padding: 80px 16px 60px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-sub { font-size: 0.9rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; }
  .hero-scroll { display: none; }

  .section-header { padding: 0 16px; margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .services-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .services-grid.five-col { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  #services { padding: 60px 0; }

  .process-track { padding: 0 16px; flex-direction: column; align-items: center; }
  .process-step { min-width: 100%; max-width: 280px; }
  .process-arrow { display: none; }

  #statement { padding: 60px 16px; }
  .statement-inner { padding-left: 16px; }
  .m-line { font-size: clamp(1.4rem, 6vw, 2rem); }
  .m-line:nth-child(2) { padding-left: 16px; }
  .m-line:nth-child(3) { padding-left: 8px; }
  .m-line:nth-child(4) { padding-left: 24px; }

  .included-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .included { padding: 60px 0; }

  .platforms-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .platforms-section { padding: 60px 0; }

  .contact-notice-section, #contact-notice { padding: 40px 16px; }
  .notice-inner { padding: 24px; flex-direction: column; }
  .notice-contacts { flex-direction: column; }
  .notice-contact { min-width: unset; }

  #cta { padding: 60px 16px; }
  .cta-title { font-size: clamp(2rem, 8vw, 3.5rem); margin-bottom: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }

  .form-section-inner { padding: 0 16px; gap: 32px; grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .s-submit { width: 100%; justify-content: center; align-self: stretch; text-align: center; }

  #footer { padding: 48px 16px 28px; }
  .footer-inner { gap: 32px; }
  .footer-links { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
