:root {
  --bg: #050b12;
  --bg-soft: #081723;
  --panel: rgba(9, 24, 36, 0.72);
  --panel-strong: rgba(13, 35, 52, 0.92);
  --glass: rgba(255, 255, 255, 0.065);
  --line: rgba(158, 230, 255, 0.22);
  --line-strong: rgba(128, 224, 255, 0.55);
  --text: #f7fcff;
  --muted: #b9cbd6;
  --ice: #8ce9ff;
  --ice-strong: #19c7ff;
  --blue: #0078bd;
  --deep-blue: #003a64;
  --green: #18d762;
  --white: #ffffff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 28px rgba(25, 199, 255, .38), 0 0 80px rgba(0, 120, 189, .25);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(25, 199, 255, 0.23), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(0, 120, 189, 0.28), transparent 32rem),
    radial-gradient(circle at 60% 88%, rgba(24, 215, 98, 0.08), transparent 28rem),
    linear-gradient(180deg, #081723 0%, #050b12 45%, #020508 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -5;
  pointer-events: none;
  background: conic-gradient(from 130deg at 50% 50%, transparent, rgba(140,233,255,.08), transparent, rgba(0,120,189,.10), transparent);
  animation: auroraSpin 18s linear infinite;
  filter: blur(8px);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }
strong { color: var(--text); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ice);
  color: #00121d;
  padding: .8rem 1rem;
  border-radius: 999px;
  z-index: 30;
}
.skip-link:focus { left: 12px; }
.section-shell { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }

.snow-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -10vh;
  color: rgba(255,255,255,.82);
  text-shadow: 0 0 12px rgba(140,233,255,.75);
  animation: snowFall linear infinite;
  opacity: .7;
}
.aurora {
  position: fixed;
  inset: -15% -8% auto;
  height: 56vh;
  z-index: -3;
  background: radial-gradient(ellipse at 50% 0%, rgba(140,233,255,.21), transparent 52%);
  filter: blur(28px);
  pointer-events: none;
  animation: breathe 7s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 9, 14, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(158, 230, 255, 0.16);
}
.nav {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(140, 233, 255, 0.34);
  box-shadow: var(--glow);
}
.brand strong { display: block; font-size: 1.05rem; letter-spacing: .03em; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: .45rem; }
.nav-menu a {
  color: rgba(247, 252, 255, 0.84);
  padding: .72rem .84rem;
  border-radius: 999px;
  transition: .2s ease;
  font-weight: 850;
  font-size: .91rem;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.nav-menu .nav-cta {
  color: #00131d;
  background: linear-gradient(135deg, #e9fbff 0%, var(--ice) 35%, var(--ice-strong) 72%, #0094d8 100%);
  box-shadow: 0 14px 34px rgba(25, 199, 255, 0.30);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 15px;
  color: var(--white);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 5px auto; border-radius: 2px; }

.hero { padding: 92px 0 34px; position: relative; }
.hero::before {
  content: "✳";
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2));
  top: 34px;
  color: rgba(140,233,255,.18);
  font-size: clamp(7rem, 17vw, 18rem);
  line-height: 1;
  transform: rotate(-18deg);
  filter: blur(.4px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.1rem; }
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .78rem;
  border: 1px solid rgba(140,233,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dff8ff;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.hero-badges span::before { content: "❄"; color: var(--ice); }
.eyebrow, .mini-label {
  color: var(--ice);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  margin: 0 0 1rem;
}
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1 { max-width: 760px; font-size: clamp(2.7rem, 5.6vw, 5.2rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4.7vw, 4.1rem); letter-spacing: -.05em; }
h3 { font-size: 1.22rem; letter-spacing: -.02em; }
.frost-word {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(140,233,255,.40), 0 0 55px rgba(25,199,255,.30);
}
.frost-word::after {
  content: "";
  position: absolute;
  left: .03em;
  right: .03em;
  bottom: .03em;
  height: .12em;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  border-radius: 999px;
  animation: shine 3.8s ease-in-out infinite;
}
.hero-text { max-width: 720px; font-size: clamp(1.06rem, 1.6vw, 1.32rem); margin: 1.55rem 0 0; }
.hero-actions, .trust-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 54px;
  padding: .92rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px) scale(1.015); }
.button.primary {
  color: #00131d;
  background: linear-gradient(135deg, #f2fcff 0%, #a9efff 22%, var(--ice-strong) 55%, #0082c8 100%);
  box-shadow: 0 20px 50px rgba(25, 199, 255, 0.32), inset 0 1px 0 rgba(255,255,255,.55);
}
.button.ghost { border-color: var(--line); background: rgba(255,255,255,.055); color: var(--white); }
.button.small { min-height: 44px; padding: .72rem 1rem; font-size: .92rem; }
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
  border-radius: 999px;
  padding: .64rem .88rem;
  font-weight: 850;
  font-size: .9rem;
  box-shadow: inset 0 0 20px rgba(140,233,255,.025);
}
.trust-row span::before { content: "✦ "; color: var(--ice); }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.orbit-card {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 36px;
  border: 1px solid rgba(140, 233, 255, .30);
  background:
    linear-gradient(180deg, rgba(14, 37, 54, 0.70), rgba(4, 12, 18, .96)),
    radial-gradient(circle at 50% 20%, rgba(140,233,255,.24), transparent 60%);
  padding: 1rem;
  box-shadow: var(--shadow), var(--glow);
  animation: floaty 5.8s ease-in-out infinite;
}
.orbit-card::before, .orbit-card::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 44px;
  border: 1px dashed rgba(140,233,255,.25);
  animation: orbit 16s linear infinite;
}
.orbit-card::after { inset: -34px; animation-duration: 22s; animation-direction: reverse; opacity: .55; }
.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  filter: saturate(1.08) contrast(1.05);
}
.orbit-ring {
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.22) 35%, transparent 52%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: iceSweep 4.6s ease-in-out infinite;
}
.pop-bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(140,233,255,.12));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0,0,0,.32), 0 0 28px rgba(25,199,255,.22);
  font-weight: 1000;
  letter-spacing: -.03em;
}
.bubble-one { right: -18px; top: 42px; width: 104px; height: 104px; color: #fff; font-size: 1.45rem; line-height: .85; transform: rotate(4deg); }
.bubble-two { left: -22px; bottom: 44px; padding: .9rem 1rem; color: #00131d; background: linear-gradient(135deg, #f7fdff, #8ce9ff); transform: rotate(-6deg); }

.quick-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 18px;
  padding: 1rem;
  border: 1px solid rgba(140,233,255,.25);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
}
.quick-contact strong { display: block; font-size: clamp(1rem, 1.8vw, 1.35rem); }
.quick-contact .mini-label { display: block; margin-bottom: .25rem; }
.quick-actions { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: flex-end; }

.wow-strip, .team-strip, .use-list, .cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(140,233,255,.12), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.wow-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 26px;
  padding: clamp(1.25rem, 3.4vw, 2.4rem);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  position: relative;
}
.wow-strip::after {
  content: "WOW";
  position: absolute;
  right: -20px;
  bottom: -34px;
  color: rgba(255,255,255,.04);
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 1000;
  letter-spacing: -.08em;
}
.wow-copy { position: relative; z-index: 1; }
.wow-meter { position: relative; z-index: 1; display: grid; gap: .8rem; }
.wow-meter div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: .85rem;
  padding: .9rem;
  border: 1px solid rgba(140,233,255,.18);
  border-radius: 20px;
  background: rgba(0,0,0,.18);
}
.wow-meter span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #00131d;
  background: linear-gradient(135deg, #ffffff, var(--ice));
  font-weight: 1000;
}

.split-section, .benefits, .gallery, .process, .contact { padding: 96px 0; }
.section-heading { max-width: 830px; margin-bottom: 2.2rem; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow) { font-size: 1.05rem; }
.service-grid, .benefit-grid, .process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card, .benefit-card, .process-step, .contact-form, .contact-info {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0,0,0,.20);
  backdrop-filter: blur(20px);
}
.service-card {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  min-height: 260px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(140,233,255,.18), transparent 38%);
  opacity: 0;
  transition: opacity .24s ease;
}
.service-card:hover, .showcase-card:hover { transform: translateY(-7px) rotate(-.35deg); border-color: rgba(140, 233, 255, .55); box-shadow: var(--shadow), 0 0 42px rgba(25,199,255,.12); }
.service-card:hover::before { opacity: 1; }
.icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(140, 233, 255, .18), rgba(0, 120, 189, .24));
  border: 1px solid var(--line);
  font-size: 1.55rem;
  margin-bottom: 1.1rem;
  box-shadow: inset 0 0 26px rgba(140,233,255,.08);
}
.service-card p, .process-step p { margin-bottom: 0; }
.service-card a { display: inline-flex; margin-top: 1.1rem; color: var(--ice); font-weight: 950; position: relative; }
.service-card a::after { content: " →"; }

.benefits {
  position: relative;
  border-block: 1px solid rgba(158, 230, 255, 0.10);
  background:
    radial-gradient(circle at 8% 30%, rgba(25,199,255,.17), transparent 32rem),
    radial-gradient(circle at 90% 80%, rgba(0,120,189,.15), transparent 30rem);
}
.benefit-card { border-radius: 22px; padding: 1.25rem; transition: transform .2s ease, background .2s ease; }
.benefit-card:hover { transform: translateY(-4px); background: rgba(12, 42, 60, .88); }
.benefit-card strong { display: block; font-size: 1.13rem; margin-bottom: .5rem; }
.benefit-card strong::before { content: "❄ "; color: var(--ice); }
.benefit-card span { color: var(--muted); line-height: 1.6; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}
.showcase-card {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255,255,255,.045);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.showcase-card.large { grid-column: span 2; grid-row: span 2; min-height: 580px; }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) contrast(1.02); }
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,5,8,.86), transparent 56%);
}
.showcase-text { position: absolute; z-index: 2; left: 1rem; right: 1rem; bottom: 1rem; }
.showcase-text span {
  display: inline-flex;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  margin-bottom: .65rem;
}
.showcase-text strong { display: block; font-size: clamp(1rem, 2vw, 1.55rem); letter-spacing: -.03em; text-shadow: 0 2px 14px rgba(0,0,0,.55); }

.use-list {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius);
}
.use-list ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.use-list li {
  position: relative;
  padding: .9rem .9rem .9rem 2.25rem;
  border-radius: 17px;
  background: rgba(255,255,255,.055);
  color: var(--muted);
  line-height: 1.5;
}
.use-list li::before { content: "❄"; position: absolute; left: .85rem; color: var(--ice); }

.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-step { border-radius: var(--radius); padding: 1.2rem; }
.process-step span {
  display: inline-flex;
  color: var(--ice);
  font-weight: 1000;
  letter-spacing: .12em;
  margin-bottom: 1.3rem;
}

.cta-section { padding: 24px 0 96px; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: calc(var(--radius) + 12px);
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background:
    linear-gradient(135deg, rgba(140,233,255,.18), rgba(0,120,189,.20)),
    var(--panel-strong);
  overflow: hidden;
  position: relative;
}
.cta-card::after { content: "❄"; position: absolute; right: 7%; bottom: -2.4rem; font-size: 11rem; color: rgba(255,255,255,.055); }
.cta-card p { max-width: 720px; margin-bottom: 0; }
.cta-card > * { position: relative; z-index: 1; }

.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 1rem; align-items: stretch; }
.contact-info, .contact-form { border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); }
.lead { font-size: 1.15rem; margin-top: .75rem; }
.contact-cards { display: grid; gap: .75rem; margin-top: 1.5rem; }
.contact-cards a {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 19px;
  padding: 1rem;
  transition: .2s ease;
}
.contact-cards a:hover { border-color: rgba(140,233,255,.52); transform: translateY(-3px); background: rgba(140,233,255,.08); }
.contact-cards span { display: block; color: var(--muted); font-size: .88rem; }
.contact-cards strong { display: block; margin-top: .28rem; }
.note, .form-hint { font-size: .92rem; }
.contact-form { display: grid; gap: 1rem; }
label { display: grid; gap: .45rem; color: var(--text); font-weight: 850; }
input, select, textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: .95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select option { background: #0d1f2b; color: var(--text); }
textarea { resize: vertical; min-height: 138px; }
input:focus, select:focus, textarea:focus { border-color: var(--ice); box-shadow: 0 0 0 4px rgba(140, 233, 255, .13); background: rgba(255,255,255,.075); }
.form-hint { margin: 0; }

.footer { border-top: 1px solid var(--line); background: rgba(3, 8, 13, .82); padding: 38px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.4rem; }
.footer p { margin: 1rem 0 0; }
.footer strong { display: block; margin-bottom: .7rem; }
.footer a:not(.brand) { display: block; color: var(--muted); margin: .38rem 0; }
.footer a:hover { color: var(--white); }
.footer-brand img { width: 52px; height: 52px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(158,230,255,.10); margin-top: 28px; padding-top: 20px; color: var(--muted); }

.legal-main { padding: 72px 0; }
.legal-card { border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius); padding: clamp(1.2rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.legal-card h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); margin-top: 2rem; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.placeholder { border: 1px dashed rgba(140,233,255,.48); border-radius: 16px; padding: 1rem; background: rgba(140,233,255,.07); color: var(--text); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .68s ease, transform .68s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes snowFall { to { transform: translate3d(var(--drift, 0px), 112vh, 0) rotate(360deg); } }
@keyframes auroraSpin { to { transform: rotate(360deg); } }
@keyframes breathe { 0%, 100% { opacity: .62; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes shine { 0%, 100% { opacity: .34; transform: scaleX(.66); } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(.2deg); } 50% { transform: translateY(-14px) rotate(-.5deg); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes iceSweep { 0%, 100% { transform: translateX(-45%) skewX(-12deg); opacity: 0; } 40%, 60% { opacity: .65; } 75% { transform: translateX(45%) skewX(-12deg); opacity: 0; } }

@media (max-width: 1060px) {
  .nav-toggle { display: inline-block; }
  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(4, 12, 18, .97);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .hero { padding-top: 62px; }
  .hero-grid, .contact-grid, .use-list, .wow-strip { grid-template-columns: 1fr; }
  .service-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-contact, .cta-card { align-items: stretch; flex-direction: column; }
  .quick-actions { justify-content: flex-start; }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-card.large { grid-column: span 2; min-height: 430px; }
}

@media (max-width: 680px) {
  .section-shell, .nav { width: min(100% - 24px, var(--max)); }
  .brand small { display: none; }
  .hero { padding-top: 46px; }
  .hero-visual { min-height: auto; margin-top: 2rem; }
  .orbit-card { width: min(100%, 360px); }
  .bubble-one { right: -8px; top: 18px; width: 86px; height: 86px; font-size: 1.16rem; }
  .bubble-two { left: -8px; bottom: 24px; }
  .hero-actions .button, .quick-contact .button, .cta-card .button { width: 100%; }
  .quick-actions { width: 100%; }
  .service-grid, .benefit-grid, .showcase-grid, .process-grid, .footer-grid, .use-list ul { grid-template-columns: 1fr; }
  .showcase-card.large { grid-column: span 1; min-height: 300px; }
  .showcase-card { min-height: 260px; }
  .split-section, .benefits, .gallery, .process, .contact { padding: 72px 0; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .snow-stage { display: none; }
}
