/* ================================================
   Parts S.r.l. — Partshub.it
   Main Stylesheet
   ================================================ */


@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;600;700&display=swap');

/* ── FONT FACES ── */





@font-face {
  font-family: 'Parts-Regular';
  src: url('../assets/fonts/Parts-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --violet: #60007A;
  --violet-dark: #3f0052;
  --violet-mid: #8600ab;
  --cyan: #3DF5EA;
  --cyan-dark: #12d6ca;
  --white: #ffffff;
  --off-white: #F8F7FC;
  --light-gray: #f0eef9;
  --text-dark: #1a1330;
  --text-mid: #4a4070;
  --text-light: #8880aa;
  --border: rgba(96,0,122,0.1);
  --border-strong: rgba(96,0,122,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Urbanist', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1.05); opacity: 0.2; }
  100% { transform: scale(0.95); opacity: 0.7; }
}
@keyframes gridAppear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(96,0,122,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Nav logo image */
.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: contain;
  display: block;
}

.nav-logo-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--violet);
  letter-spacing: -0.3px;
}
.nav-logo-sub {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet); }
.nav-cta {
  background: var(--cyan);
  color: var(--text-dark) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--cyan-dark) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--violet); border-radius: 2px; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(96,0,122,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(61,245,234,0.12) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(96,0,122,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,0,122,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(96,0,122,0.04);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--violet);
  margin-bottom: 32px;
  animation: fadeIn 1s ease 0.2s both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan-dark);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}
.hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero h1 em {
  font-family: 'Parts-Regular', sans-serif;
  font-style: normal;
  color: var(--violet);
}
.hero h1 .accent-cyan {
  position: relative;
  display: inline-block;
}
.hero h1 .accent-cyan::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: var(--cyan);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-violet {
  display: inline-block;
  background: var(--violet);
  color: var(--white);
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: 'Urbanist', sans-serif;
}
.btn-violet:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(96,0,122,0.25);
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--border-strong);
  color: var(--text-mid);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  font-family: 'Urbanist', sans-serif;
}
.btn-outline:hover {
  border-color: var(--violet);
  color: var(--violet);
  transform: translateY(-2px);
}
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  animation: fadeIn 1s ease 0.4s both;
}
.hero-app-mockup {
  position: relative;
  width: 200px;
  animation: float 5s ease-in-out infinite;
}

/* Hero app icon image */
.hero-app-img {
  width: 200px;
  height: 200px;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 40px 100px rgba(96,0,122,0.3), 0 8px 24px rgba(96,0,122,0.15);
  display: block;
}

.hero-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  border: 1px dashed rgba(96,0,122,0.12);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}
.hero-orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: var(--cyan-dark);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* ── TICKER ── */
.ticker {
  background: var(--violet);
  padding: 14px 0;
  overflow: hidden;
  /* ensure ticker sits on its own compositing layer */
  transform: translateZ(0);
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  animation-delay: 0s;
  will-change: transform;
}
.ticker-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  font-family: 'Urbanist', sans-serif;
}
.ticker-dot { color: rgba(61,245,234,0.4); }

/* ── SECTIONS ── */
section {
  padding: 100px 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
  opacity: 0.7;
}
.section-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.section-title em { font-family: 'Parts-Regular', sans-serif; font-style: normal; color: var(--violet); }
.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 580px;
}

/* ── TEAM ── */
#team {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#team::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(96,0,122,0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(61,245,234,0.1) 0%, transparent 45%);
  pointer-events: none;
}
#team::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(96,0,122,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 64px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.team-avatar-wrap {
  position: relative;
  margin-bottom: 20px;
}
.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid) 0%, var(--violet-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(96,0,122,0.18), 0 0 0 4px var(--white), 0 0 0 5px rgba(96,0,122,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover .team-avatar {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(96,0,122,0.22), 0 0 0 4px var(--white), 0 0 0 5px rgba(96,0,122,0.12);
}
.team-avatar svg {
  color: rgba(255,255,255,0.55);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.team-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.team-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.team-link:hover {
  background: var(--cyan);
  color: var(--text-dark);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(96,0,122,0.08);
  position: relative;
  overflow: hidden;
}
.about-card-icon {
  width: 56px; height: 56px;
  background: rgba(96,0,122,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--violet);
}
.about-card h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.about-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.about-card-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.3;
}
.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.benefit-badge .star { color: var(--cyan); }

/* ── SERVICES ── */
#services {
  background: var(--white);
  max-width: none;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(96,0,122,0.1);
  border-color: rgba(96,0,122,0.25);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(96,0,122,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.2s;
  color: var(--violet);
}
.service-card:hover .service-icon { background: rgba(96,0,122,0.12); }
.service-card h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── PARTS APP FEATURE ── */
#parts-app {
  background: var(--violet);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
#parts-app::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(61,245,234,0.08);
  border-radius: 50%;
}
#parts-app::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  border: 1px solid rgba(61,245,234,0.08);
  border-radius: 50%;
}
.parts-app-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
#parts-app .section-label { color: var(--cyan); opacity: 0.7; }
#parts-app .section-title { color: var(--white); }
#parts-app .section-sub { color: rgba(255,255,255,0.65); }
.app-features-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.app-feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(61,245,234,0.1);
}
.app-feature-row:last-child { border-bottom: none; }
.app-feature-icon {
  width: 36px; height: 36px;
  background: rgba(61,245,234,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--cyan);
}
.app-feature-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.app-feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  font-weight: 300;
}
.app-cta-group {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cyan {
  display: inline-block;
  background: var(--cyan);
  color: var(--text-dark) !important;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Urbanist', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cyan:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61,245,234,0.3);
}
.app-visual-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-steps-visual {
  width: 100%;
  max-width: 360px;
}
.app-step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(61,245,234,0.12);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 0.6s ease both;
}
.app-step-item:nth-child(1) { animation-delay: 0.1s; }
.app-step-item:nth-child(2) { animation-delay: 0.2s; }
.app-step-item:nth-child(3) { animation-delay: 0.3s; }
.app-step-item:nth-child(4) { animation-delay: 0.4s; }
.app-step-item:hover { background: rgba(255,255,255,0.09); transform: translateX(4px); }
.app-step-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--cyan);
  opacity: 0.6;
  min-width: 22px;
  padding-top: 1px;
}
.app-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.app-step-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* ── MISSION / BENEFIT ── */
#mission {
  background: var(--light-gray);
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.mission-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(96,0,122,0.08);
}
.mission-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--violet), var(--violet-mid));
}
.mission-card h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-left: 16px;
  letter-spacing: -0.3px;
}
.mission-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-left: 16px;
}
.mission-card-icon {
  font-size: 24px;
  margin-bottom: 16px;
  margin-left: 16px;
  color: var(--violet);
}

/* ── CONTACT ── */
#contact {
  background: var(--white);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

/* ── FORM VALIDATION ── */
.form-error-summary {
  background: #FEF2F2;
  border: 1.5px solid #FCA5A5;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  color: #DC2626;
  line-height: 1.6;
}
.form-error-summary strong {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.form-error-summary ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #EF4444 !important;
  background: #FFF8F8;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08) !important;
}
.form-group.error .privacy-label input[type="checkbox"] {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08) !important;
}
.form-group.error > label {
  color: #EF4444;
}
.form-group.error .privacy-label span {
  color: #EF4444;
}
.req {
  color: #EF4444;
  margin-left: 2px;
  font-style: normal;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Urbanist', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(96,0,122,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(96,0,122,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--violet);
}
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 60px 48px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

/* Footer logo image */
.footer-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}

.footer-logo-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  color: var(--white);
}
.footer-social-link:hover {
  background: var(--cyan);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.7;
}
.footer-bottom-left strong { color: rgba(255,255,255,0.5); font-weight: 500; }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── PRIVACY CHECKBOX ── */
.form-privacy-group {
  margin-top: 4px;
}
.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}
.privacy-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background-color: var(--off-white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  cursor: pointer;
  transition: border-color 0.18s, background-color 0.18s, box-shadow 0.18s;
}
.privacy-label input[type="checkbox"]:checked {
  background-color: var(--cyan);
  border-color: var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231a1330' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.privacy-label input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(61,245,234,0.3);
}
.privacy-label a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.privacy-label a:hover { color: var(--violet-dark); }

/* ── SUBMIT BUTTON ── */
.btn-submit-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  background: var(--cyan);
  color: var(--text-dark);
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit-form:hover:not(:disabled) {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,245,234,0.3);
}
.btn-submit-form:active:not(:disabled) {
  transform: translateY(0);
}
.btn-submit-form:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.btn-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.btn-submit-form:hover:not(:disabled) .btn-arrow {
  transform: translateX(3px);
}
.btn-spinner {
  display: none;
  animation: btn-spin 0.75s linear infinite;
  flex-shrink: 0;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn-submit-form.loading .btn-text { opacity: 0.7; }
.btn-submit-form.loading .btn-arrow { display: none; }
.btn-submit-form.loading .btn-spinner { display: block; }

/* ── PARTNERS ── */
.partners-section {
  padding: 80px 48px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.partners-inner .section-sub {
  margin-bottom: 52px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.partner-logo-placeholder {
  width: 160px;
  height: 72px;
  background: var(--white);
  border: 1.5px dashed var(--border-strong);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.partner-logo-placeholder:hover { border-color: var(--violet-mid); }
.partner-logo-placeholder span {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── PRESS ── */
.press-section {
  padding: 100px 0 100px;
  background: var(--text-dark);
  overflow: hidden;
}
.press-header {
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto 52px;
}
.press-header .section-label {
  background: rgba(61,245,234,0.12);
  color: var(--cyan);
  border-color: rgba(61,245,234,0.2);
}
.press-header .section-title {
  color: var(--white);
}
.press-header .section-title em {
  color: var(--cyan);
}
.press-track-wrap {
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.press-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding: 8px 0 16px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.press-track.dragging {
  cursor: grabbing;
}
.press-card {
  width: 320px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.press-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(61,245,234,0.22);
  transform: translateY(-3px);
}
.press-source {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cyan);
}
.press-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}
.press-excerpt {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  margin: 0;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.2px;
  margin-top: 4px;
  transition: gap 0.2s;
  flex-shrink: 0;
}
.press-link:hover { gap: 10px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
    border-bottom: none;
    box-shadow: 0 1px 0 var(--border);
  }
  .nav-hamburger { display: flex; }

  /* Slide-down animated mobile menu */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(96,0,122,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                padding 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    padding: 12px 24px 24px;
    pointer-events: auto;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
  }
  .nav-cta {
    margin-top: 8px;
    display: inline-block;
    padding: 10px 20px !important;
  }

  .hero { padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  section { padding: 72px 24px; }
  #parts-app { padding: 72px 24px; }
  .about-grid,
  .parts-app-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .mission-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .partners-section { padding: 64px 24px; }
  .partner-logo-placeholder { width: 130px; height: 60px; }
  .press-section { padding: 72px 0; }
  .press-header { padding: 0 24px; margin-bottom: 36px; }
  .press-card { width: 280px; padding: 22px 22px 20px; }
}

/* ══════════════════════════════════════════════
   HERO SOCIAL PROOF
   ══════════════════════════════════════════════ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-sp-avatars {
  display: flex;
  align-items: center;
}
.hero-sp-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-dark));
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Urbanist', sans-serif;
  letter-spacing: 0;
  margin-left: -8px;
}
.hero-sp-avatar:first-child { margin-left: 0; }
.hero-sp-text {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
  font-family: 'Urbanist', sans-serif;
}

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(96,0,122,0.08);
}
.stat-icon {
  color: var(--violet);
  opacity: 0.6;
  margin-bottom: 8px;
}
.stat-num {
  font-family: 'Parts-Regular', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  font-style: normal;
  color: var(--cyan-dark);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .stats-bar { padding: 48px 24px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 24px 16px; }
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
#how-it-works {
  background: var(--white);
  padding: 100px 48px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: center;
  margin-top: 64px;
}
.how-step {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(96,0,122,0.09);
  border-color: rgba(96,0,122,0.2);
}
.how-step-bg-num {
  position: absolute;
  bottom: -12px;
  right: -8px;
  font-family: 'Parts-Regular', sans-serif;
  font-size: 100px;
  font-weight: 300;
  font-style: normal;
  color: var(--violet);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.how-step-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--violet);
  opacity: 0.5;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.how-step-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.how-step-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.how-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-strong);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  #how-it-works { padding: 72px 24px; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .how-step-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

/* ══════════════════════════════════════════════
   CTA STANDALONE
   ══════════════════════════════════════════════ */
.cta-standalone {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 60%, #6a55cc 100%);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.cta-standalone::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(61,245,234,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-standalone::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(61,245,234,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-standalone-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-standalone-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-standalone-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-standalone-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'Urbanist', sans-serif;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-standalone { padding: 72px 24px; }
  .cta-standalone-title { letter-spacing: -1px; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
#testimonials {
  background: var(--light-gray);
  padding: 100px 48px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 40px 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(96,0,122,0.1);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--violet-mid));
}
.testimonial-quote {
  font-family: 'Urbanist', sans-serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--cyan);
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  flex-grow: 1;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Urbanist', sans-serif;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}
.testimonial-placeholder-note {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cyan-dark);
  background: rgba(213,195,85,0.1);
  border: 1px solid rgba(213,195,85,0.25);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
}
@media (max-width: 900px) {
  #testimonials { padding: 72px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   PARTNER CARDS (updated)
   ══════════════════════════════════════════════ */
.partner-card {
  width: 176px;
  background: var(--white);
  border: 1.5px dashed var(--border-strong);
  border-radius: 14px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.partner-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(96,0,122,0.09);
}
.partner-card-icon {
  color: var(--violet);
  opacity: 0.35;
  margin-bottom: 6px;
}
.partner-card-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}
.partner-card-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.3px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner-card-badge {
  margin-top: 8px;
  background: var(--cyan);
  color: var(--violet-dark);
  font-family: 'Urbanist', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .partner-card { width: 140px; padding: 20px 14px 16px; }
}

/* ══════════════════════════════════════════════
   STICKY CTA BAR — Mobile only
   ══════════════════════════════════════════════ */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--violet);
  padding: 14px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(96,0,122,0.25);
  border-top: 1px solid rgba(61,245,234,0.15);
}
.sticky-cta-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  flex-grow: 1;
}
.sticky-cta-btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--violet-dark);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Urbanist', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.2s;
}
.sticky-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
/* Show only on mobile — hide when user is in #contact */
@media (max-width: 768px) {
  .sticky-cta-bar { display: flex; }
  /* add bottom padding to body to prevent content hidden under bar */
  body { padding-bottom: 62px; }
  /* hide when contact section is visible (handled via JS class) */
  .sticky-cta-bar.hidden { display: none; }
}

