/* ==========================================================================
   LavTech Computers — new interactive site
   Palette: deep navy-black + LavTech brand orange (#e06a38, from the supplied logo)
   ========================================================================== */

:root {
  --bg: #07090f;
  --bg-2: #0a0d14;
  --card: #0e1219;
  --card-2: #11161f;
  --line: rgba(255, 255, 255, .08);
  --text: #eef1f6;
  --muted: #9aa3b2;
  --accent: #e06a38;            /* LavTech brand orange (from the logo) */
  --accent-2: #ff9a66;
  --accent-grad: linear-gradient(135deg, #e06a38, #b84a24);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --header-h: 72px;
  color-scheme: dark;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 700;
}

.container {
  width: min(1180px, 100% - 44px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------- buttons -------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 27px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-accent {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(224, 106, 56, .32);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(224, 106, 56, .42);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .22);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(224, 106, 56, .1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .11); }

.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn-block { width: 100%; }

/* -------------------------------- header -------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: var(--header-h);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 9, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-img {
  height: 46px;
  width: auto;
  display: block;
}
.footer-brand .brand-img { height: 70px; }

.main-nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, .07); }

.header-actions { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------- intro / laptop ----------------------------- */

.intro {
  position: relative;
  height: 400vh;
  background: var(--bg);
}

.intro-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.intro-bg, .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.orb-1 {
  width: 55vw;
  height: 55vw;
  left: -18vw;
  bottom: -26vw;
  background: radial-gradient(circle, rgba(224, 106, 56, .5), transparent 65%);
}
.orb-2 {
  width: 44vw;
  height: 44vw;
  right: -14vw;
  top: -18vw;
  background: radial-gradient(circle, rgba(43, 108, 255, .34), transparent 65%);
}

.scene {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  perspective-origin: 50% 45%;
}

.laptop-pos {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transform: translate(var(--dx, 0px), var(--dy, 0px)) scale(calc(var(--lS, 1) * var(--cam, 1)));
}

.laptop {
  position: absolute;
  width: 880px;
  height: 560px;
  margin: -280px 0 0 -440px;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt, -46deg));
}

/* --- lid --- */
.lid {
  position: absolute;
  left: 0;
  top: -560px;
  width: 880px;
  height: 560px;
  transform-style: preserve-3d;
  transform-origin: bottom center;
  transform: rotateX(var(--lid, -90deg));
}

.lid-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  backface-visibility: hidden;
}
.lid-front {
  transform: translateZ(8px);
  background:
    linear-gradient(160deg, #31353d 0%, #24272e 45%, #1c1f25 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.lid-back {
  /* Faces outward exactly like rotateY(180deg) would, but rotateX keeps the
     cover's content upright: the closed-lid pose mirrors content vertically,
     so a rotateY plate would render the wordmark upside-down at p=0. */
  transform: translateZ(-8px) rotateX(180deg);
  background:
    radial-gradient(120% 90% at 50% 0%, #4a505b 0%, #363b44 40%, #2a2e36 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
}
.lid-wordmark {
  display: block;
  width: min(420px, 52%);
}
.lid-wordmark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .45));
}

/* screen inside lid */
.screen {
  position: absolute;
  inset: 15px;
  border-radius: 15px;
  background: #04060a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .8);
}
.screen-cam {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: #1b2432;
  box-shadow: inset 0 0 2px #000;
}
.screen-inner {
  position: absolute;
  inset: 14px 6px 6px;
  overflow: hidden;
  background: var(--bg);
}
.screen-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--docW, 100vw);
  height: var(--docH, 100vh);
  transform: translate(-50%, -50%) scale(var(--fit, .2));
  transform-origin: center;
  background: var(--bg);
  opacity: var(--contentO, 0);
  will-change: transform;
}
.screen-sheen {
  position: absolute;
  inset: 0;
  opacity: var(--sheen, 1);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .03) 26%, transparent 46%),
    radial-gradient(130% 90% at 72% 14%, rgba(255, 255, 255, .07), transparent 55%);
  pointer-events: none;
}

/* --- hinge --- */
.hinge {
  position: absolute;
  left: 4px;
  top: 0;
  width: 872px;
  height: 16px;
  transform: rotateX(-90deg);
  border-radius: 8px;
  background: linear-gradient(#0b0d12, #1a1e25 45%, #0a0c10);
}

/* --- base --- */
.base {
  position: absolute;
  left: 0;
  top: 0;
  width: 880px;
  height: 560px;
  transform-style: preserve-3d;
  transform-origin: top center;
  transform: rotateX(90deg);
}
.deck {
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 22px 22px;
  background:
    radial-gradient(140% 70% at 50% 0%, #3a3f48 0%, #2c3037 38%, #262a31 70%, #22252c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.deck-under {
  position: absolute;
  inset: 0;
  transform: translateZ(-16px);
  border-radius: 14px;
  background: #0a0c10;
}
.base-front {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  transform-origin: top center;
  transform: rotateX(-90deg);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(#2b2f36, #14171c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
}
.keyboard {
  position: absolute;
  top: 54px;
  left: 74px;
  right: 74px;
  height: 246px;
  border-radius: 9px;
  background-color: #14171d;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(0, 0, 0, .6) 46px 51px),
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(0, 0, 0, .6) 40px 45px);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .55),
    inset 0 2px 6px rgba(0, 0, 0, .6);
}
.trackpad {
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 296px;
  height: 184px;
  margin-left: -148px;
  border-radius: 11px;
  background: linear-gradient(160deg, #2b2f37, #262a31);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .07),
    inset 0 -1px 0 rgba(0, 0, 0, .5);
}

/* --- intro HUD --- */
.intro-hud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.5vh;
  text-align: center;
  opacity: var(--hudO, 1);
  z-index: 3;
  pointer-events: none;
}
.hud-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  padding-left: .42em;
}
.hud-sub {
  margin-top: 8px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue {
  margin: 12px auto 0;
  width: 30px;
  height: 30px;
  color: var(--accent-2);
  animation: cue 1.7s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* --------------------------------- hero --------------------------------- */

.hero {
  position: relative;
  min-height: var(--vph, 100vh);
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 60% at 50% 42%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 60% at 50% 42%, #000 30%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  text-align: center;
  max-width: 960px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.accent-text {
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 60%, #ff8a5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: var(--muted);
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: clamp(34px, 6vh, 58px);
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-trust strong {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
}
.hero-trust span {
  font-size: .82rem;
  color: var(--muted);
}

/* ------------------------------- sections ------------------------------- */

.section {
  position: relative;
  padding: clamp(76px, 11vh, 140px) 0;
  scroll-margin-top: var(--header-h);
}
.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}
.section-lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

/* ------------------------------- services ------------------------------- */

.cards {
  margin-top: clamp(38px, 6vh, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 28px 26px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .28s, border-color .28s, box-shadow .28s;
  overflow: hidden;
  cursor: pointer;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -40% -65% -40%;
  height: 130%;
  background: radial-gradient(closest-side, rgba(224, 106, 56, .16), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.card:hover, .card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(224, 106, 56, .55);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(224, 106, 56, .16);
}
.card:hover::after { opacity: 1; }

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent-2);
  background: rgba(224, 106, 56, .12);
  border: 1px solid rgba(224, 106, 56, .35);
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 {
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.card p {
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
}
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--accent-2);
}
.card-more svg { transition: transform .25s; }
.card:hover .card-more svg { transform: translateX(5px); }

/* in-card download button (Syncro agent) */
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: #fff;
  background: var(--accent-grad);
  border: 1px solid rgba(224, 106, 56, .55);
  box-shadow: 0 10px 24px rgba(224, 106, 56, .28);
  transition: transform .2s, box-shadow .2s;
}
.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(224, 106, 56, .4);
}
.card-cta:active { transform: translateY(1px) scale(.99); }

/* ---------------------------- service modal ----------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, .78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  animation: fade .25s ease;
}
.modal-card {
  position: relative;
  --mp: clamp(24px, 3vw, 38px);
  width: min(1040px, 100%);
  max-height: min(90vh, 960px);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: var(--mp);
  box-shadow: var(--shadow);
  animation: pop .3s cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(24px) scale(.97); } }

/* full-bleed illustration above the service details */
.modal-art {
  width: calc(100% + 2 * var(--mp));
  margin: calc(-1 * var(--mp)) calc(-1 * var(--mp)) 26px;
  height: clamp(200px, 30vh, 330px);
  object-fit: cover;
  object-position: center;
  border-radius: 24px 24px 14px 14px;
  background: #0b0f17;
  border-bottom: 1px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  transition: background .2s, transform .2s;
}
.modal-close:hover { background: rgba(224, 106, 56, .3); transform: rotate(90deg); }

.modal-card h3 {
  margin-top: 12px;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
}
.modal-desc {
  margin-top: 14px;
  color: var(--muted);
}
.modal-list {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 11px;
}
.modal-list li {
  position: relative;
  padding-left: 30px;
  font-size: .96rem;
  color: #c6ccd8;
}
.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(224, 106, 56, .2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9a66' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.modal-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ----------------------------- testimonials ----------------------------- */

.google-cta {
  margin-top: clamp(32px, 5vh, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 26px;
  background: linear-gradient(120deg, rgba(224, 106, 56, .1), rgba(255, 255, 255, .03));
  border: 1px solid rgba(224, 106, 56, .3);
  border-radius: var(--radius);
}
.google-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.gstars { display: inline-flex; gap: 3px; color: #ffb236; }
.google-cta-text p { color: #cfd5e0; font-size: .97rem; }

.quotes {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px;
}
.quote {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s, border-color .25s;
}
.quote:hover { transform: translateY(-4px); border-color: rgba(224, 106, 56, .4); }
.quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: .6;
  color: var(--accent);
  opacity: .85;
  height: 30px;
}
.quote blockquote {
  color: #c6ccd8;
  font-size: .97rem;
  flex: 1;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quote figcaption strong {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 600;
}
.quote figcaption span {
  color: var(--muted);
  font-size: .84rem;
}

/* -------------------------------- contact ------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}
.contact-info h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}
.contact-info .section-lede { margin-top: 14px; }

.info-cards {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s, transform .2s, background .2s;
}
a.info-card:hover {
  border-color: rgba(224, 106, 56, .55);
  transform: translateX(5px);
  background: var(--card-2);
}
.info-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent-2);
  background: rgba(224, 106, 56, .12);
  border: 1px solid rgba(224, 106, 56, .32);
}
.info-icon svg { width: 22px; height: 22px; }
.info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.info-text em {
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-text strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.quick-help {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.quick-help p {
  font-family: var(--font-head);
  font-size: .84rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.quick-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* form */
.form-wrap {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 3.4vw, 38px);
  box-shadow: var(--shadow);
}
.ticket-form { display: grid; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #b7bec9;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0a0d13;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  font-size: .96rem;
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: #5d6675; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 106, 56, .22);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #ff5062; }

.form-note {
  font-size: .83rem;
  color: var(--muted);
  text-align: center;
}

.form-success { text-align: center; padding: 14px 4px; }
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #4ade80;
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74, 222, 128, .4);
}
.success-icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.4rem; }
.form-success > p { color: var(--muted); margin-top: 10px; }
.success-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.success-fallback { margin-top: 18px; font-size: .86rem; }
.success-fallback a { color: var(--accent-2); text-decoration: underline; }

/* -------------------------------- footer -------------------------------- */

.site-footer {
  background: #05070b;
  border-top: 1px solid var(--line);
  padding-top: clamp(46px, 7vh, 70px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: .93rem;
  max-width: 340px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.footer-col a,
.footer-note {
  color: var(--muted);
  font-size: .93rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: #77808f;
  font-size: .85rem;
}

/* ------------------------------ reveal fx ------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.cards .card:nth-child(2), .quotes .quote:nth-child(2) { transition-delay: .08s; }
.cards .card:nth-child(3), .quotes .quote:nth-child(3) { transition-delay: .16s; }
.cards .card:nth-child(4), .quotes .quote:nth-child(4) { transition-delay: .24s; }
.cards .card:nth-child(5) { transition-delay: .32s; }

body.modal-open { overflow: hidden; }

/* ------------------------------ responsive ------------------------------ */

@media (max-width: 1080px) {
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 9, 15, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 18px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    margin-left: 0;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 6px; font-size: 1.02rem; border-radius: 0; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-actions { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .google-cta { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 20px; }
}

/* --------------------------- reduced motion ----------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-cue { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
