/* ============================================
   Tractari Austria — Design System
   ============================================ */

:root {
  /* Austria flag-inspired palette */
  --red: #c8102e;
  --red-dark: #9a0c24;
  --red-light: #e8334d;
  --red-bg: #fff1f3;

  --ink: #0f1115;
  --ink-soft: #1c1f26;
  --graphite: #3a3f4a;
  --slate: #6b7280;
  --line: #e5e7eb;
  --paper: #ffffff;
  --paper-warm: #fafafa;
  --paper-dim: #f4f4f5;

  --amber: #f5b301; /* hazard accent for urgency */

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.06), 0 1px 1px rgba(15, 17, 21, 0.04);
  --shadow-md: 0 10px 30px -12px rgba(15, 17, 21, 0.18), 0 2px 6px rgba(15, 17, 21, 0.05);
  --shadow-lg: 0 30px 60px -20px rgba(15, 17, 21, 0.28);

  --max: 1200px;
}

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

body {
  font-family: "Inter Tight", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: "Archivo", "Inter Tight", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1rem; text-wrap: pretty; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ============================================
   TOP URGENCY BAR
   ============================================ */
.topbar {
  background: var(--ink);
  color: #e8ebf0;
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.topbar .live {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.topbar a.phone { color: #fff; font-weight: 600; }
.topbar .sep { opacity: 0.4; }
@media (max-width: 700px) {
  .topbar .wrap > span:last-child { display: none; }
  .topbar .wrap { justify-content: center; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 900; letter-spacing: -0.02em;
  font-size: 1.15rem;
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--red);
  color: white;
  display: grid; place-items: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; left: 0; right: 0; height: 6px;
  background: white;
}
.brand-mark::before { top: 0; }
.brand-mark::after  { bottom: 0; }
.brand-mark svg { position: relative; z-index: 1; }
.brand em { font-style: normal; color: var(--red); }

.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--graphite);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--paper-dim); color: var(--ink); }
.nav-links a.active { color: var(--ink); background: var(--paper-dim); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 14px -6px rgba(200,16,46,0.55);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 10px 20px -8px rgba(200,16,46,0.6); }

/* Mobile menu */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open] .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav[data-open] .nav-links a { padding: 14px 16px; border-radius: 10px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 30px -12px rgba(200,16,46,0.55);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(200,16,46,0.6); }
.btn-ghost {
  background: white; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark {
  background: var(--ink); color: white;
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-lg { padding: 20px 32px; font-size: 1.05rem; }

/* Floating call button (mobile urgency) */
.floating-call {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 50;
  background: var(--red);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 20px 40px -12px rgba(200,16,46,0.65);
  display: inline-flex; align-items: center; gap: 10px;
  animation: floatBump 2.6s ease-in-out infinite;
}
@keyframes floatBump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (min-width: 900px) {
  .floating-call { display: none; }
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 88px 0; }
@media (max-width: 700px) { section { padding: 60px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--red);
}

.lede {
  font-size: 1.15rem;
  color: var(--graphite);
  max-width: 60ch;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  color: white;
  overflow: hidden;
  padding: 120px 0 100px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: #111;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.9) contrast(1.05);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55), transparent 40%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 80px 0 70px; }
}

.hero-flag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-flag .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.8s ease-out infinite;
}
.flag-stripes {
  display: inline-flex; flex-direction: column; width: 20px; height: 14px;
  border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.flag-stripes span { flex: 1; display: block; }
.flag-stripes .r1 { background: var(--red); }
.flag-stripes .r2 { background: white; }
.flag-stripes .r3 { background: var(--red); }

.hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 22px;
}
.hero h1 .hl {
  color: white;
  background: linear-gradient(180deg, transparent 65%, var(--red) 65%);
  padding: 0 4px;
}
.hero p.sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero-cta .phone-big {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  background: var(--red);
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 20px 40px -14px rgba(200,16,46,0.6);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta .phone-big:hover { transform: translateY(-2px); background: var(--red-dark); }
.hero-cta .phone-big .ring {
  width: 44px; height: 44px; border-radius: 50%;
  background: white; color: var(--red);
  display: grid; place-items: center;
  animation: ring 2.2s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(12deg); }
  20% { transform: rotate(-12deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-8deg); }
  50% { transform: rotate(0); }
}
.hero-cta .phone-big .label {
  display: flex; flex-direction: column; line-height: 1.1;
}
.hero-cta .phone-big .label small {
  font-size: 0.7rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badges {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
}
.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

/* Hero side card */
.hero-card {
  background: white;
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card .badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--ink);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-card h3 { margin-bottom: 18px; font-size: 1.25rem; }
.hero-card .kv {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 14px;
  font-size: 0.95rem;
}
.hero-card .kv dt {
  color: var(--slate);
  display: inline-flex; gap: 8px; align-items: center;
}
.hero-card .kv dd { margin: 0; font-weight: 600; }
.hero-card .eta-bar {
  margin-top: 22px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: var(--red-bg);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 12px;
}
.hero-card .eta-bar .clock {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red);
  color: white; display: grid; place-items: center;
}
.hero-card .eta-bar strong { display: block; font-size: 1.1rem; }
.hero-card .eta-bar small { color: var(--slate); font-size: 0.82rem; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats {
  padding: 50px 0;
  background: var(--ink);
  color: white;
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stats .grid > div {
  border-left: 2px solid var(--red);
  padding-left: 22px;
}
.stats .grid strong {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stats .grid small {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}
@media (max-width: 800px) {
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================
   WHY US (feature grid)
   ============================================ */
.why .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 900px) { .why .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why .grid { grid-template-columns: 1fr; } }

.feature {
  padding: 28px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  background: white;
}
.feature .icon {
  width: 48px; height: 48px;
  background: var(--ink);
  color: white;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature.accent .icon { background: var(--red); }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--graphite); font-size: 0.95rem; margin: 0; }

/* ============================================
   COVERAGE (highway + cities)
   ============================================ */
.coverage {
  background: var(--paper-warm);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; gap: 40px; } }

.highways-list {
  display: grid; gap: 10px;
}
.highway-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.15s, border-color 0.15s;
}
.highway-row:hover { transform: translateX(4px); border-color: var(--red); }
.highway-shield {
  background: var(--ink); color: white;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 10px 0;
  text-align: center;
  border-radius: 8px;
  font-size: 1.2rem;
  position: relative;
}
.highway-shield::after {
  content: "AUT";
  position: absolute;
  top: 3px; left: 0; right: 0;
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
}
.highway-row .name { font-weight: 600; }
.highway-row .meta { font-size: 0.85rem; color: var(--slate); }
.highway-row .status {
  font-size: 0.78rem; font-weight: 600;
  color: #16a34a;
  display: inline-flex; align-items: center; gap: 6px;
}
.highway-row .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
}

/* Austria map */
.austria-map {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.austria-map h3 { font-size: 1.1rem; margin-bottom: 6px; }
.austria-map .m-sub { color: var(--slate); font-size: 0.88rem; margin-bottom: 20px; }
.austria-map svg { width: 100%; height: auto; display: block; }
.city-dot { cursor: pointer; transition: transform 0.15s; }
.city-dot:hover { transform: scale(1.2); transform-origin: center; }

.city-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.city-pills span {
  padding: 6px 12px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-img {
  aspect-ratio: 16/10;
  background: var(--paper-dim);
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-body .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.service-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-body p { color: var(--graphite); font-size: 0.95rem; flex: 1; }
.service-body .go {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.service-body .go .arrow {
  transition: transform 0.2s;
}
.service-card:hover .go .arrow { transform: translateX(4px); }

/* ============================================
   BIG CALLOUT
   ============================================ */
.callout {
  background: var(--ink);
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 16px,
    rgba(200,16,46,0.06) 16px, rgba(200,16,46,0.06) 32px
  );
  pointer-events: none;
}
.callout .wrap {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.callout h2 { color: white; max-width: 22ch; }
.callout p { color: rgba(255,255,255,0.75); max-width: 46ch; margin-top: 10px; margin-bottom: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { margin-top: 40px; display: grid; gap: 10px; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper-dim);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.faq-item[open] .q-icon { background: var(--red); color: white; transform: rotate(45deg); }
.faq-item .q-icon::before { content: "+"; font-size: 1.25rem; font-weight: 400; }
.faq-item .answer { padding: 0 26px 22px; color: var(--graphite); font-size: 0.97rem; }

/* ============================================
   CTA STRIP (phone big)
   ============================================ */
.phone-strip {
  background: var(--red);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phone-strip::before, .phone-strip::after {
  content: "";
  position: absolute; top: 50%;
  width: 40%; height: 2px; background: rgba(255,255,255,0.25);
  transform: translateY(-50%);
}
.phone-strip::before { left: -10%; }
.phone-strip::after  { right: -10%; }
.phone-strip .big-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 18px;
  position: relative;
}
.phone-strip small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 30px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer a { color: rgba(255,255,255,0.72); transition: color 0.15s; }
.footer a:hover { color: white; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer .brand { color: white; margin-bottom: 14px; }
.footer .brand em { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   PAGE HEADER (for sub pages)
   ============================================ */
.page-head {
  background: var(--ink);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,16,46,0.35), transparent 60%);
}
.page-head .wrap { position: relative; }
.page-head .eyebrow { color: #ffb4c0; }
.page-head .eyebrow::before { background: #ffb4c0; }
.page-head h1 { color: white; max-width: 20ch; margin-bottom: 20px; }
.page-head p { color: rgba(255,255,255,0.82); max-width: 60ch; font-size: 1.1rem; }
.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: white; }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.4; }

/* ============================================
   PRICING TABLE
   ============================================ */
.price-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.price-card.featured { border-color: var(--red); background: #fff; box-shadow: var(--shadow-md); }
.price-card.featured::before {
  content: "CEL MAI CERUT";
  position: absolute; top: -12px; left: 32px;
  background: var(--red);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.price-card .range {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin: 16px 0 4px;
  line-height: 1;
}
.price-card .range em { font-style: normal; color: var(--red); font-size: 1rem; font-weight: 600; margin-left: 4px; }
.price-card .per { color: var(--slate); font-size: 0.9rem; }
.price-card ul { list-style: none; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; }
.price-card ul li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 2px;
}

.price-table {
  margin-top: 50px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 18px 24px; text-align: left; font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  background: var(--paper-warm);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--paper-warm); }
.price-table .route { font-weight: 600; }
.price-table .amt { font-weight: 700; color: var(--red); white-space: nowrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: grid; gap: 14px; }
.contact-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.15s;
}
.contact-row:hover { border-color: var(--red); }
.contact-row .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-bg); color: var(--red);
  display: grid; place-items: center;
}
.contact-row strong { display: block; margin-bottom: 4px; }
.contact-row a { color: var(--ink); font-weight: 700; }
.contact-row small { color: var(--slate); font-size: 0.85rem; display: block; }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form p { color: var(--slate); font-size: 0.92rem; }
.form-row { display: grid; gap: 4px; margin-bottom: 16px; }
.form-row.cols { grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.cols > * { grid-column: auto; }
@media (max-width: 600px) { .form-row.cols { grid-template-columns: 1fr; } }
.form-row label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: var(--paper-warm);
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.form-submit small { color: var(--slate); font-size: 0.82rem; }
.form-ok {
  padding: 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  color: #065f46;
  font-size: 0.95rem;
  margin-top: 14px;
  display: none;
}
.form-ok.show { display: block; }

/* ============================================
   TEXT CONTENT (Despre)
   ============================================ */
.prose { max-width: 68ch; }
.prose p { color: var(--graphite); font-size: 1.05rem; }
.prose h3 { margin-top: 40px; margin-bottom: 12px; }
.prose ul { padding-left: 22px; color: var(--graphite); }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 36px; } .two-col.flip { direction: ltr; } }
.two-col img, .two-col .img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--paper-dim);
}

/* ============================================
   UTILITIES
   ============================================ */
.center { text-align: center; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 40px; }

.section-head { max-width: 760px; margin-bottom: 10px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow { padding: 0; }
