/* =========================================================
   Expedite Freight — Landing Page Styles
   Energetic gradient theme · Responsive · Beget-ready
   ========================================================= */

:root {
  /* Brand gradient palette */
  --c-orange: #ff7a18;
  --c-magenta: #ff2d9b;
  --c-violet: #7c3aed;
  --c-cyan: #22d3ee;

  --grad-brand: linear-gradient(105deg, #ff7a18 0%, #ff2d9b 48%, #7c3aed 100%);
  --grad-brand-soft: linear-gradient(105deg, #ff9a3c 0%, #ff4fae 50%, #9b5cf6 100%);
  --grad-text: linear-gradient(100deg, #ff9a3c 0%, #ff3d9e 45%, #a06bff 100%);

  /* Surfaces */
  --bg: #0b0b14;
  --bg-alt: #10101d;
  --bg-light: #f6f6fb;
  --bg-card: #15152540;
  --surface: #ffffff;

  /* Text */
  --ink: #0e0e18;
  --ink-soft: #4a4a5e;
  --paper: #f4f4f8;
  --paper-soft: #b9b9cc;

  --line: rgba(255, 255, 255, 0.10);
  --line-dark: rgba(20, 20, 40, 0.10);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-glow: 0 20px 60px -18px rgba(255, 45, 155, 0.45);
  --shadow-card: 0 24px 60px -30px rgba(6, 6, 20, 0.6);
  --container: 1200px;

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .25s ease; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
  background-size: 160% 160%;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 70px -18px rgba(255, 45, 155, 0.6); background-position: 100% 50%; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); transform: translateY(-3px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--line);
  padding: 11px 18px;
  font-size: .9rem;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(11, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  padding: 11px 0;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.9);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 11px; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: #fff; }
.brand-name-accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  margin-left: 2px;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-weight: 500; font-size: .96rem; color: var(--paper-soft);
  padding: 9px 14px; border-radius: 10px; transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-phone { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0b0b14 url("../assets/images/hero.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(11,11,20,.92) 0%, rgba(11,11,20,.6) 46%, rgba(124,58,237,.28) 100%),
    linear-gradient(to top, rgba(11,11,20,.96) 4%, rgba(11,11,20,0) 46%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(255,45,155,.6), transparent 70%); top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(124,58,237,.55), transparent 70%); bottom: -120px; left: -60px; animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(30px,-24px) scale(1.08);} }

.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.07); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6);} 70% { box-shadow: 0 0 0 10px rgba(74,222,128,0);} 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0);} }

.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem, 6.4vw, 4.7rem);
  line-height: 1.03; letter-spacing: -.03em; color: #fff; margin-bottom: 22px;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #d9d9e6; max-width: 610px; margin-bottom: 36px; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 60px); }
.stat { display: flex; flex-direction: column; }
.stat-num, .stat-suffix {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem);
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
}
.stat { position: relative; }
.stat-suffix { display: inline; }
.stat > .stat-num, .stat > .stat-suffix { display: inline-block; }
.stat-label { font-size: .88rem; color: var(--paper-soft); margin-top: 8px; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 20px;
  display: flex; justify-content: center;
}
.scroll-hint span { width: 4px; height: 8px; background: #fff; border-radius: 3px; margin-top: 7px; animation: scrolldot 1.7s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px);} 50% { opacity: 1;} 100% { opacity: 0; transform: translateY(12px);} }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--grad-brand); background-size: 200% 200%; animation: shift 8s ease infinite; }
@keyframes shift { 0%,100% { background-position: 0% 50%;} 50% { background-position: 100% 50%;} }
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px;
  padding: 16px 0; text-align: center;
}
.trust-item { font-size: .92rem; color: rgba(255,255,255,.95); font-weight: 500; }
.trust-item strong { font-weight: 800; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.5); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 120px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 68px); text-align: center; }
.section-tag {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-magenta); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; color: #fff;
}
.section-lead { color: var(--paper-soft); font-size: 1.08rem; margin-top: 18px; }

/* ---------- Services ---------- */
.services { background:
  radial-gradient(1000px 480px at 82% -8%, rgba(124,58,237,.16), transparent 60%),
  radial-gradient(760px 420px at 6% 108%, rgba(255,45,155,.12), transparent 60%),
  var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  position: relative; background: rgba(255,255,255,.035);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 26px; overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-brand);
  opacity: 0; transition: opacity .35s ease;
}
.service-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.06); border-color: rgba(255,45,155,.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.icon-1 { background: rgba(255,122,24,.13); color: #ffa64d; }
.icon-2 { background: rgba(255,45,155,.13); color: #ff5cb0; }
.icon-3 { background: rgba(139,92,246,.15); color: #a78bfa; }
.icon-4 { background: rgba(255,106,61,.14); color: #ff8a5c; }
.service-name { font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; color: #fff; margin-bottom: 4px; }
.service-tagline { font-size: .86rem; color: var(--c-magenta); font-weight: 600; margin-bottom: 14px; }
.service-desc { font-size: .95rem; color: var(--paper-soft); margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 9px; }
.service-list li { position: relative; padding-left: 24px; font-size: .9rem; color: #d4d4e2; }
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--grad-brand);
}
.service-list li::after {
  content: ""; position: absolute; left: 4px; top: 10px; width: 4px; height: 7px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(40deg);
}

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -22px; right: -14px; background: var(--grad-brand);
  border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-glow); max-width: 200px;
}
.about-badge-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.about-badge-label { font-size: .82rem; color: rgba(255,255,255,.92); }
.about-copy .section-title { text-align: left; }
.about-copy .section-tag { text-align: left; }
.about-copy p { color: var(--paper-soft); margin-top: 18px; }
.about-points { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; color: #e3e3ee; font-size: .98rem; }
.about-points .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-brand);
  display: grid; place-items: center; color: #fff; font-size: .8rem; font-weight: 800;
}

/* ---------- Why ---------- */
.why { background:
  radial-gradient(760px 420px at 100% 0%, rgba(124,58,237,.14), transparent 60%), var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s ease, border-color .3s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(255,45,155,.35); }
.why-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); margin-bottom: 18px;
  color: #ff5cb0;
}
.why-ic svg { width: 26px; height: 26px; }
.why-card:nth-child(1) .why-ic { color: #ffa64d; background: rgba(255,122,24,.12); border-color: rgba(255,122,24,.22); }
.why-card:nth-child(2) .why-ic { color: #ff5cb0; background: rgba(255,45,155,.12); border-color: rgba(255,45,155,.22); }
.why-card:nth-child(3) .why-ic { color: #a78bfa; background: rgba(139,92,246,.14); border-color: rgba(139,92,246,.24); }
.why-card:nth-child(4) .why-ic { color: #5fd0e8; background: rgba(34,211,238,.12); border-color: rgba(34,211,238,.22); }
.why-card:nth-child(5) .why-ic { color: #7ee08a; background: rgba(74,222,128,.12); border-color: rgba(74,222,128,.22); }
.why-card:nth-child(6) .why-ic { color: #ff8a5c; background: rgba(255,106,61,.13); border-color: rgba(255,106,61,.22); }
.why-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: .94rem; color: var(--paper-soft); }

/* ---------- Process ---------- */
.process { background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step {
  position: relative; padding: 34px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  display: block; margin-bottom: 16px;
}
.process-step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: #fff; margin-bottom: 10px; }
.process-step p { font-size: .93rem; color: var(--paper-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 110px) 0; }
.cta-bg { position: absolute; inset: 0; background: #0b0b14 url("../assets/images/night.jpg") center/cover no-repeat; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,11,20,.9) 0%, rgba(124,58,237,.55) 55%, rgba(255,45,155,.5) 100%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.12; color: #fff; letter-spacing: -.02em; }
.cta-inner p { color: #e6e6f0; font-size: 1.12rem; margin: 18px 0 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact ---------- */
.contact { background:
  radial-gradient(720px 420px at 0% 0%, rgba(255,45,155,.12), transparent 60%), var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 64px); align-items: start; }
.contact-info .section-title, .contact-info .section-tag { text-align: left; }
.contact-lead { color: var(--paper-soft); margin: 18px 0 34px; font-size: 1.05rem; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  color: #ff5cb0; background: rgba(255,45,155,.12); border: 1px solid rgba(255,45,155,.22);
}
.contact-ic svg { width: 20px; height: 20px; }
.contact-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--paper-soft); margin-bottom: 3px; }
.contact-list a, .contact-static { color: #fff; font-weight: 600; font-size: 1.02rem; transition: color .2s ease; }
.contact-list a:hover { color: var(--c-magenta); }

.contact-form-wrap {
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-card);
}
.contact-form h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .84rem; font-weight: 600; color: #d4d4e2; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: #fff;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; transition: border-color .2s ease, background .2s ease; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #7a7a90; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-magenta); background: rgba(255,255,255,.08);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23ff2d9b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field select option { background: #16162a; color: #fff; }
.form-note { margin-top: 14px; font-size: .9rem; min-height: 1.2em; }
.form-note.ok { color: #4ade80; }
.form-note.err { color: #ff6b81; }

/* ---------- Footer ---------- */
.site-footer { background: #08080f; border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 78px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--paper-soft); font-size: .95rem; max-width: 320px; margin-bottom: 18px; }
.footer-reg { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-reg span {
  font-size: .78rem; font-weight: 600; color: #cfcfe0; background: rgba(255,255,255,.05);
  border: 1px solid var(--line); padding: 6px 12px; border-radius: 8px;
}
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 18px; }
.footer-col a, .footer-addr { display: block; color: var(--paper-soft); font-size: .93rem; margin-bottom: 11px; transition: color .2s ease; }
.footer-col a:hover { color: var(--c-magenta); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 18px; color: #7a7a90; font-size: .85rem; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #9a9ab0; transition: color .2s ease; }
.footer-legal a:hover { color: var(--c-magenta); }

/* ---------- Legal / content pages ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(120px, 16vw, 160px) 0 clamp(44px, 6vw, 64px);
  background:
    radial-gradient(760px 380px at 78% -20%, rgba(255,45,155,.2), transparent 60%),
    radial-gradient(680px 360px at 8% 120%, rgba(124,58,237,.22), transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; color: #fff;
}
.page-hero .page-updated { color: var(--paper-soft); margin-top: 12px; font-size: .95rem; }

.legal { padding: clamp(50px, 7vw, 84px) 0 clamp(70px, 9vw, 110px); background: var(--bg); }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap > p:first-child { font-size: 1.08rem; color: #d4d4e2; }
.legal-wrap h2 {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: 1.4rem; margin: 38px 0 12px; letter-spacing: -.01em;
}
.legal-wrap h2:first-of-type { margin-top: 8px; }
.legal-wrap h3 { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.08rem; margin: 24px 0 8px; }
.legal-wrap p, .legal-wrap li { color: var(--paper-soft); font-size: .98rem; line-height: 1.75; }
.legal-wrap p { margin-bottom: 14px; }
.legal-wrap ul { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.legal-wrap ul li { margin-bottom: 8px; }
.legal-wrap a { color: var(--c-magenta); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap a:hover { color: #ff5cb0; }
.legal-wrap strong { color: #fff; font-weight: 600; }
.legal-note {
  margin-top: 40px; padding: 20px 22px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); color: #c7c7d6; font-size: .9rem;
}
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 34px; font-weight: 600; color: var(--c-magenta); }
.legal-back:hover { color: #ff5cb0; }

/* ---------- Floating call ---------- */
.float-call {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: var(--grad-brand); box-shadow: var(--shadow-glow);
  animation: pulse-ring 2.4s infinite; transition: transform .25s ease;
}
.float-call:hover { transform: scale(1.08); }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(255,45,155,.5);} 70% { box-shadow: 0 0 0 16px rgba(255,45,155,0);} 100% { box-shadow: 0 0 0 0 rgba(255,45,155,0);} }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px;
    background: #0d0d18; border-left: 1px solid var(--line);
    padding: 100px 26px 40px; transform: translateX(100%); transition: transform .35s ease; z-index: 99;
  }
  .nav.open { transform: translateX(0); box-shadow: -30px 0 60px -20px rgba(0,0,0,.7); }
  .nav-link { width: 100%; font-size: 1.05rem; padding: 12px 14px; }
  .nav-phone { margin: 10px 0 0; width: 100%; }
  .nav-toggle { display: flex; z-index: 100; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .about-copy .section-title { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .about-badge { right: 10px; }
  .trust-inner { gap: 10px 16px; }
  .float-call { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
