/* ============================================
   Djonev Solutions — stylesheet (final)
   ============================================ */

:root {
  --bg: #0B0A2E;
  --bg-raised: #100F3C;
  --white: #FFFFFF;

  --royal: #4169E1;
  --royal-light: #7B9AF5;

  --text: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.48);
  --heading: #FFFFFF;

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;

  --r-btn: 999px;
  --r-img: 12px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection { background: var(--royal); color: white; }

/* ---------- View transitions ---------- */

@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.26s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(root) { animation-name: vt-out; }
::view-transition-new(root) { animation-name: vt-in; }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; } }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
}

/* ---------- Container ---------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 46, 0.9);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img { height: 33px; width: auto; transition: opacity var(--transition); }
.brand:hover img { opacity: 0.8; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}

.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: white;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  font-size: 0.89rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: white; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  font-size: 0.89rem;
  font-weight: 600;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:active { transform: scale(0.98); }

.btn-white { background: white; color: #14132A; }
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: white;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.89rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 2px;
  transition: color var(--transition);
}

.btn-link:hover { color: white; }

.btn-link::after {
  content: '\2192';
  transition: transform 0.3s var(--ease-out);
}
.btn-link:hover::after { transform: translateX(6px); }

/* ============================================
   ANIMATION SYSTEM
   ============================================ */

[data-anim] { will-change: opacity, transform; }

[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-anim="fade-up"].in-view { opacity: 1; transform: translateY(0); }

[data-anim="slide-left"] {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-anim="slide-left"].in-view { opacity: 1; transform: translateX(0); }

[data-anim="scale-in"] {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-anim="scale-in"].in-view { opacity: 1; transform: scale(1); }

[data-anim="wipe"] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s var(--ease-out);
}
[data-anim="wipe"].in-view { clip-path: inset(0 0 0 0); }

[data-anim="rise"] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
[data-anim="rise"].in-view { opacity: 1; transform: translateY(0); }

[data-stagger].in-view > *:nth-child(1) { transition-delay: 0.03s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: 0.17s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: 0.24s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: 0.31s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: 0.38s; }

/* ---------- Hero (home) ---------- */

.hero {
  padding: 84px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 700px; }

.hero h1 { margin-bottom: 22px; }

.hero .lead {
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade 0.8s var(--ease-out) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.17s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }

@keyframes hero-fade { to { opacity: 1; transform: translateY(0); } }

.hero-mark {
  position: absolute;
  right: max(40px, 5vw);
  top: 0; bottom: 0;
  width: min(380px, 34vw);
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  transform: translateY(calc(var(--parallax, 0) * 1px));
}

.hero-mark-inner {
  position: relative;
  width: 100%;
  height: 62%;
  max-height: 310px;
}

.mark-bar {
  position: absolute;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(101, 133, 240, 0.45) 0%, rgba(160, 185, 255, 0.7) 100%);
  transform-origin: center bottom;
  transform: scaleY(0);
  opacity: 0;
  animation: mark-rise 1.1s var(--ease-out) forwards;
}

.mark-bar-1 { width: 11%; height: 42%; left: 16%; top: 6%; animation-delay: 0.4s; }
.mark-bar-2 { width: 20%; height: 92%; left: 33%; top: 6%; animation-delay: 0.55s; }
.mark-bar-3 { width: 11%; height: 26%; left: 60%; top: 12%; animation-delay: 0.7s; }
.mark-bar-4 { width: 17%; height: 62%; left: 77%; top: 22%; animation-delay: 0.85s; }

@keyframes mark-rise { to { transform: scaleY(1); opacity: 1; } }

/* ---------- Sections ---------- */

.section { padding: 68px 0; }
.section-raised { background: var(--bg-raised); }

/* ---------- HOME: services rows ---------- */

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 34px;
}

.svc-head h2 { margin: 0; }

.svc-list { border-top: 1px solid var(--line); }

.svc-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 22px 12px;
  margin: 0 -12px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: background var(--transition);
}

.svc-item:hover { background: var(--bg-raised); }

.svc-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.svc-item h3 { font-size: 1.25rem; margin-bottom: 3px; }

.svc-item p { font-size: 0.92rem; color: var(--text-dim); }

.svc-arrow {
  font-size: 1.2rem;
  color: var(--text-dim);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform 0.3s var(--ease-out), color var(--transition);
}

.svc-item:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
  color: white;
}

/* ---------- HOME: industries (dark band) ---------- */

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.ind-cell {
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
  transition: border-color 0.4s ease;
}

.ind-cell:hover { border-top-color: rgba(255, 255, 255, 0.45); }

.ind-cell .idx {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 12px;
}

.ind-cell h3 { font-size: 1.03rem; margin-bottom: 8px; }

.ind-cell p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ---------- HOME: approach band ---------- */

.approach-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.1vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--heading);
  max-width: 860px;
  margin-bottom: 40px;
}

.approach-statement em {
  font-style: normal;
  color: var(--royal-light);
}

.approach-line {
  display: flex;
  border-top: 1px solid var(--line);
}

.approach-line > div { flex: 1; padding: 24px 32px 0 0; }

.approach-line > div + div {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.approach-line h3 { font-size: 0.97rem; margin-bottom: 7px; }

.approach-line p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---------- CTA: email as centerpiece ---------- */

.cta {
  border-top: 1px solid var(--line);
  padding: 72px 0 80px;
}

.cta .label { display: block; margin-bottom: 20px; }

.cta-mail {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--heading);
  padding-bottom: 6px;
}

.cta-mail::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--royal-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}

.cta-mail:hover::after { transform: scaleX(1); }

.cta-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px 32px;
  flex-wrap: wrap;
}

.cta-row .cta-alt {
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.cta-row a.cta-alt:hover { color: white; }

/* ---------- INNER PAGES: hero ---------- */

.page-hero { padding: 64px 0 48px; }

.page-hero .label { display: block; margin-bottom: 18px; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin-bottom: 18px;
}

.page-hero .lead { max-width: 620px; }

.page-hero-content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade 0.7s var(--ease-out) forwards;
}
.page-hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero-content > *:nth-child(3) { animation-delay: 0.27s; }

/* ---------- SERVICES: media blocks ---------- */

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.svc-block:first-of-type { border-top: none; padding-top: 24px; }

.svc-block.flip .svc-media { order: 2; }

.svc-media {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.82) contrast(1.05);
}

.svc-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(65, 105, 225, 0.26) 0%, rgba(11, 10, 46, 0.4) 100%);
  mix-blend-mode: multiply;
}

.svc-copy .label {
  display: block;
  margin-bottom: 14px;
  color: var(--royal-light);
}

.svc-copy h2 { margin-bottom: 14px; }

.svc-copy p {
  font-size: 0.97rem;
  margin-bottom: 20px;
  max-width: 470px;
}

.svc-includes {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  max-width: 470px;
}

.svc-includes .label {
  display: block;
  margin-bottom: 4px;
}

/* ---------- SERVICES: process ---------- */

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-top: 38px;
}

.process::before {
  content: '';
  position: absolute;
  top: 5px; left: 0;
  height: 2px; width: 100%;
  background: var(--line);
}

.process::after {
  content: '';
  position: absolute;
  top: 5px; left: 0;
  height: 2px; width: 0;
  background: var(--royal-light);
  transition: width 1.5s var(--ease-out) 0.2s;
}

.process.in-view::after { width: 100%; }

.process-step .idx {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--royal-light);
  display: block;
  margin-bottom: 10px;
}

.process-step h3 { font-size: 0.97rem; margin-bottom: 6px; }

.process-step p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---------- ABOUT: statement + editorial rows ---------- */

.statement {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.9vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--heading);
  max-width: 860px;
}

.statement em { font-style: normal; color: var(--royal-light); }

.row-list { border-top: 1px solid var(--line); }

.about-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.about-row .label { padding-top: 4px; }

.about-row p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 640px;
}

.about-row p + p { margin-top: 10px; }

/* ---------- ABOUT: tech inline ---------- */

.tech-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 36px;
}

.tech-inline .label { margin-right: 6px; }

.tech-inline span:not(.label) {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.tech-inline span:not(.label):hover { color: white; }

/* ---------- CONTACT ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-details { display: grid; margin-top: 8px; }

.cdetail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.cdetail .value {
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 500;
  color: white;
}

.cdetail a { transition: color var(--transition); }
.cdetail a:hover { color: var(--royal-light); }

.brief-hint {
  margin-top: 36px;
  border-left: 2px solid var(--royal-light);
  padding-left: 20px;
}

.brief-hint .label { display: block; margin-bottom: 9px; }

.brief-hint li {
  list-style: none;
  font-size: 0.87rem;
  color: var(--text-dim);
  padding: 2px 0;
}

/* Editorial underline form */
.contact-form { padding-top: 8px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-group { margin-bottom: 30px; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.form-group:focus-within label { color: var(--royal-light); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 0 10px;
  font-family: inherit;
  font-size: 1rem;
  color: white;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.25); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--royal-light);
}

.form-group textarea { min-height: 96px; resize: vertical; }

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.77rem;
  color: var(--text-dim);
  max-width: 300px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 24px;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand img { height: 34px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-dim);
  max-width: 290px;
  line-height: 1.6;
}

.footer-col .label { display: block; margin-bottom: 16px; }

.footer-col ul { list-style: none; display: grid; gap: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--text);
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-contact-item { margin-bottom: 12px; }
.footer-contact-item .label { margin-bottom: 2px; }

.footer-contact-item .value { font-size: 0.88rem; color: var(--text); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
  color: var(--text-dim);
}

/* ---------- Focus ---------- */

a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--royal-light);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 66px; right: 0; left: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line);
    padding: 22px 32px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease-out);
  }

  .site-nav.open { transform: translateX(0); }
  .nav-links { flex-direction: column; gap: 2px; }
  .nav-links a { padding: 10px 0; font-size: 1rem; }
  .nav-toggle { display: inline-flex; }

  .hero { padding: 52px 0 60px; }
  .hero-mark { width: 180px; right: 18px; opacity: 0.5; }

  .section { padding: 52px 0; }
  .cta { padding: 56px 0; }

  .svc-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 26px; }

  .svc-item { grid-template-columns: 1fr auto; gap: 14px; padding: 19px 8px; }
  .svc-num { display: none; }

  .ind-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .approach-line { flex-direction: column; }
  .approach-line > div { padding: 20px 0 0 0 !important; border-left: none !important; border-top: 1px solid var(--line); margin-top: 20px; }
  .approach-line > div:first-child { border-top: none; margin-top: 0; }


  .svc-block { grid-template-columns: 1fr; gap: 26px; padding: 38px 0; }
  .svc-block.flip .svc-media { order: 0; }

  .process { grid-template-columns: 1fr 1fr; gap: 28px; }

  .about-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 560px) {
  .container, .header-inner, .hero-inner, .footer-grid, .footer-bottom {
    padding-left: 20px; padding-right: 20px;
  }
  .cta-mail { font-size: 1.32rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .ind-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-content > *, .page-hero-content > * { opacity: 1; transform: none; }
  .mark-bar { opacity: 1; transform: scaleY(1); }
  [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .process::after { width: 100%; }
}
