:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --warm: #f59e0b;
  --accent: #0f172a;
  --bg: #f8fafc;
  --bg-elevated: #eef6ff;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 34px 90px rgba(15, 23, 42, 0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #0b1120;
  --bg-elevated: #111827;
  --card: #111827;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #f8fafc;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.045), transparent 560px),
    var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 48%);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 860px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid rgba(37, 99, 235, 0.18);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(248, 250, 252, 0.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

[data-theme="dark"] .site-header {
  background: rgba(11, 17, 32, 0.82);
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px 5px auto auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a,
.theme-toggle,
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.nav-menu a {
  padding: 0 14px;
}

.nav-menu a:hover,
.nav-menu a.active,
.theme-toggle:hover,
.nav-toggle:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.nav-toggle {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 94px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.06) 44%, rgba(245, 158, 11, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 70%);
  animation: drift 10s ease-in-out infinite alternate;
}

.hero-home::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 68px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.page-hero h1 {
  margin: 16px 0 20px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--accent);
}

.hero-copy h1 {
  max-width: 880px;
  background: linear-gradient(135deg, var(--accent), var(--primary) 52%, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.hero-copy p,
.page-hero p,
.section-heading p {
  margin: 0;
  max-width: 680px;
  font-size: 1.18rem;
  color: var(--muted);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(14px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

.btn-secondary,
.btn-outline {
  color: var(--accent);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.btn-light {
  color: var(--primary);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .trust-row span {
  background: rgba(17, 24, 39, 0.7);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-frame-glow {
  position: absolute;
  inset: 22px;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(16, 185, 129, 0.2)),
    linear-gradient(45deg, rgba(245, 158, 11, 0.22), transparent);
  filter: blur(24px);
  opacity: 0.72;
}

.hero-visual img {
  width: min(100%, 610px);
  aspect-ratio: 0.98;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  border: 8px solid rgba(255, 255, 255, 0.72);
  transform: rotate(1.2deg);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 18px;
  width: 196px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
  animation: float 4.5s ease-in-out infinite;
}

[data-theme="dark"] .floating-card {
  background: rgba(17, 24, 39, 0.82);
}

.floating-card i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  font-size: 1rem;
}

.floating-card strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.card-one {
  left: -18px;
  bottom: 74px;
}

.card-two {
  right: -14px;
  top: 74px;
  animation-delay: 1s;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero-proof p {
  margin: 0;
  font-size: 0.95rem;
}

.hero-proof strong {
  color: var(--accent);
}

.avatar-stack {
  display: flex;
  min-width: 96px;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-size: 0.78rem;
  font-weight: 900;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, var(--secondary), #0f766e);
}

.avatar-stack span:last-child {
  background: linear-gradient(135deg, var(--warm), var(--primary));
}

.section {
  padding: 104px 0;
}

.soft-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.055), rgba(16, 185, 129, 0.045)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
}

.align-center {
  align-items: center;
}

h2 {
  margin: 12px 0 16px;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--accent);
}

p {
  color: var(--muted);
}

.stacked-copy {
  display: grid;
  gap: 18px;
}

.stacked-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.card-grid,
.pricing-grid,
.testimonial-grid,
.stats-grid,
.contact-grid,
.service-detail-grid {
  display: grid;
  gap: 22px;
}

.six-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.price-card,
.detail-card,
.info-card,
.testimonial-grid figure,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.96)),
    var(--card);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .detail-card,
[data-theme="dark"] .info-card,
[data-theme="dark"] .testimonial-grid figure,
[data-theme="dark"] .timeline article {
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(17, 24, 39, 0.96)),
    var(--card);
}

.service-card,
.detail-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::before,
.detail-card::before,
.price-card::before,
.testimonial-grid figure::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent 42%, rgba(16, 185, 129, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.service-card:hover,
.detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.detail-card:hover::before,
.price-card:hover::before,
.testimonial-grid figure:hover::before {
  opacity: 1;
}

.service-card i,
.detail-card > i,
.info-card > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.2);
}

.service-card h3,
.detail-card h2 {
  margin: 22px 0 10px;
}

.feature-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

[data-theme="dark"] .feature-panel {
  background: rgba(17, 24, 39, 0.7);
}

.feature-panel div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent),
    var(--card);
  color: var(--accent);
  font-weight: 800;
}

.feature-panel i {
  color: var(--primary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.45);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow);
}

.price-card.featured:hover {
  transform: translateY(-18px);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), #0f766e);
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 16px 0;
  color: var(--primary);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

ul {
  padding-left: 20px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
}

.stats-section {
  position: relative;
  z-index: 2;
  padding: 0 0 42px;
  margin-top: -42px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
}

[data-theme="dark"] .stats-grid article {
  background: rgba(17, 24, 39, 0.86);
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stats-grid strong::after {
  content: "+";
  color: var(--secondary);
}

.stats-grid article:nth-child(2) strong::after {
  content: "%";
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid figure {
  position: relative;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-grid figure::after {
  content: "★★★★★";
  display: block;
  margin-top: 18px;
  color: var(--warm);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 1.06rem;
  font-weight: 650;
}

blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 3rem;
  line-height: 0.7;
  font-weight: 900;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.faq-wrap {
  max-width: 860px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.accordion button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 850;
  text-align: left;
}

.accordion p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
}

.accordion article.open p {
  display: block;
}

.accordion article.open {
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.accordion article.open i {
  transform: rotate(180deg);
}

.final-cta {
  padding-top: 0;
}

.cta-banner {
  padding: clamp(34px, 7vw, 72px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(37, 99, 235, 0.78), rgba(16, 185, 129, 0.62)),
    url("../images/high-street-hero.png") center/cover;
  box-shadow: var(--shadow-strong);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.cta-banner h2,
.cta-banner p,
.cta-banner .section-kicker {
  color: #fff;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent);
}

.compact-hero {
  padding-bottom: 54px;
}

.service-detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.detail-card .btn {
  margin-top: 12px;
}

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

.timeline article {
  padding: 24px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: left;
}

td i {
  color: var(--secondary);
}

.contact-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
    var(--card);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .contact-form {
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(17, 24, 39, 0.98)),
    var(--card);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  color: var(--accent);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-row small {
  min-height: 18px;
  color: #ef4444;
  font-weight: 700;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  font-weight: 800;
}

.form-message.show {
  display: block;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
}

.info-card h2 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.map-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--accent);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(16, 185, 129, 0.1)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    var(--card);
  background-size: 28px 28px;
  font-weight: 850;
  text-align: center;
}

.map-placeholder i {
  color: var(--primary);
  font-size: 2rem;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: 1.7rem;
}

.site-footer {
  padding: 70px 0 24px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), transparent 36%),
    linear-gradient(180deg, #0f172a, #080d18);
  color: #fff;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 0.9fr;
  gap: 32px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  color: #fff;
}

.newsletter {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-top: 22px;
}

.newsletter label {
  color: #fff;
}

.newsletter div {
  display: flex;
  gap: 8px;
}

.newsletter input {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.newsletter button {
  width: 48px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.not-found {
  max-width: 680px;
  text-align: center;
}

.not-found .brand {
  justify-content: center;
}

.error-code {
  display: block;
  margin-top: 34px;
  color: var(--primary);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
}

.not-found h1 {
  margin: 20px 0 10px;
  color: var(--accent);
  font-size: clamp(2.2rem, 6vw, 4rem);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
