/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ── */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f7f6fd;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.ss-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── NAV ── */
.ss-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 0.5px solid #e8e8e8;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100vw - 1280px) / 2 + 40px));
}
.ss-nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #403D99;
  letter-spacing: -0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ss-nav-links { display: flex; gap: 28px; align-items: center; }
.ss-nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.ss-nav-links a:hover, .ss-nav-links a.active { color: #403D99; }
.ss-nav-cta {
  background: #403D99;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s;
}
.ss-nav-cta:hover { background: #302e82 !important; }

/* Mobile nav toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #403D99;
  padding: 5px;
}
.mobile-nav {
  display: none;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 65px;
  left: 0; right: 0;
  z-index: 99;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.mobile-nav.active { display: block; animation: slideDown 0.25s ease-out; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 0.5px solid #eee;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: #403D99; background: #f5f4fe; }

/* ── HERO ── */
.ss-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 72px 40px 64px;
  background: linear-gradient(160deg, #eeedf9 0%, #f7f6fd 55%, #fff 100%);
  border-radius: 0 0 32px 32px;
}
.ss-hero > div:first-child { animation: fadeSlideUp 0.7s ease both; }
.ss-hero-visual { animation: fadeSlideUp 0.7s 0.2s ease both; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ss-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #403D99;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ss-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
.ss-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1.08;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.ss-hero h1 em { font-style: italic; color: #403D99; }
.ss-hero-sub {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

/* Store badges */
.ss-store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.ss-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border-radius: 12px;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
}
.ss-store-badge:hover { transform: translateY(-4px); }
.ss-store-badge-icon { font-size: 26px; line-height: 1; }
.ss-store-badge-sub { font-size: 9px; font-weight: 400; opacity: 0.7; display: block; letter-spacing: 0.3px; }
.ss-store-badge-main { font-size: 15px; font-weight: 600; display: block; }

/* ── HERO VISUAL / PHONE ── */
.ss-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 640px;
}
.ss-hero-visual::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(64,61,153,0.10) 0%, rgba(64,61,153,0.04) 50%, transparent 75%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.ss-phone-wrap {
  position: relative;
  z-index: 2;
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.ss-phone-frame {
  width: 264px; height: 572px;
  background: linear-gradient(145deg, #2a2a2a 0%, #111 40%, #1e1e1e 70%, #0a0a0a 100%);
  border-radius: 48px;
  padding: 13px;
  box-shadow:
    0 0 0 0.5px #444,
    0 0 0 1.5px #111,
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 28px 72px rgba(64,61,153,0.22),
    0 8px 24px rgba(0,0,0,0.28);
  position: relative;
}
.ss-phone-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 40%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
  z-index: 5;
}
.ss-phone-screen {
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 37px;
  overflow: hidden;
  position: relative;
}
/* iPhone 15 buttons */
.ss-phone-btn-side {
  position: absolute; right: -3.5px; top: 130px;
  width: 3.5px; height: 76px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  border-radius: 0 3px 3px 0; z-index: 6;
}
.ss-phone-btn-mute {
  position: absolute; left: -3.5px; top: 72px;
  width: 3.5px; height: 20px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  border-radius: 3px 0 0 3px; z-index: 6;
}
.ss-phone-btn-vol-up {
  position: absolute; left: -3.5px; top: 100px;
  width: 3.5px; height: 44px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  border-radius: 3px 0 0 3px; z-index: 6;
}
.ss-phone-btn-vol-down {
  position: absolute; left: -3.5px; top: 156px;
  width: 3.5px; height: 44px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  border-radius: 3px 0 0 3px; z-index: 6;
}

/* Floating chips */
.ss-chip {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  border-radius: 14px; padding: 10px 14px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap; z-index: 4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.ss-chip-1 {
  top: 52px; right: -44px; background: #fff; color: #403D99;
  border: 1px solid #e0def8; animation: chipFloat1 4s ease-in-out infinite;
}
.ss-chip-2 {
  bottom: 100px; left: -52px; background: #fff; color: #0f6e56;
  border: 1px solid #c0ead8; animation: chipFloat2 4.5s ease-in-out infinite;
}
.ss-chip-3 {
  top: 50%; right: -56px; transform: translateY(-50%);
  background: #fff; color: #7c3aed; border: 1px solid #ede9fe;
  animation: chipFloat3 5s ease-in-out infinite;
  flex-direction: column; align-items: flex-start; gap: 2px;
}
.ss-chip-4 {
  bottom: 180px; right: -40px; background: #fff8f0; color: #b45309;
  border: 1px solid #fed7aa; animation: chipFloat1 3.8s 0.8s ease-in-out infinite;
}
.chip-label { font-size: 9px; font-weight: 500; opacity: 0.6; }
.chip-val   { font-size: 15px; font-weight: 700; }
@keyframes chipFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes chipFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes chipFloat3 { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(calc(-50% - 5px)) translateX(0)} }

/* Deco icons */
.ss-deco { position: absolute; opacity: 0.18; color: #403D99; pointer-events: none; z-index: 1; }
.ss-deco-1 { top: 20px; left: 10px; animation: decoSpin 12s linear infinite; }
.ss-deco-2 { bottom: 30px; right: 0; animation: decoSpin 16s linear infinite reverse; }
.ss-deco-3 { top: 45%; left: -16px; animation: chipFloat2 6s ease-in-out infinite; opacity: 0.12; }
@keyframes decoSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* ── DIVIDERS ── */
.ss-divider-motif {
  display: flex; align-items: center; gap: 12px;
  padding: 0 40px; margin: 0;
}
.ss-divider-motif::before, .ss-divider-motif::after {
  content: ''; flex: 1; height: 0.5px; background: #dddaf5;
}
.ss-divider-motif svg { color: #b5b0e0; }

/* ── SECTIONS ── */
.ss-section { padding: 72px 40px; position: relative; overflow: hidden; }
.ss-section::before {
  content: '';
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64,61,153,0.04) 0%, transparent 70%);
  top: -80px; right: -80px; pointer-events: none;
}
#about.ss-section { background: #ffffff; }
.ss-how { background: #edebf8 !important; }
.ss-how::before {
  background: radial-gradient(circle, rgba(15,110,86,0.04) 0%, transparent 70%);
  top: auto; bottom: -80px; left: -60px; right: auto;
}
#team.ss-section { background: #f9f8fe; }

/* Pill eyebrow */
.ss-section-eyebrow {
  display: inline-block;
  background: #dddaf5; color: #403D99;
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ss-section-eyebrow.visible { opacity: 1; transform: translateY(0); }

.ss-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; color: #111; line-height: 1.12;
  letter-spacing: -0.3px; margin-bottom: 14px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s 0.1s ease, transform 0.5s 0.1s ease;
}
.ss-section-title.visible { opacity: 1; transform: translateY(0); }

.ss-section-sub {
  color: #666; font-size: 15px; max-width: 540px;
  line-height: 1.7; margin-bottom: 48px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}
.ss-section-sub.visible { opacity: 1; transform: translateY(0); }

/* ── FEATURE CARDS ── */
.ss-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ss-feature-card {
  background: #fff; border: 0.5px solid #eee; border-radius: 16px; padding: 28px 24px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.ss-feature-card.visible { opacity: 1; transform: translateY(0); }
.ss-feature-card.visible:hover { transform: translateY(-4px); border-color: #c8c6f0; }
.ss-feature-card:nth-child(1) { transition-delay: 0s; }
.ss-feature-card:nth-child(2) { transition-delay: 0.1s; }
.ss-feature-card:nth-child(3) { transition-delay: 0.2s; }
.ss-fc-purple { border-top: 3px solid #a5a2e8; }
.ss-fc-teal   { border-top: 3px solid #6dcfb0; }
.ss-fc-coral  { border-top: 3px solid #f0a090; }
.ss-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ss-fc-purple .ss-feature-icon { background: #eceafa; color: #403D99; }
.ss-fc-teal   .ss-feature-icon { background: #e1f5ee; color: #0f6e56; }
.ss-fc-coral  .ss-feature-icon { background: #faece7; color: #993c1d; }
.ss-feature-icon svg { width: 24px; height: 24px; }
.ss-feature-card h3 { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 8px; }
.ss-feature-card p  { font-size: 13px; color: #666; line-height: 1.65; }
.ss-feature-stat {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.2px;
}
.ss-fc-purple .ss-feature-stat { color: #8b87d0; }
.ss-fc-teal   .ss-feature-stat { color: #3aaa84; }
.ss-fc-coral  .ss-feature-stat { color: #c07060; }

/* ── HOW IT WORKS STEPS ── */
.ss-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ss-step {
  background: #fff; border: 0.5px solid #eee; border-radius: 16px; padding: 28px 24px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.ss-step.visible { opacity: 1; transform: translateY(0); }
.ss-step.visible:hover { transform: translateY(-4px); border-color: #c8c6f0; }
.ss-step:nth-child(1) { transition-delay: 0s; }
.ss-step:nth-child(2) { transition-delay: 0.1s; }
.ss-step:nth-child(3) { transition-delay: 0.2s; }
.ss-step-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  background: #eeedf8; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; overflow: hidden;
}
.ss-step-icon-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.5) 0%, transparent 65%);
}
.ss-step-icon-wrap svg { width: 26px; height: 26px; color: #403D99; position: relative; z-index: 1; }
.ss-step:nth-child(2) .ss-step-icon-wrap { background: #e1f5ee; }
.ss-step:nth-child(2) .ss-step-icon-wrap svg { color: #0f6e56; }
.ss-step:nth-child(3) .ss-step-icon-wrap { background: #fff3e8; }
.ss-step:nth-child(3) .ss-step-icon-wrap svg { color: #b45309; }
.ss-step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; color: #e8e7f5; line-height: 1;
  margin-bottom: 8px; letter-spacing: -1px;
}
.ss-step h3 { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 8px; }
.ss-step p  { font-size: 13px; color: #666; line-height: 1.65; }

/* ── TEAM CARDS ── */
.ss-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ss-team-card {
  background: #fff; border: 0.5px solid #eee; border-radius: 16px;
  padding: 28px 24px; text-align: center;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.ss-team-card.visible { opacity: 1; transform: translateY(0); }
.ss-team-card.visible:hover { border-color: #c8c6f0; }
.ss-team-card:nth-child(1) { transition-delay: 0s; }
.ss-team-card:nth-child(2) { transition-delay: 0.1s; }
.ss-team-card:nth-child(3) { transition-delay: 0.2s; }
.ss-team-deco {
  position: absolute; top: 16px; right: 18px;
  width: 28px; height: 28px; opacity: 0.07; color: #403D99; pointer-events: none;
}
.ss-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 22px;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #e8e7f5;
}
.ss-avatar-purple { background: #eceafa; color: #403D99; }
.ss-avatar-teal   { background: #e1f5ee; color: #0f6e56; }
.ss-avatar-coral  { background: #faece7; color: #993c1d; }
.ss-team-name { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 4px; }
.ss-team-role {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 12px; color: #403D99; font-weight: 500; margin-bottom: 8px;
}
.ss-team-bio { font-size: 12px; color: #888; line-height: 1.6; }

/* ── CTA BLOCK ── */
.ss-cta-wrap { padding: 0 40px 72px; }
.ss-cta {
  background: linear-gradient(135deg, #3c39a0 0%, #5450c0 50%, #403D99 100%);
  border-radius: 24px; padding: 64px 48px; text-align: center; color: #fff;
}
.ss-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px; margin-bottom: 12px; letter-spacing: -0.3px;
}
.ss-cta p { font-size: 15px; opacity: 0.75; margin-bottom: 32px; }
.ss-cta-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ss-cta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px; padding: 10px 20px;
  text-decoration: none; color: #fff; font-size: 13px; font-weight: 500;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
}
.ss-cta-badge:hover { transform: translateY(-4px); background: rgba(255,255,255,0.2); }

/* ── FOOTER ── */
.ss-footer {
  padding: 28px 40px;
  background: #403D99;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100vw - 1280px) / 2 + 40px));
}
.ss-footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.ss-footer-links { display: flex; gap: 20px; }
.ss-footer-links a { font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; }
.ss-footer-links a:hover { color: #fff; }
.ss-footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 64px 40px 56px; text-align: center;
  background: linear-gradient(160deg, #eeedf9 0%, #f7f6fd 55%, #fff 100%);
  border-radius: 0 0 32px 32px;
}
.contact-hero-eyebrow {
  display: inline-block; background: #dddaf5; color: #403D99;
  font-size: 13px; font-weight: 600; padding: 8px 20px;
  border-radius: 100px; margin-bottom: 20px;
}
.contact-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 46px; color: #111; line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 14px;
}
.contact-hero h1 em { font-style: italic; color: #403D99; }
.contact-hero p { color: #666; font-size: 16px; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.contact-body {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 40px; padding: 56px 40px; align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: #fff; border: 0.5px solid #e8e6f5; border-radius: 18px; padding: 28px;
}
.contact-info-card h2 {
  font-family: 'DM Serif Display', serif; font-size: 28px; color: #111;
  margin-bottom: 8px; line-height: 1.2;
}
.contact-info-card h2 em { font-style: italic; color: #403D99; }
.contact-info-card > p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-top: 0.5px solid #f0eef8; }
.contact-detail:first-of-type { border-top: none; }
.contact-detail-icon {
  width: 40px; height: 40px; background: #eeedf8; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #403D99;
}
.contact-detail-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #aaa; margin-bottom: 3px; }
.contact-detail-value { font-size: 14px; font-weight: 500; color: #1a1a1a; line-height: 1.5; }
.contact-detail-value a { color: #403D99; text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }
.support-badge {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #eeedf8, #f5f4fe);
  border: 1px solid #dbd9f5; border-radius: 14px; padding: 14px 18px; margin-top: 4px;
}
.support-badge-icon {
  width: 36px; height: 36px; background: #403D99; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff;
}
.support-badge-text strong { font-size: 13px; color: #111; display: block; font-weight: 600; }
.support-badge-text span  { font-size: 12px; color: #888; }
.contact-form-card {
  background: #fff; border: 0.5px solid #e8e6f5; border-radius: 18px; padding: 36px 32px;
}
.contact-form-card h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: #111; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #444; margin-bottom: 6px; letter-spacing: 0.2px; }
.form-group label .req { color: #403D99; margin-left: 2px; }
.form-input-wrap { position: relative; }
.form-input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: #bbb; pointer-events: none; }
.form-input {
  width: 100%; border: 1.5px solid #e5e3f5; border-radius: 10px;
  padding: 11px 14px 11px 40px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none;
}
.form-input::placeholder { color: #bbb; }
.form-input:focus { border-color: #403D99; box-shadow: 0 0 0 3px rgba(64,61,153,0.08); }
select.form-input {
  padding-left: 14px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
textarea.form-input { padding-left: 14px; resize: none; height: 130px; line-height: 1.6; }
.textarea-count { text-align: right; font-size: 11px; color: #bbb; margin-top: 4px; }
.form-submit {
  width: 100%; background: #403D99; color: #fff; border: none;
  border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s; margin-top: 8px; letter-spacing: 0.2px;
}
.form-submit:hover { background: #302e82; transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { cursor: not-allowed; opacity: 0.72; transform: none; }
.form-status { min-height: 20px; margin-top: 12px; font-size: 13px; line-height: 1.5; }
.form-status.success { color: #1b7f5a; }
.form-status.error { color: #b42318; }

/* Contact page fade-in */
.contact-left, .contact-form-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.contact-left.visible, .contact-form-card.visible { opacity: 1; transform: translateY(0); }
.contact-form-card { transition-delay: 0.1s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ss-nav {
    padding: 16px 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ss-nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .ss-hero { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .ss-hero h1 { font-size: 38px; }
  .ss-hero-visual { display: none; }
  .ss-section { padding: 48px 20px; }
  .ss-features-grid, .ss-steps, .ss-team-grid { grid-template-columns: 1fr; }
  .ss-divider-motif { padding: 0 20px; }
  .ss-cta-wrap { padding: 0 20px 48px; }
  .ss-cta { padding: 40px 24px; }
  .ss-footer {
    padding: 24px 20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-hero { padding: 48px 20px 40px; }
  .contact-hero h1 { font-size: 34px; }
  .contact-body { grid-template-columns: 1fr; padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
