/* ==========================================================================
   Digitize — Freelance Web & Digital Studio
   --------------------------------------------------------------------------
   A bright, energetic light theme built around a violet → pink gradient,
   soft rounded surfaces and generous whitespace. Colours live in section 01.
   --------------------------------------------------------------------------
   Contents
     01. Design tokens
     02. Reset & base
     03. Accessibility helpers
     04. Layout primitives
     05. Decorative background
     06. Buttons & links
     07. Header / navigation
     08. Hero
     09. Section headings
     10. Services (bento cards)
     11. Approach / why
     12. Process
     13. Statistics
     14. Call to action
     15. Contact & form
     16. Footer
     17. Scroll reveal
     18. Responsive
     19. Reduced motion & print
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette — swap these to re-skin the site */
  --violet: #7c3aed;
  --pink: #ec4899;
  --amber: #f59e0b;
  --sky: #0ea5e9;
  --emerald: #10b981;
  --accent: var(--violet);
  --accent-soft: rgba(124, 58, 237, 0.1);

  /* Surfaces — light theme */
  --bg: #fbfaff;
  --bg-alt: #f4f0ff;
  --surface: #ffffff;
  --surface-tint: #faf7ff;
  --border: rgba(24, 16, 48, 0.08);
  --border-strong: rgba(24, 16, 48, 0.14);

  /* Text */
  --text: #1c1330;
  --text-muted: #574b6e;
  --text-dim: #857a99;

  /* Feedback */
  --danger: #e11d48;
  --success: #059669;

  /* Gradients */
  --grad: linear-gradient(120deg, var(--violet), var(--pink));
  --grad-soft: linear-gradient(120deg, rgba(124, 58, 237, 0.12), rgba(236, 72, 153, 0.12));

  /* Shape & depth — soft and rounded */
  --radius: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(85, 33, 138, 0.08);
  --shadow: 0 24px 50px -24px rgba(85, 33, 138, 0.28);
  --shadow-color: 0 18px 44px -16px rgba(124, 58, 237, 0.45);

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;

  /* Typography — system stack, zero font requests */
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  font-weight: 800;
}

p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }

button,
input,
textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 8px;
}

::selection { background: var(--pink); color: #fff; }

/* ==========================================================================
   03. ACCESSIBILITY HELPERS
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  translate: -50% -200%;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--violet);
  color: #fff;
  font-weight: 600;
  transition: translate 0.25s var(--ease);
}
.skip-link:focus-visible { translate: -50% 0; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--alt { background: var(--bg-alt); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hand-drawn style highlight behind key words */
.mark {
  position: relative;
  white-space: nowrap;
}
.mark::before {
  content: "";
  position: absolute;
  inset: 60% -0.15em 4% -0.15em;
  z-index: -1;
  background: var(--grad-soft);
  border-radius: 0.4em;
  transform: rotate(-1.2deg);
}

/* ==========================================================================
   05. DECORATIVE BACKGROUND
   Soft pastel blobs, fixed and blurred. Pointer-events none.
   ========================================================================== */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.blob--1 {
  width: 42vmax; height: 42vmax;
  top: -14vmax; right: -10vmax;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.5), transparent 68%);
  animation: drift-a 28s ease-in-out infinite alternate;
}
.blob--2 {
  width: 36vmax; height: 36vmax;
  top: 38%; left: -12vmax;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 68%);
  animation: drift-b 34s ease-in-out infinite alternate;
}
.blob--3 {
  width: 30vmax; height: 30vmax;
  bottom: -12vmax; right: 18%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4), transparent 68%);
  animation: drift-c 40s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-6vmax,5vmax,0) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate3d(0,0,0) scale(1.05); }
  to   { transform: translate3d(7vmax,-4vmax,0) scale(0.95); }
}
@keyframes drift-c {
  from { transform: translate3d(0,0,0) scale(0.95); }
  to   { transform: translate3d(-5vmax,-6vmax,0) scale(1.1); }
}

/* ==========================================================================
   06. BUTTONS & LINKS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.975rem;
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-color);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.5) 50%, transparent 75%);
  translate: -100% 0;
  transition: translate 0.7s var(--ease);
}
.btn--primary:hover::after,
.btn--primary:focus-visible::after { translate: 100% 0; }
.btn--primary:hover { box-shadow: 0 22px 50px -14px rgba(124, 58, 237, 0.6); }

.btn--ghost {
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.btn--block { width: 100%; }

.btn__icon { transition: translate var(--dur) var(--ease); }
.btn:hover .btn__icon { translate: 4px 0; }

.link {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(124, 58, 237, 0.35);
  transition: text-decoration-color var(--dur) var(--ease);
}
.link:hover { text-decoration-color: var(--violet); }

/* ==========================================================================
   07. HEADER / NAVIGATION — floating pill
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 0.85rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
  padding: 0.5rem 0.6rem 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled .header__inner {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-color);
}
.brand__accent { color: var(--violet); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--text); background: var(--accent-soft); }
.nav__link.is-active { color: var(--violet); background: var(--accent-soft); }

.nav__link--cta {
  margin-left: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-color);
}
.nav__link--cta:hover { color: #fff; transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
}
.nav-toggle__bar {
  display: block;
  height: 2.5px; width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s linear;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   08. HERO
   ========================================================================== */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem); }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 600;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero__title {
  font-size: clamp(2.3rem, 1.1rem + 4.4vw, 4.1rem);
  margin-bottom: 1.3rem;
}
.hero__lead {
  max-width: 52ch;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.hero__trust li { display: flex; align-items: center; gap: 0.45rem; }
.hero__trust svg { color: var(--pink); flex-shrink: 0; }

/* --- Hero visual: browser mockup + floating chips --- */
.hero__visual { position: relative; isolation: isolate; }

.mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 1rem;
  background: var(--surface-tint);
  border-bottom: 1px solid var(--border);
}
.mockup__bar i {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border-strong);
}
.mockup__bar i:first-child { background: #ff5f57; }
.mockup__bar i:nth-child(2) { background: #febc2e; }
.mockup__bar i:nth-child(3) { background: #28c840; }
.mockup__url {
  margin-left: 0.6rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
}
.mockup__body { padding: 1.4rem; }
.mockup__hero {
  height: 92px;
  border-radius: 14px;
  background: var(--grad);
  margin-bottom: 1rem;
}
.mockup__row {
  height: 12px;
  border-radius: 6px;
  background: var(--bg-alt);
  margin-bottom: 0.7rem;
}
.mockup__row--w1 { width: 85%; }
.mockup__row--w2 { width: 60%; }
.mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.1rem;
}
.mockup__card {
  height: 62px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-tint);
}
.mockup__card:nth-child(1) { border-top: 3px solid var(--violet); }
.mockup__card:nth-child(2) { border-top: 3px solid var(--pink); }
.mockup__card:nth-child(3) { border-top: 3px solid var(--sky); }

.chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.85rem;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.chip__dot {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  color: #fff;
}
.chip--speed { left: -7%; top: 12%; }
.chip--speed .chip__dot { background: var(--amber); }
.chip--rank { right: -6%; bottom: 14%; animation-delay: -3.5s; }
.chip--rank .chip__dot { background: var(--emerald); }
.chip__value { color: var(--text); }
.chip__label { display: block; color: var(--text-dim); font-size: 0.7rem; font-weight: 600; }

/* --- Marquee strip --- */
.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.7rem;
  margin-top: clamp(2.75rem, 6vw, 4rem);
}
.strip span {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ==========================================================================
   09. SECTION HEADINGS
   ========================================================================== */
.section__head {
  max-width: 60ch;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section__title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  margin-bottom: 1rem;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section__note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ==========================================================================
   10. SERVICES (bento cards)
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}
.card {
  position: relative;
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 17px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease);
}
.card:hover .card__icon { transform: scale(1.08) rotate(-5deg); }
.card__icon svg { width: 27px; height: 27px; }

/* Per-card accent colours keep the grid lively */
.card--c1 .card__icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.card--c2 .card__icon { background: linear-gradient(135deg, #ec4899, #f472b6); }
.card--c3 .card__icon { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.card--c4 .card__icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.card--c5 .card__icon { background: linear-gradient(135deg, #10b981, #34d399); }
.card--c6 .card__icon { background: linear-gradient(135deg, #6366f1, #818cf8); }

.card__title { margin-bottom: 0.55rem; font-size: 1.2rem; }
.card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   11. APPROACH / WHY
   ========================================================================== */
.approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.approach__item {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.approach__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.approach__num {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.approach__title { margin-bottom: 0.5rem; font-size: 1.2rem; }
.approach__text { color: var(--text-muted); font-size: 0.95rem; }

/* ==========================================================================
   12. PROCESS
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}
.step {
  position: relative;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--violet);
  font-weight: 800;
  font-size: 1.05rem;
}
.step__title { margin-bottom: 0.45rem; font-size: 1.12rem; }
.step__text { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; }

/* ==========================================================================
   13. STATISTICS
   ========================================================================== */
.stats__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.5rem 1rem;
  padding: clamp(2.25rem, 5vw, 3.25rem);
  border-radius: var(--radius-lg);
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat__value {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(2.2rem, 1.6rem + 2.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat__label { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; font-weight: 500; }

/* ==========================================================================
   14. CALL TO ACTION
   ========================================================================== */
.cta__panel {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 130% at 50% 0%, var(--grad-soft), transparent 70%);
}
.cta__panel > * { position: relative; }
.cta__title { font-size: clamp(1.9rem, 1.3rem + 2.5vw, 2.9rem); margin-bottom: 1rem; }
.cta__text { max-width: 56ch; margin: 0 auto 2rem; color: var(--text-muted); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }

/* ==========================================================================
   15. CONTACT & FORM
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact__aside { display: flex; flex-direction: column; gap: 1.4rem; }
.contact__aside-title { font-size: 1.25rem; }
.contact__list { display: flex; flex-direction: column; gap: 0.9rem; }
.contact__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.contact__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--violet);
}
.contact__icon svg { width: 20px; height: 20px; }

.contact__promo {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-color);
}
.contact__promo p { font-size: 0.98rem; margin-bottom: 0.4rem; }
.contact__promo strong { font-size: 1.05rem; }

/* --- Form --- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field__label { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.req { color: var(--pink); }

.field__input {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  border: 1.5px solid var(--border-strong);
  background: var(--surface-tint);
  color: var(--text);
  font-size: 0.97rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field__input::placeholder { color: #a99fb8; }
.field__input:hover { border-color: rgba(124, 58, 237, 0.4); }
.field__input:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field__input--area { resize: vertical; min-height: 140px; line-height: 1.6; }

.field.has-error .field__input {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}
.field__error { display: none; color: var(--danger); font-size: 0.83rem; font-weight: 500; }
.field.has-error .field__error { display: block; }
.field__hint { color: var(--text-dim); font-size: 0.78rem; text-align: right; }

.btn--submit { margin-top: 0.3rem; }
.btn--submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }

.spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn--submit.is-loading .spinner { display: block; }
.btn--submit.is-loading .btn__label { opacity: 0.75; }
@keyframes spin { to { rotate: 360deg; } }

.form__status {
  display: none;
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
}
.form__status.is-visible { display: block; }
.form__status.is-success {
  border: 1px solid rgba(5, 150, 105, 0.35);
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
}
.form__status.is-error {
  border: 1px solid rgba(225, 29, 72, 0.35);
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
}
.form__legal { color: var(--text-dim); font-size: 0.78rem; text-align: center; }

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
}
.footer__brand .brand { margin-bottom: 1rem; }
.footer__summary { max-width: 46ch; color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }
.footer__heading {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.footer__nav ul, .footer__contact ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__nav a { color: var(--text-muted); font-size: 0.93rem; transition: color var(--dur) var(--ease); }
.footer__nav a:hover { color: var(--violet); }
.footer__contact li { font-size: 0.93rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ==========================================================================
   17. SCROLL REVEAL
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { order: -1; max-width: 560px; margin-inline: auto; width: 100%; }
  .approach { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: var(--gutter);
    right: var(--gutter);
    padding: 0.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav__link { display: block; padding: 0.8rem 1rem; border-radius: 14px; text-align: left; font-size: 1rem; }
  .nav__link--cta { margin-left: 0; margin-top: 0.35rem; text-align: center; }
}

@media (max-width: 520px) {
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .chip--speed { left: 0; top: 6%; }
  .chip--rank { right: 0; bottom: 8%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ==========================================================================
   19. REDUCED MOTION & PRINT
   ========================================================================== */
@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;
  }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .approach__item:hover, .step:hover { transform: none; }
}

@media (forced-colors: active) {
  .card, .approach__item, .step, .form, .btn { border: 1px solid CanvasText; }
  .grad-text, .approach__num { color: CanvasText; -webkit-text-fill-color: CanvasText; }
}

@media print {
  .bg-fx, .site-header, .chip, .nav-toggle, .hero__visual { display: none; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}
