﻿:root {
  --color-black: #0a0a0a;
  --color-red: #e30613;
  --color-red-hover: #ff1e2e;
  --color-white: #ffffff;
  --color-gray: #a3a3a3;
  --color-darkgray: #1f1f1f;
  --bg: var(--color-black);
  --panel: #111111;
  --text: #f4f4f5;
  --muted: var(--color-gray);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --brand: #e30613;
  --brand-strong: var(--color-red-hover);
  --accent-orange: var(--color-red);
  --accent-blue: var(--color-white);
  --accent-red: #ef4444;
  --accent-purple: #7c3aed;
  --glass: rgba(17, 17, 17, 0.72);
  --brand-gradient: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-hover) 100%);
  --accent-gradient: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-hover) 100%);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --glow-brand: 0 0 30px rgba(227, 6, 19, 0.24);
  --glow-blue: 0 0 34px rgba(227, 6, 19, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(227, 6, 19, 0.12), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(255, 30, 46, 0.08), transparent 32%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.035em;
  margin: 0;
  font-weight: 700;
}

p { font-size: clamp(1rem, 1.15vw, 1.12rem); }

.container {
  width: min(1280px, 90vw);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--color-white);
  padding: 0.7rem 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.64);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
  transition: min-height 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 15, 28, 0.86);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.36), 0 0 26px rgba(227, 6, 19, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height 240ms ease;
}

.site-header.is-scrolled .nav-wrap { min-height: 66px; }

.brand { display: inline-flex; align-items: center; text-decoration: none; z-index: 61; }
.brand-logo { display: block; height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.main-nav a,
.mobile-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav a {
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  z-index: 61;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-content: center;
  gap: 1.3rem;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2rem, 9vw, 4rem);
}

.hero {
  min-height: max(100vh, 820px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(227, 6, 19, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.32) 50%, rgba(10, 10, 10, 0.9));
  animation: vignette-pulse 24s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  padding: 7.5rem 0 8rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-orange);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-title {
  font-size: clamp(3.9rem, 8.8vw, 8.8rem);
  line-height: 0.88;
  max-width: 10ch;
  opacity: 0;
  filter: blur(8px);
  animation: title-enter 1.1s ease forwards 220ms;
}

.gradient-text {
  display: inline-block;
  color: #ffffff;
  background: none;
  filter: none;
  position: relative;
  transition: text-shadow 0.3s ease;
}

.gradient-text.glowing {
  text-shadow: 
    0 0 10px rgba(227, 6, 19, 0.8),
    0 0 20px rgba(227, 6, 19, 0.6),
    0 0 30px rgba(227, 6, 19, 0.4),
    0 0 40px rgba(227, 6, 19, 0.2);
}


.precision-word {
  position: relative;
  display: inline-block;
  padding: 0 0.04em 0.08em;
}

.precision-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.02em;
  width: 100%;
  height: 0.12em;
  overflow: visible;
  pointer-events: none;
}

.precision-stroke {
  fill: none;
  stroke: var(--accent-blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(227, 6, 19, 0.65));
}

.precision-spark-canvas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  width: 100%;
  height: 0.22em;
  pointer-events: none;
}

.hero-subtitle {
  margin: 1.6rem 0 0;
  max-width: 58ch;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s ease forwards 620ms;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  opacity: 0;
  transform: scale(0.94);
  animation: actions-enter 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards 980ms;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  font-family: inherit;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, color 260ms ease;
  will-change: transform;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(227, 6, 19, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn-primary:hover::before { transform: translateX(120%); }

.btn-primary:hover {
  transform: translateY(-4px) scale(1.035);
  background: var(--color-red-hover);
  box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.12), 0 22px 54px rgba(227, 6, 19, 0.3), var(--glow-brand);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-4px) scale(1.025);
  box-shadow: var(--glow-blue);
}

.btn-secondary.ringing { border-color: #ff4a57; animation: ring-border 0.7s ease-in-out 2; }
.ring-icon { display: inline-flex; align-items: center; justify-content: center; animation: ring 0.7s ease-in-out 2; }

.hero-panel,
.panel,
.service-card,
.check-list li,
.dept-list li {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  transform: translateY(0);
  animation: none;
}

.hero-panel:hover,
.panel:hover {
  border-color: rgba(227, 6, 19, 0.34);
  box-shadow: var(--shadow), var(--glow-blue);
}

.panel-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 800;
}

.panel-metrics {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.panel-metrics article {
  display: grid;
  gap: 0.18rem;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 1rem;
}

.panel-metrics article:last-child { border-bottom: none; padding-bottom: 0; }
.panel-metrics strong { font-family: "Space Grotesk", system-ui, sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
.panel-metrics span { color: var(--muted); }

.section {
  padding: clamp(7rem, 11vw, 10rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1280px, 90vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.35), rgba(255, 255, 255, 0.12), transparent);
}

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.section-head .office-phone {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

.section-head .office-phone a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.section-head .office-phone a:hover {
  text-decoration: underline;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.phone-label {
  color: #ffffff;
  margin-right: 4px;
}

.phone-prefix {
  color: #ffffff;
}

.phone-brand {
  color: #ffffff;
}

.phone-brand-red {
  color: var(--accent-red);
}
.section h2 { font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: 0.98; max-width: 12ch; }

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.stack { display: grid; gap: 1rem; }

.panel {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.panel:hover { transform: translateY(-5px); }
.panel p,
.service-card p { margin: 0; color: var(--muted); }
.panel p + p { margin-top: 0.9rem; }
.panel h3,
.service-card h3 { font-size: 1.35rem; margin: 0; }

.panel-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.panel-points li {
  color: #ffffff;
  padding-left: 1.1rem;
  position: relative;
}

.panel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-blue);
  box-shadow: 0 0 18px rgba(227, 6, 19, 0.62);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  min-height: 300px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 58%;
  background: radial-gradient(circle, var(--service-glow, rgba(227, 6, 19, 0.18)), transparent 68%);
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--service-border, rgba(227, 6, 19, 0.42));
  box-shadow: var(--shadow), 0 0 34px var(--service-shadow, rgba(227, 6, 19, 0.18));
}

.service-card:hover::before { opacity: 1; }
.service-card img {
  width: 100%;
  height: 108px;
  object-fit: contain;
  padding: 1rem;
  border-radius: 18px;
  background: transparent;
}

.service-card p { margin-top: auto; font-size: 1rem; }
.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(227, 6, 19, 0.12);
  color: var(--accent-blue);
  font-size: 2rem;
  box-shadow: inset 0 0 28px rgba(227, 6, 19, 0.12);
}

.network-visual {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(227, 6, 19, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(10, 10, 10, 0.72));
}

.network-visual::before,
.network-visual::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  animation: orbit 14s linear infinite;
}

.network-visual::after {
  inset: 28%;
  border-color: rgba(227, 6, 19, 0.26);
  animation-duration: 10s;
  animation-direction: reverse;
}

.network-visual span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-blue);
  box-shadow: 0 0 22px rgba(227, 6, 19, 0.72);
}

.telico-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 10;
  filter: 
    drop-shadow(0 0 15px rgba(227, 6, 19, 0.3))
    drop-shadow(0 0 30px rgba(227, 6, 19, 0.2))
    drop-shadow(0 0 45px rgba(227, 6, 19, 0.1));
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    filter: 
      drop-shadow(0 0 15px rgba(227, 6, 19, 0.3))
      drop-shadow(0 0 30px rgba(227, 6, 19, 0.2))
      drop-shadow(0 0 45px rgba(227, 6, 19, 0.1));
  }
  50% { 
    filter: 
      drop-shadow(0 0 20px rgba(227, 6, 19, 0.4))
      drop-shadow(0 0 40px rgba(227, 6, 19, 0.3))
      drop-shadow(0 0 60px rgba(227, 6, 19, 0.2));
  }
}

.network-visual span:nth-child(1) { top: 22%; left: 28%; background: var(--color-white); box-shadow: 0 0 20px rgba(255, 255, 255, 0.42); }
.network-visual span:nth-child(2) { top: 36%; right: 22%; }
.network-visual span:nth-child(3) { bottom: 28%; left: 20%; background: var(--accent-blue); box-shadow: 0 0 20px rgba(227, 6, 19, 0.54); }
.network-visual span:nth-child(4) { bottom: 20%; right: 30%; }

.check-list,
.dept-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.check-list li,
.dept-list li {
  padding: 1.05rem 1.15rem;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.check-list li:hover,
.dept-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 24px rgba(227, 6, 19, 0.12);
}

.dept-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.dept-list li strong { display: block; font-size: 1rem; line-height: 1.35; }
.dept-list li span { color: var(--muted); font-size: 0.95rem; }
.contact-grid { align-items: stretch; }
.contact-grid .panel { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.contact-grid .panel h3 { margin: 0 0 1rem; }
.contact-grid .panel p { margin: 0 0 1.4rem; color: var(--muted); line-height: 1.75; }
.contact-section { border-bottom: 1px solid var(--line-soft); }

.mail-main { padding: 4.4rem 0; }
.mail-layout { display: block; max-width: 760px; margin: 0 auto; }
.mail-form-container { padding: 2.5rem; }
.mail-form { display: grid; gap: 1.5rem; }
.mail-form label { font-weight: 700; font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.mail-form input,
.mail-form textarea,
.mail-form select {
  width: 100%;
  border-radius: 0.9rem;
  background: rgba(10, 15, 28, 0.86);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.875rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.mail-form input:focus,
.mail-form textarea:focus,
.mail-form select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.18);
}
.btn:focus-visible,
.mail-form input:focus-visible,
.mail-form textarea:focus-visible,
.mail-form select:focus-visible,
.main-nav a:focus-visible,
.mobile-nav a:focus-visible,
.footer-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.78);
  outline-offset: 4px;
}
.mail-form textarea { resize: vertical; min-height: 140px; font-family: inherit; line-height: 1.6; }
.mail-note { margin: 0; color: var(--muted); }
.captcha-box { margin: 0; border: 1px solid var(--line-soft); border-radius: 0.85rem; padding: 0.86rem; background: rgba(10, 10, 10, 0.86); }
.captcha-box legend { padding: 0 0.36rem; font-weight: 700; }
.captcha-box .g-recaptcha { margin-top: 0.55rem; display: inline-block; max-width: 100%; }
.captcha-status { min-height: 1.2em; margin: 0.4rem 0 0; font-size: 0.92rem; font-weight: 600; }
.captcha-status.is-valid { color: #41d18a; }
.captcha-status.is-invalid { color: #ff6d6d; }
.security-note { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.75rem 1rem; background: rgba(227, 6, 19, 0.08); border: 1px solid rgba(227, 6, 19, 0.15); border-radius: 0.75rem; color: var(--muted); font-size: 0.9rem; }
.security-note svg { flex-shrink: 0; color: var(--brand); }
.mail-form .btn-primary { margin-top: 1rem; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 700; border-radius: 0.9rem; }

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 1.4rem 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-bottom p { margin: 0; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover { color: #ffffff; }

.animate-in {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in.is-visible { opacity: 1; transform: translateY(0); }
.animate-in:nth-child(1) { transition-delay: 0ms; }
.animate-in:nth-child(2) { transition-delay: 90ms; }
.animate-in:nth-child(3) { transition-delay: 180ms; }
.animate-in:nth-child(4) { transition-delay: 270ms; }

@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes title-enter { from { opacity: 0; filter: blur(8px); transform: translateY(12px); } to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes actions-enter { to { opacity: 1; transform: scale(1); } }
@keyframes underline-settle { from { opacity: 0; transform: scaleX(0.35); } to { opacity: 1; transform: scaleX(1); } }
@keyframes vignette-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.82; } }
@keyframes float-panel { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes ring { 0%, 100% { transform: rotate(0deg); } 12% { transform: rotate(10deg); } 24% { transform: rotate(-8deg); } 36% { transform: rotate(6deg); } 48% { transform: rotate(-4deg); } 60% { transform: rotate(2deg); } 72% { transform: rotate(-1deg); } 84% { transform: rotate(1deg); } }
@keyframes ring-border { 0%, 100% { border-color: var(--line); } 20%, 60% { border-color: #ff4a57; } }

@media (max-width: 1180px) {
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-grid { padding: 6rem 0 7rem; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section h2 { max-width: 16ch; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-wrap { min-height: 70px; }
  .hero-grid { padding: 4.8rem 0 6.5rem; }
  .hero-title { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .service-grid { grid-template-columns: 1fr; }
  .section { padding: 5.5rem 0; }
  .brand-logo { height: 38px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@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;
  }
}

.content-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.content-panel h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.coming-soon-container {
  text-align: center;
  padding: 60px 40px;
}

.coming-soon-icon {
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
}

.coming-soon-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.coming-soon-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: center;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.7;
}

.content-panel ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-panel li {
  margin-bottom: 8px;
  color: var(--text);
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -8px;
  margin-bottom: 32px;
}
