/* ═══════════════════════════════════════════════════
   COLLAB STUDIO — STYLESHEET
   Font: Poppins | Primary: #059669 (Emerald) / #2563eb (Blue)
   ═══════════════════════════════════════════════════ */

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

:root {
  --green:    #059669;
  --green-lt: #ecfdf5;
  --green-dk: #047857;
  --blue:     #2563eb;
  --blue-lt:  #eff6ff;
  --blue-dk:  #1d4ed8;
  --neutral:  #64748b;
  --dark:     #0f172a;
  --text:     #1e293b;
  --muted:    #94a3b8;
  --border:   #e2e8f0;
  --white:    #ffffff;
  --tint:     #f8fafc;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-hover: 0 20px 60px rgba(5,150,105,.15), 0 6px 20px rgba(0,0,0,.08);
  --radius:   14px;
  --radius-lg:20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:    72px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.bg-tint { background: var(--tint); }


/* ── SCROLL REVEAL SYSTEM ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--sd, 0s);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children .value-card:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .value-card:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .value-card:nth-child(3) { transition-delay: 0.25s; }
.stagger-children .value-card:nth-child(4) { transition-delay: 0.35s; }


/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.logo-accent { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--tint); }

.nav-cta {
  background: var(--green);
  color: white !important;
  border-radius: 8px;
  padding: 8px 20px;
}
.nav-cta:hover {
  background: var(--green-dk) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--tint); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: white;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--neutral);
  transition: background var(--transition), color var(--transition);
  margin-bottom: 16px;
}
.mobile-close:hover { background: var(--tint); color: var(--text); }

.mobile-links { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.mobile-link:hover { background: var(--tint); color: var(--green); }
.mobile-cta {
  background: var(--green);
  color: white !important;
  text-align: center;
  margin-top: 12px;
}
.mobile-cta:hover { background: var(--green-dk) !important; }

.mobile-footer {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}


/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,150,105,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--tint);
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.mt-top { margin-top: 32px; }


/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: var(--green-lt);
  border-radius: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem;
  color: var(--neutral);
  max-width: 560px;
  margin: 0 auto;
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #a7f3d0, #ecfdf5);
  top: -200px; right: -100px;
  animation: blobDrift 8s ease-in-out infinite alternate;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #bfdbfe, #eff6ff);
  bottom: -100px; left: -100px;
  animation: blobDrift 10s ease-in-out infinite alternate-reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #d1fae5, #f0fdf4);
  top: 40%; left: 30%;
  opacity: 0.2;
  animation: blobDrift 12s ease-in-out infinite alternate;
}
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.05); }
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(5,150,105,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,150,105,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Fade-up animation for hero */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-dk);
  background: var(--green-lt);
  border: 1px solid rgba(5,150,105,.2);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--neutral);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--neutral);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.hero-tag:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-tag svg { width: 14px; height: 14px; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 1s 1s ease both;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--border);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--muted);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}


/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-graphic svg { max-width: 380px; width: 100%; }

.floating-chip {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatChip 3s ease-in-out infinite alternate;
}
.chip-1 { top: 10%; left: -10px; animation-delay: 0s; }
.chip-2 { bottom: 15%; right: -10px; animation-delay: 1.5s; }
@keyframes floatChip {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.about-values { display: flex; flex-direction: column; gap: 24px; }
.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.val-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.val-icon.green { background: var(--green-lt); color: var(--green); }
.val-icon.blue  { background: var(--blue-lt);  color: var(--blue);  }
.val-icon svg { width: 20px; height: 20px; }
.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.value-card p { font-size: 0.87rem; color: var(--neutral); line-height: 1.6; }


/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  transition-delay: var(--sd, 0s);
}
.svc-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(5,150,105,0.2);
}

.svc-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-box.green { background: var(--green-lt); color: var(--green); }
.svc-icon-box.blue  { background: var(--blue-lt);  color: var(--blue); }
.svc-icon-box svg { width: 24px; height: 24px; }

.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.87rem;
  color: var(--neutral);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--tint);
  color: var(--neutral);
  border: 1px solid var(--border);
}


/* ── PROCESS ── */
.process-wrapper { position: relative; }

.process-track-line {
  position: absolute;
  left: 40px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}
.ptl-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--green), var(--blue));
  border-radius: 2px;
  transition: height 0.8s ease;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 0;
}

.p-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--sd, 0s);
}
.p-step.scroll-reveal { opacity: 0; transform: translateX(-24px); }
.p-step.scroll-reveal.revealed { opacity: 1; transform: translateX(0); }

.pstep-num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: white;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.p-step:hover .pstep-num {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 4px var(--green-lt);
}

.pstep-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pstep-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.pstep-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pstep-icon.green { background: var(--green-lt); color: var(--green); }
.pstep-icon.blue  { background: var(--blue-lt);  color: var(--blue); }
.pstep-icon svg { width: 20px; height: 20px; }

.pstep-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pstep-card p { font-size: 0.87rem; color: var(--neutral); line-height: 1.7; }


/* ── CREATORS ── */
.creators-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.creators-text .section-label { display: inline-block; margin-bottom: 14px; }
.creators-text .section-title { text-align: left; margin-bottom: 18px; }
.creators-text p { color: var(--neutral); font-size: 0.97rem; line-height: 1.75; margin-bottom: 28px; }

.creator-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.creator-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.creator-checklist li svg {
  width: 20px; height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* Mosaic */
.mosaic-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 360px;
  margin: 0 auto;
}

.m-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 185px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.m-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.m1 { top: 0;   left: 0;  animation: floatChip 3s ease-in-out infinite alternate 0s; }
.m2 { top: 0;   right: 0; animation: floatChip 3s ease-in-out infinite alternate 0.7s; }
.m3 { bottom: 30px; left: 0; animation: floatChip 3s ease-in-out infinite alternate 1.4s; }
.m4 { bottom: 30px; right: 0; animation: floatChip 3s ease-in-out infinite alternate 2.1s; }

.m-ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--g);
  flex-shrink: 0;
}
.m-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.m-bar {
  height: 7px;
  background: var(--tint);
  border-radius: 4px;
}
.w75 { width: 75%; } .w80 { width: 80%; }
.w65 { width: 65%; } .w70 { width: 70%; }
.w50 { width: 50%; } .w55 { width: 55%; } .w45 { width: 45%; }

.m-niche {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--green-lt);
  color: var(--green);
  white-space: nowrap;
}
.m-niche.auto { background: var(--blue-lt); color: var(--blue); }
.m-niche.life { background: #faf5ff; color: #7c3aed; }

.mosaic-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(5,150,105,0.4);
  z-index: 10;
  animation: floatChip 3s ease-in-out infinite alternate 3s;
}
.mosaic-center-badge svg { width: 24px; height: 24px; margin: 0 auto 8px; }
.mosaic-center-badge p { font-size: 0.82rem; font-weight: 700; line-height: 1.35; }


/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-label { display: inline-block; margin-bottom: 14px; }
.contact-info .section-title { text-align: left; margin-bottom: 18px; }
.contact-info > p { color: var(--neutral); font-size: 0.97rem; line-height: 1.75; margin-bottom: 36px; }

.c-details { display: flex; flex-direction: column; gap: 20px; }
.c-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cd-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon.green { background: var(--green-lt); color: var(--green); }
.cd-icon.blue  { background: var(--blue-lt);  color: var(--blue); }
.cd-icon svg { width: 20px; height: 20px; }
.cd-label { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2px; }
.cd-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); }
a.cd-value:hover { color: var(--green); }

/* Form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.c-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Floating label fields */
.f-group {
  position: relative;
}
.f-input {
  width: 100%;
  padding: 20px 16px 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.f-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}
.f-input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.f-label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.22s ease;
}
/* Float label when input has value or is focused */
.f-input:focus + .f-label,
.f-input:not(:placeholder-shown) + .f-label {
  top: 7px;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
}
/* For select specifically */
.f-select-wrap .f-label { pointer-events: none; }
.f-select:not([value=""]) + .f-label,
.f-select.has-value + .f-label {
  top: 7px;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
}

.f-textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 20px;
}

.f-select {
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  width: 16px; height: 16px;
}

.f-err {
  display: none;
  font-size: 0.72rem;
  color: #ef4444;
  font-weight: 500;
  margin-top: 4px;
  padding-left: 2px;
}
.f-group.show-error .f-err { display: block; }

/* Submit button states */
#submitBtn {
  position: relative;
  overflow: hidden;
}
#submitBtn .btn-label { transition: opacity var(--transition); }
#submitBtn .btn-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
#submitBtn.loading .btn-label { opacity: 0.5; }
#submitBtn.loading .btn-loading { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success-msg {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--green-lt);
  border: 1px solid rgba(5,150,105,.2);
  border-radius: 12px;
  padding: 18px 20px;
}
.form-success-msg.visible { display: flex; }
.form-success-msg svg { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
.form-success-msg strong { font-weight: 700; color: var(--dark); display: block; margin-bottom: 2px; }
.form-success-msg p { font-size: 0.85rem; color: var(--neutral); margin: 0; }


/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}

.footer-body {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 260px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.f-col { display: flex; flex-direction: column; gap: 10px; }
.f-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.f-col a, .f-col span { font-size: 0.87rem; transition: color var(--transition); }
.f-col a:hover { color: var(--green); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-graphic svg { max-width: 300px; margin: 0 auto; }
  .creators-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-title { font-size: 1.8rem; }
  .footer-body { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -1px; }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { padding-left: 0; }
  .process-track-line { left: 28px; }
  .p-step { grid-template-columns: 64px 1fr; gap: 16px; }
  .pstep-num { width: 48px; height: 48px; }

  .mosaic-wrap { height: 300px; max-width: 340px; }
  .m-card { width: 148px; padding: 10px 12px; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section-title { font-size: 1.6rem; }
  .hero-badge { font-size: 0.75rem; }
  .mosaic-wrap { height: 260px; }
  .m-card { width: 130px; }
  .m2, .m4 { right: 0; }
  .footer-cols { grid-template-columns: 1fr; }
}
