/* =========================================================
   AbledYou Solutions — Design Tokens
   ========================================================= */
:root {
  /* Brand palette (contrast-checked against WCAG AA) */
  --ink: #14102B;
  --ink-soft: #4A4560;
  --violet-900: #1F1147;
  --violet-800: #2A1B63;
  --violet-700: #4A2FD1;
  --violet-600: #5B3DF0;
  --violet-500: #8B72FF;
  --violet-100: #EFEBFF;
  --violet-50: #F7F5FF;
  --coral-600: #C2410C;
  --coral-500: #FF7A45;
  --coral-100: #FFE8DD;
  --teal-500: #17C3B2;
  --teal-100: #DFF8F5;
  --bg: #FBFAFF;
  --surface: #FFFFFF;
  --border: #E7E3F5;
  --border-dark: rgba(255,255,255,0.14);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(31, 17, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 17, 71, 0.10);
  --shadow-lg: 0 20px 48px rgba(31, 17, 71, 0.16);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
ul[role="list"], ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
fieldset { border: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--violet-700); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Focus states — visible everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-dark { background: var(--violet-900); color: #fff; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 0.85rem;
}
.eyebrow-light { color: var(--coral-500); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; margin-top: 1rem; }
.lead-light { color: rgba(255,255,255,0.78); }

.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.section-dark .section-head h2, .section-dark h3 { color: #fff; }

.text-gradient {
  background: linear-gradient(100deg, var(--violet-600), var(--coral-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--violet-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--violet-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--violet-600); color: var(--violet-700); }
.btn-outline:hover { background: var(--violet-100); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--violet-700); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand-mark { color: var(--violet-600); display: inline-flex; }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-accent { color: var(--coral-600); }

.main-nav ul { display: flex; gap: 1.75rem; }
.main-nav a { font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.15s; }
.main-nav a:hover { color: var(--violet-700); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle { display: none; width: 42px; height: 42px; position: relative; }
.nav-toggle-bars {
  position: absolute; left: 10px; right: 10px; top: 50%; height: 2px; background: var(--ink);
  transform: translateY(-50%); transition: background 0.2s;
}
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); transition: transform 0.2s var(--ease);
}
.nav-toggle-bars::before { top: -8px; }
.nav-toggle-bars::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 1.75rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
.mobile-nav a { display: block; padding: 0.65rem 0; font-weight: 500; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 0.75rem; }

@media (max-width: 880px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(4.5rem, 12vw, 8rem) clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-arrow { position: absolute; right: -4%; top: 8%; width: min(46vw, 480px); opacity: 0.9; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.orb-1 { width: 320px; height: 320px; background: var(--violet-500); top: -80px; left: -100px; }
.orb-2 { width: 260px; height: 260px; background: var(--coral-500); bottom: -60px; left: 20%; opacity: 0.25; }
.orb-3 { width: 200px; height: 200px; background: var(--teal-500); top: 30%; right: 5%; opacity: 0.2; }

.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-title { font-size: clamp(2.5rem, 6.2vw, 4.25rem); margin-bottom: 1.25rem; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 58ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); }
.hero-stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--violet-600); }
.stat-label { font-size: 0.85rem; color: var(--ink-soft); max-width: 16ch; }

/* =========================================================
   About / diagram
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-grid h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); margin-bottom: 0.25rem; }
.about-grid p + p { margin-top: 1.1rem; }
.about-grid .lead { margin-top: 1rem; }

.about-diagram {
  position: relative;
  background: var(--violet-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem 2rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}
.diagram-node {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.diagram-root { background: var(--violet-600); color: #fff; padding: 0.9rem 1.75rem; font-size: 1.1rem; }
.diagram-lines { width: 260px; height: 60px; }
.diagram-branches { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; }
.diagram-branch { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.diagram-child { background: #fff; border: 2px solid var(--violet-600); color: var(--violet-700); padding: 0.6rem 1.3rem; }
.diagram-child-alt { border-color: var(--coral-500); color: var(--coral-600); }
.diagram-tag { font-size: 0.78rem; color: var(--ink-soft); text-align: center; max-width: 16ch; }

@media (min-width: 480px) {
  .diagram-branches { flex-direction: row; justify-content: space-evenly; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   BellZy showcase
   ========================================================= */
.section-bellzy {
  background: linear-gradient(160deg, var(--violet-900), #2A1B63 55%, var(--violet-800));
  color: #fff;
  position: relative;
}
.bellzy-logo { font-size: clamp(2.5rem, 5vw, 3.5rem); color: #fff; }
.bellzy-tagline { margin-top: 1.1rem; font-weight: 600; color: var(--coral-500); font-family: var(--font-display); }

.bellzy-showcase { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; margin-top: 1rem; }

.phone-mockups { position: relative; height: clamp(340px, 46vw, 460px); justify-self: center; width: 100%; max-width: 420px; }
.phone {
  position: absolute;
  width: 210px;
  border-radius: 32px;
  background: #100A29;
  border: 6px solid #100A29;
  box-shadow: var(--shadow-lg);
}
.phone-back { left: 6%; top: 6%; opacity: 0.55; transform: rotate(-6deg) scale(0.94); }
.phone-front { right: 4%; bottom: 0; }
.phone-screen { background: #fff; border-radius: 24px; aspect-ratio: 9/18.5; padding: 14px; overflow: hidden; display: flex; flex-direction: column; gap: 10px; }
.mock-topbar { height: 10px; width: 55%; border-radius: 6px; background: var(--border); }
.mock-topbar-accent { background: var(--violet-600); width: 40%; }
.mock-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--coral-500); }
.mock-line { height: 9px; border-radius: 5px; background: var(--border); }
.mock-line-lg { width: 80%; }
.mock-line-sm { width: 45%; }
.mock-card { height: 46px; border-radius: 10px; background: var(--violet-100); }
.mock-card-wide { height: 60px; }
.mock-card-highlight { height: 54px; background: linear-gradient(120deg, var(--violet-600), var(--coral-500)); }
.mock-row { display: flex; gap: 8px; }
.mock-row span { flex: 1; height: 30px; border-radius: 8px; background: var(--teal-100); }
.mock-list { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.mock-list-item { height: 22px; border-radius: 6px; background: var(--bg); border: 1px solid var(--border); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: #fff; }
.feature-card p { font-size: 0.9rem; color: rgba(255,255,255,0.72); }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-600), var(--coral-500));
  margin-bottom: 1rem;
}
.feature-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon-dark { background: linear-gradient(135deg, var(--coral-500), var(--violet-500)); }

.bellzy-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; }

@media (max-width: 980px) {
  .bellzy-showcase { grid-template-columns: 1fr; }
  .phone-mockups { order: -1; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Personas tabs
   ========================================================= */
.tab-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.tab-btn:hover { border-color: var(--violet-500); color: var(--violet-700); }
.tab-btn.is-active { background: var(--violet-600); border-color: var(--violet-600); color: #fff; }

.tab-panel {
  display: none;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.tab-panel.is-active { display: grid; }
.persona-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--violet-100); color: var(--violet-700); flex-shrink: 0;
}
.persona-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tab-panel h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.tab-panel p { color: var(--ink-soft); max-width: 58ch; }

@media (max-width: 520px) {
  .tab-panel { grid-template-columns: 1fr; }
}

/* =========================================================
   Services grid
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Why grid
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.why-num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--coral-500); display: block; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--ink-soft); }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Tech strip
   ========================================================= */
.tech-strip { background: var(--violet-50); border-block: 1px solid var(--border); padding-block: 2.5rem; }
.tech-strip-label { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.25rem; letter-spacing: 0.02em; }
.tech-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.tech-badges li {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-full);
  background: #fff; border: 1px solid var(--border); color: var(--ink-soft);
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}
.quote-mark { font-family: var(--font-display); font-size: 2.5rem; color: var(--violet-100); line-height: 1; display: block; margin-bottom: 0.5rem; }
.testimonial-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-meta { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--violet-100); flex-shrink: 0; }
.testimonial-meta div { display: flex; flex-direction: column; font-size: 0.85rem; }
.testimonial-meta span { color: var(--ink-soft); }

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.path-select legend { font-family: var(--font-display); font-weight: 600; margin-bottom: 0.85rem; font-size: 0.95rem; }
.path-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.path-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  display: flex; gap: 0.6rem; align-items: flex-start;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.path-option:has(input:checked) { border-color: var(--violet-600); background: var(--violet-50); }
.path-option input { margin-top: 0.3rem; accent-color: var(--violet-600); }
.path-option small { display: block; color: var(--ink-soft); font-weight: 400; margin-top: 0.15rem; }

.form-row { margin-bottom: 1.15rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 600; font-size: 0.88rem; }
.form-row input, .form-row textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: var(--bg);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--violet-600); outline: none; }
.char-counter { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.35rem; }
.char-counter.is-met { color: #0F8A5F; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading { opacity: 0.85; pointer-events: none; }
@keyframes btn-spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(16px);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #0F8A5F;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: min(90vw, 440px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 300;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.is-error { background: var(--coral-600); }
.toast-icon { width: 20px; height: 20px; flex-shrink: 0; display: none; }
.toast.is-success .toast-icon-success { display: block; }
.toast.is-error .toast-icon-error { display: block; }

@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.15s linear; }
}

.contact-info h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.contact-list li { display: flex; align-items: center; gap: 0.85rem; font-weight: 600; }
.contact-list a:hover { color: var(--violet-700); }
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--violet-100); color: var(--violet-700); flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-note {
  background: var(--coral-100); border-radius: var(--radius-md);
  padding: 1.25rem; font-size: 0.9rem; color: var(--ink);
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .path-options { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--violet-900); color: rgba(255,255,255,0.85); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-dark); }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.62); max-width: 32ch; }
.footer-domain { font-family: var(--font-display); font-weight: 600; color: var(--coral-500) !important; margin-top: 0.6rem !important; }
.site-footer .brand-word { color: #fff; }
.site-footer .brand-mark { color: var(--coral-500); }

.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--coral-500); }
.footer-soon { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-style: italic; }

.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--coral-500); border-color: var(--coral-500); }

.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
