/* ============ Tokens ============ */
:root {
  --bg: #FAF8F4;
  --bg-alt: #F1ECE2;
  --bg-card: #FFFFFF;
  --ink: #14181D;
  --ink-soft: #545C66;
  --navy: #0E2A4D;
  --navy-2: #163B66;
  --accent: #FF5A1F;
  --accent-2: #FFB454;
  --line: rgba(14,42,77,0.12);
  --shadow: 0 20px 50px -20px rgba(14,42,77,0.25);
  --shadow-sm: 0 8px 24px -12px rgba(14,42,77,0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.08; margin: 0 0 0.5em; color: var(--navy); font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 108px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }

h1 { font-size: clamp(38px, 6vw, 74px); }
h2 { font-size: clamp(30px, 4.2vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 640px; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -10px rgba(255,90,31,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(255,90,31,0.65); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0; transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled {
  background: rgba(250,248,244,0.88); backdrop-filter: blur(14px); box-shadow: 0 4px 24px -8px rgba(14,42,77,0.15); padding: 10px 0;
}
.brand img { height: 42px; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-weight: 600; font-size: 15px; color: var(--navy); position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .25s ease; }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-nav-cta { display: none; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 6px 0; transition: .3s; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(340px, 82vw);
    background: var(--navy); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; transition: right .35s ease; gap: 26px; }
  .main-nav.open { right: 0; }
  .main-nav a { color: #fff; font-size: 20px; }
  .main-nav a::after { background: var(--accent-2); }
  .nav-toggle { display: block; }
  .header-cta .btn-outline { display: none; }
  .mobile-nav-cta { display: inline-flex; margin-top: 8px; }
}
@media (max-width: 480px) {
  .header-cta .btn-primary { display: none; }
}

/* ============ Hero ============ */
.hero {
  padding-top: 190px; padding-bottom: 120px; position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255,90,31,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-grid > div { min-width: 0; }

/* Entrance animation for above-the-fold hero content */
.hero-in { opacity: 0; animation: hero-in .85s cubic-bezier(.16,.8,.24,1) forwards; }
@keyframes hero-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero-in { animation: none; opacity: 1; } }

.hero-headline { margin: 0 0 0.5em; }
.hero-headline .line { display: block; font-family: var(--serif); font-size: clamp(38px, 6vw, 74px); line-height: 1.08; font-weight: 700; color: var(--navy); }

/* Floating ambient box icons */
.hero-floaters { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.floater { position: absolute; display: block; filter: drop-shadow(0 10px 18px rgba(14,42,77,0.18)); }
.floater svg { width: 100%; height: 100%; display: block; }
.floater.f1 { width: 52px; top: 12%; left: 4%; opacity: .5; animation: floatDrift 7.5s ease-in-out infinite; }
.floater.f2 { width: 32px; top: 74%; left: 40%; opacity: .3; animation: floatDrift 9s ease-in-out infinite 1.4s; }
.floater.f3 { width: 42px; top: 22%; left: 90%; opacity: .4; animation: floatDrift 8.2s ease-in-out infinite .7s; }
@keyframes floatDrift { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(9deg); } }
@media (max-width: 980px) { .floater.f3 { display: none; } }
@media (max-width: 640px) { .hero-floaters { display: none; } }
@media (prefers-reduced-motion: reduce) { .floater { animation: none; } }

.hero-badges { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--navy); }
.hero-badge svg { width: 22px; height: 22px; color: var(--accent); }
.hero-cta-row { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

/* Austria-wide service ticker */
.hero-ticker { display: flex; align-items: center; gap: 10px; margin-top: 32px; max-width: 100%; }
.ticker-pin { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.ticker-label { font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--ink-soft); flex-shrink: 0; }
.hero-ticker-mask { overflow: hidden; flex: 1; min-width: 0; -webkit-mask-image: linear-gradient(90deg, black 88%, transparent); mask-image: linear-gradient(90deg, black 88%, transparent); }
.hero-ticker-track { display: flex; width: max-content; animation: ticker-scroll 24s linear infinite; }
.hero-ticker-track span { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-ticker-track { animation: none; } }
@media (max-width: 560px) { .ticker-label { display: none; } }

.hero-visual { position: relative; perspective: 900px; }
.hero-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px 34px 78px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.1); position: relative; overflow: hidden;
  transition: transform .15s ease-out; transform-style: preserve-3d; will-change: transform;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-card::before {
  content: ""; position: absolute; inset: -40%; background: radial-gradient(circle at 30% 20%, rgba(255,90,31,0.35), transparent 55%);
}
.hero-card::after {
  content: ""; position: absolute; inset: -40%; pointer-events: none;
  background: radial-gradient(circle at 90% 95%, rgba(70,150,255,0.22), transparent 55%);
}

/* Wien → Österreich route visualization */
.route-strip { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; padding-bottom: 22px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.route-pin { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 70px; text-align: center; flex-shrink: 0; }
.route-pin .pin-label { font-size: 10.5px; font-weight: 700; letter-spacing: .4px; color: rgba(255,255,255,0.85); }
.pin-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent-2); position: relative; display: block; }
.pin-dot.pulse::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid var(--accent-2);
  animation: pin-pulse 2.4s ease-out infinite;
}
@keyframes pin-pulse { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(2); opacity: 0; } }
.route-line { position: relative; flex: 1; height: 2px; background: rgba(255,255,255,0.18); border-radius: 2px; }
.route-progress { position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); animation: route-fill 4.2s cubic-bezier(.5,0,.5,1) infinite; }
.route-mover { position: absolute; top: 50%; left: 0%; width: 22px; height: 22px; margin: -11px 0 0 -11px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 14px 3px rgba(255,144,60,0.7); animation: route-move 4.2s cubic-bezier(.5,0,.5,1) infinite; }
.route-mover svg { width: 12px; height: 12px; }
@keyframes route-fill { 0%, 6% { width: 0%; } 88%, 100% { width: 100%; } }
@keyframes route-move { 0%, 6% { left: 0%; } 88%, 100% { left: 100%; } }
@media (prefers-reduced-motion: reduce) { .route-progress, .route-mover, .pin-dot.pulse::before { animation: none; } .route-progress { width: 100%; } .route-mover { left: 100%; } }

.hero-stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.hero-stat-tile {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px;
  padding: 18px 8px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.hero-stat-tile:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); border-color: rgba(255,255,255,0.18); }
.hero-stat-icon {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.09); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon svg { width: 17px; height: 17px; color: var(--accent-2); }
.hero-stat-tile strong { font-family: var(--serif); font-size: 25px; line-height: 1; color: var(--accent-2); }
.hero-stat-tile strong .unit { font-size: 16px; }
.hero-stat-label { font-size: 11px; line-height: 1.35; opacity: .78; font-weight: 600; }
@media (max-width: 420px) { .hero-stats-grid { grid-template-columns: 1fr; } }
.float-chip {
  position: absolute; bottom: -26px; left: -26px; background: #fff; border-radius: var(--radius-sm);
  padding: 16px 20px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px; max-width: 240px;
  animation: chip-float 4s ease-in-out infinite;
}
@keyframes chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }
.float-chip svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.float-chip strong { display: block; font-size: 14px; color: var(--navy); }
.float-chip span { font-size: 12px; color: var(--ink-soft); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 150px; }
  .float-chip { position: static; margin-top: 20px; max-width: none; }
}

/* ============ Trust strip ============ */
.trust-strip { padding: 26px 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.trust-strip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.trust-item {
  display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; color: var(--navy);
  padding: 8px 18px 8px 8px; border-radius: 999px; transition: background .3s ease, transform .3s ease;
}
.trust-item:hover { background: rgba(255,90,31,0.08); transform: translateY(-2px); }
.trust-icon {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,90,31,0.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: background .3s ease, transform .3s ease;
}
.trust-item:hover .trust-icon { background: var(--accent); transform: rotate(-8deg) scale(1.05); }
.trust-item:hover .trust-icon svg { color: #fff; }
.trust-icon svg { width: 17px; height: 17px; color: var(--accent); transition: color .3s ease; }
.trust-strip .reveal:nth-child(2) { transition-delay: .08s; }
.trust-strip .reveal:nth-child(3) { transition-delay: .16s; }
.trust-strip .reveal:nth-child(4) { transition-delay: .24s; }

/* ============ Services (radial orbit hub) ============ */
.orbit { position: relative; max-width: 660px; margin: 0 auto; }

/* Mobile-first: plain stacked list, hub/lines/positions hidden */
.orbit-ring, .orbit-lines, .orbit-hub-cta { display: none; }
.orbit-hub { display: none; }
.orbit-node { position: relative; left: auto; top: auto; transform: none; width: 100%; margin-bottom: 14px; animation: none; }
.orbit-node-desc { display: block; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; padding: 2px 4px 0 62px; margin: 0; }
.orbit-node-num { display: none; }
.orbit-node-btn {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; cursor: default; font-family: inherit;
}
.orbit-node-icon {
  width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px -8px rgba(255,90,31,0.5);
}
.orbit-node-icon svg { width: 22px; height: 22px; color: #fff; }
.orbit-node-label { font-family: var(--serif); font-size: 16.5px; color: var(--navy); font-weight: 700; }
.orbit-node-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .3px; padding: 3px 9px; border-radius: 999px; background: var(--bg-alt); color: var(--navy); margin-bottom: 6px; }
.orbit-node-tag.alt { background: rgba(14,42,77,0.08); color: var(--navy-2); }

/* Desktop: radial hub with connecting lines */
@media (min-width: 860px) {
  .orbit { aspect-ratio: 1 / 1; }

  .orbit-ring {
    display: block; position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255,90,31,0.45) 34deg, transparent 88deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 40% - 1.5px), #fff calc(100% - 40% - 1.5px) calc(100% - 40% + 1.5px), transparent calc(100% - 40% + 1.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 40% - 1.5px), #fff calc(100% - 40% - 1.5px) calc(100% - 40% + 1.5px), transparent calc(100% - 40% + 1.5px));
    animation: orbitSpin 16s linear infinite; filter: blur(.3px);
  }
  .orbit-ring.alt {
    background: none; border: 1px dashed rgba(14,42,77,0.12);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 40% - 6px), #fff calc(100% - 40% - 6px) calc(100% - 40% + 6px), transparent calc(100% - 40% + 6px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 40% - 6px), #fff calc(100% - 40% - 6px) calc(100% - 40% + 6px), transparent calc(100% - 40% + 6px));
    animation: none;
  }
  @keyframes orbitSpin { to { transform: rotate(360deg); } }

  .orbit-lines { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
  .orbit-line { stroke: var(--line); stroke-width: 0.35; transition: stroke .3s ease, stroke-width .3s ease, opacity .3s ease; }
  .orbit-line.active {
    stroke: var(--accent); stroke-width: 0.55; stroke-dasharray: 3 2.4; animation: orbitFlow .5s linear infinite;
    filter: drop-shadow(0 0 2.5px rgba(255,90,31,0.65));
  }
  @keyframes orbitFlow { to { stroke-dashoffset: -5.4; } }

  .orbit.in .orbit-line {
    animation: orbitLineIn .5s ease both;
  }
  .orbit.in .orbit-line.active { animation: orbitLineIn .5s ease both, orbitFlow .5s linear infinite .5s; }
  .orbit-line:nth-child(1) { animation-delay: .05s; }
  .orbit-line:nth-child(2) { animation-delay: .1s; }
  .orbit-line:nth-child(3) { animation-delay: .15s; }
  .orbit-line:nth-child(4) { animation-delay: .2s; }
  .orbit-line:nth-child(5) { animation-delay: .25s; }
  .orbit-line:nth-child(6) { animation-delay: .3s; }
  @keyframes orbitLineIn { from { opacity: 0; } to { opacity: 1; } }

  .orbit-hub {
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px;
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 280px; min-height: 204px;
    background: radial-gradient(140% 130% at 28% 18%, var(--navy-2), var(--navy) 70%); color: #fff; border: none;
    border-radius: 50%/38%; cursor: default; padding: 32px 30px; font-family: inherit;
    box-shadow: 0 30px 60px -22px rgba(14,42,77,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset;
    animation: orbitHubBreathe 7s ease-in-out infinite;
  }
  @keyframes orbitHubBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.015); }
  }
  .orbit-hub-mark { width: 26px; height: 26px; margin-bottom: 2px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
  .orbit-hub-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); }
  .orbit-hub-title { font-family: var(--serif); font-size: 19px; margin: 2px 0 0; line-height: 1.3; color: #fff; }
  .orbit-hub-desc { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.8); margin: 0; }
  .orbit-hub.swap .orbit-hub-title, .orbit-hub.swap .orbit-hub-desc, .orbit-hub.swap .orbit-hub-cta { animation: orbitHubSwap .4s ease; }
  @keyframes orbitHubSwap { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
  .orbit-hub-cta {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12.5px; font-weight: 700;
    color: var(--accent-2); text-transform: uppercase; letter-spacing: .03em; transition: gap .25s ease;
  }
  .orbit-hub-cta:hover { gap: 10px; }
  .orbit-hub-cta[hidden] { display: none; }

  .orbit-node {
    position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%) scale(.85); width: auto; margin-bottom: 0; z-index: 2;
    opacity: 0;
  }
  .orbit.in .orbit-node { animation: orbitNodeIn .55s cubic-bezier(.2,.8,.2,1) both; }
  .orbit-node:nth-child(5) { animation-delay: .08s; }
  .orbit-node:nth-child(6) { animation-delay: .16s; }
  .orbit-node:nth-child(7) { animation-delay: .24s; }
  .orbit-node:nth-child(8) { animation-delay: .32s; }
  .orbit-node:nth-child(9) { animation-delay: .4s; }
  .orbit-node:nth-child(10) { animation-delay: .48s; }
  @keyframes orbitNodeIn { from { opacity: 0; transform: translate(-50%, -50%) scale(.85); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

  .orbit-node-desc { display: none; }
  .orbit-node-num {
    display: flex; align-items: center; justify-content: center; position: absolute; top: -8px; right: -6px;
    width: 22px; height: 22px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--line);
    font-family: var(--serif); font-size: 10.5px; font-weight: 700; color: var(--ink-soft); z-index: 3;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
  }
  .orbit-node.active .orbit-node-num { background: var(--accent); border-color: var(--accent); color: #fff; }
  .orbit-node-btn {
    position: relative; width: 152px; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 14px;
    cursor: pointer; transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  }
  .orbit-node-icon { transition: transform .3s ease, box-shadow .3s ease; }
  .orbit-node:hover .orbit-node-btn, .orbit-node.active .orbit-node-btn { border-color: rgba(255,90,31,0.4); box-shadow: var(--shadow); transform: translateY(-4px); }
  .orbit-node.active .orbit-node-icon { transform: scale(1.1); box-shadow: 0 12px 24px -8px rgba(255,90,31,0.65); }
  .orbit-node-label { font-size: 14px; line-height: 1.3; }
}

@media (min-width: 860px) and (max-width: 1040px) {
  .orbit-node-btn { width: 132px; padding: 14px 10px; }
  .orbit-hub { width: 236px; min-height: 180px; padding: 28px 24px; }
}

/* ============ Process (live chat) ============ */
.process-wrap { background: var(--navy); border-radius: 32px; margin: 0 24px; padding: 100px 0; position: relative; overflow: hidden; }
.process-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.process-bg::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(560px 380px at 12% -5%, rgba(255,90,31,0.22), transparent 62%),
    radial-gradient(480px 340px at 100% 105%, rgba(255,180,84,0.16), transparent 60%);
}
.process-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1.2px, transparent 1.6px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
          mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  opacity: .6;
}
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: 56px; align-items: center; }
.process-grid h2, .process-grid .eyebrow { color: #fff; }
.process-grid .eyebrow { color: var(--accent-2); }
.process-grid .lede { color: rgba(255,255,255,0.7); max-width: 480px; }

.process-legend { list-style: none; margin: 32px 0 34px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.process-legend li { display: flex; align-items: flex-start; gap: 14px; }
.legend-num {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 13px; color: var(--accent-2);
}
.process-legend strong { display: block; font-size: 15px; color: #fff; margin-bottom: 2px; }
.process-legend span { font-size: 13px; color: rgba(255,255,255,0.6); }

.process-phone {
  background: #0B1F35; border-radius: 24px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; display: flex; flex-direction: column; max-width: 400px; margin-left: auto;
}
.process-phone-head { background: #075E54; padding: 16px 18px; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.process-phone-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: #fff; flex-shrink: 0; }
.process-phone-avatar img { width: 100%; height: 100%; object-fit: cover; }
.process-phone-head strong { display: block; font-size: 14.5px; color: #fff; }
.process-phone-head span { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,0.75); }
.process-phone-dot { width: 7px; height: 7px; border-radius: 50%; background: #3CE07A; box-shadow: 0 0 0 2px rgba(60,224,122,0.3); animation: avail-pulse 2s ease-in-out infinite; }
.process-phone-body {
  min-height: 400px; padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; justify-content: flex-end;
  background-color: #0e2740; background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1.4px); background-size: 16px 16px;
}
.process-msg { display: flex; opacity: 0; transform: translateY(8px); animation: process-msg-in .35s ease forwards; }
@keyframes process-msg-in { to { opacity: 1; transform: translateY(0); } }
.process-bubble { max-width: 84%; background: #fff; color: var(--ink); padding: 10px 13px 8px; border-radius: 13px; border-top-left-radius: 3px; font-size: 13.5px; line-height: 1.45; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.process-time { display: flex; align-items: center; justify-content: flex-end; gap: 4px; margin-top: 4px; font-size: 10.5px; color: #8a94a3; }
.process-time svg { width: 13px; height: 13px; color: #8a94a3; opacity: 0; transition: opacity .3s ease, color .3s ease; }
.process-time svg.seen { opacity: 1; color: #4FC3F7; }
.process-typing { display: flex; align-items: center; gap: 4px; background: #fff; padding: 11px 14px; border-radius: 13px; border-top-left-radius: 3px; width: fit-content; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.process-typing span { width: 6px; height: 6px; border-radius: 50%; background: #b7c0cc; animation: process-typing-bounce 1.1s ease-in-out infinite; }
.process-typing span:nth-child(2) { animation-delay: .15s; }
.process-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes process-typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

@media (max-width: 980px) {
  .process-grid { grid-template-columns: minmax(0, 1fr); }
  .process-wrap { border-radius: 20px; }
  .process-phone { margin: 0 auto; }
}
@media (max-width: 640px) { .process-wrap { margin: 0 12px; padding: 64px 0; } }
@media (prefers-reduced-motion: reduce) { .process-msg { animation: none; opacity: 1; transform: none; } .process-phone-dot { animation: none; } }

/* ============ Pricing / Calculator ============ */
.policy-banner {
  display: flex; align-items: center; justify-content: center; max-width: 660px; margin: 0 auto 46px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; padding: 6px; box-shadow: var(--shadow-sm);
}
.policy-item { display: flex; align-items: center; gap: 12px; padding: 10px 26px; flex: 1; min-width: 0; }
.policy-divider { width: 1px; height: 38px; background: var(--line); flex-shrink: 0; }
.policy-icon {
  width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 18px -8px rgba(255,90,31,0.6);
}
.policy-icon svg { width: 19px; height: 19px; color: #fff; }
.policy-item strong { display: block; font-size: 14px; color: var(--navy); }
.policy-item span { font-size: 11.5px; color: var(--ink-soft); }
@media (max-width: 640px) {
  .policy-banner { flex-direction: column; border-radius: 22px; padding: 10px; }
  .policy-divider { width: 80%; height: 1px; margin: 2px auto; }
  .policy-item { width: 100%; padding: 12px 16px; }
}

.calc-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 50px; align-items: start; }
.calc-card { position: relative; background: var(--bg-card); border-radius: var(--radius); padding: 40px 38px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; }
.calc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.form-row { margin-bottom: 20px; }
.form-row label { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; margin-bottom: 8px; color: var(--navy); }
.label-icon { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.form-row select, .form-row input, .form-row textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--line); font-family: inherit;
  font-size: 15px; background: #fff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row select:focus, .form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,90,31,0.12); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; }
.checkbox-row input { width: auto; accent-color: var(--accent); }

.chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.extra-chip {
  position: relative; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--line); background: #fff; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.extra-chip:hover { transform: translateY(-2px); border-color: rgba(255,90,31,0.4); }
.extra-chip input { position: absolute; opacity: 0; pointer-events: none; }
.extra-chip svg:first-of-type { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; transition: color .25s ease; }
.extra-chip span { flex: 1; }
.chip-check { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; opacity: 0; transform: scale(.5); transition: opacity .2s ease, transform .2s ease; }
.extra-chip:has(input:checked) { border-color: var(--accent); background: rgba(255,90,31,0.07); }
.extra-chip:has(input:checked) .chip-check { opacity: 1; transform: scale(1); }
@media (max-width: 560px) { .chip-grid { grid-template-columns: 1fr; } }

/* ---- Visual option cards (replace <select> for size/distance) ---- */
.option-grid { display: grid; gap: 10px; }
.size-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.distance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.option-card {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 16px 8px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  text-align: center; transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.option-card:hover { transform: translateY(-2px); border-color: rgba(255,90,31,0.4); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card strong { font-family: var(--serif); font-size: 22px; color: var(--navy); line-height: 1; }
.option-card span { font-size: 11px; font-weight: 600; color: var(--ink-soft); }
.option-card svg { width: 21px; height: 21px; color: var(--accent); }
.option-card:has(input:checked) { border-color: var(--accent); background: rgba(255,90,31,0.07); }
.option-card:has(input:checked) strong, .option-card:has(input:checked) span { color: var(--navy); }
.option-card:has(input:checked)::after { content: ""; position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@media (max-width: 560px) { .size-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .distance-grid { grid-template-columns: 1fr; } }

.time-pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.time-pill { position: relative; }
.time-pill input { position: absolute; opacity: 0; pointer-events: none; }
.time-pill span {
  display: inline-flex; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.time-pill:hover span { border-color: rgba(255,90,31,0.4); }
.time-pill input:checked + span { border-color: var(--accent); background: var(--accent); color: #fff; }

/* ---- "So geht's weiter" info card (ersetzt den Preis-Ticket) ---- */
.next-wrap { position: sticky; top: 110px; }
.next-card { background: var(--navy); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.next-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.next-card-head img { width: 34px; height: 34px; flex-shrink: 0; }
.next-card-head span { font-family: var(--serif); font-size: 15.5px; font-weight: 700; }

.next-steps { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.next-steps li { display: flex; gap: 14px; align-items: flex-start; }
.next-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 13px;
}
.next-steps li strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.next-steps li span { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.45; }

.next-badges { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); margin-bottom: 22px; }
.next-badges span {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,0.08); padding: 7px 12px; border-radius: 999px;
}
.next-badges svg { width: 14px; height: 14px; color: var(--accent-2); flex-shrink: 0; }

.next-direct { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); }
.next-direct > span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.next-direct-links { display: flex; gap: 10px; }
.next-direct-links a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 11px; font-size: 13px; font-weight: 700;
  color: #fff; text-decoration: none; transition: background .2s ease;
}
.next-direct-links a:hover { background: rgba(255,255,255,0.18); }
.next-direct-links svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 980px) { .calc-wrap { grid-template-columns: minmax(0, 1fr); } .next-wrap { position: static; } }

/* ============ Booking steps ============ */
.booking-steps-indicator { display: flex; align-items: center; margin-bottom: 34px; }
.bsi-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.bsi-circle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt); border: 1.5px solid var(--line); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.bsi-check { width: 16px; height: 16px; display: none; }
.bsi-step.active .bsi-circle { background: var(--accent); border-color: var(--accent); color: #fff; }
.bsi-step.completed .bsi-circle { background: var(--navy); border-color: var(--navy); color: #fff; }
.bsi-step.completed .bsi-num { display: none; }
.bsi-step.completed .bsi-check { display: block; }
.bsi-label { font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; transition: color .3s ease; }
.bsi-step.active .bsi-label { color: var(--navy); }
.bsi-line { flex: 1; height: 2px; background: var(--line); margin: 0 12px; position: relative; top: -18px; }
.bsi-line-fill { display: block; height: 100%; width: 0; background: var(--accent); transition: width .4s ease; }

.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeUp .4s ease; }
.step-actions { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

/* ============ Reviews / Trust ============ */
.trust-panel-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: stretch; }

.quote-panel {
  position: relative; overflow: hidden; background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 44px 40px; display: flex; flex-direction: column; justify-content: center;
}
.quote-panel::before {
  content: ""; position: absolute; inset: -30%; background: radial-gradient(circle at 85% 15%, rgba(255,90,31,0.28), transparent 55%); pointer-events: none;
}
.quote-mark { position: absolute; top: 22px; left: 30px; width: 60px; height: 60px; color: rgba(255,255,255,0.08); }
.quote-text { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; color: #fff; margin: 6px 0 26px; }
.quote-author { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 15px; color: #fff;
}
.quote-author strong { display: block; font-size: 14.5px; }
.quote-author span { font-size: 12.5px; opacity: .7; }
.quote-badges { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); }
.quote-badges span { font-size: 12.5px; font-weight: 700; background: rgba(255,255,255,0.08); padding: 7px 14px; border-radius: 999px; }

.google-panel {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 40px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.google-panel .google-icon { width: 42px; height: 42px; margin-bottom: 18px; }
.google-panel h3 { margin-bottom: 10px; }
.google-panel p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 20px; }
.stars-outline { display: flex; gap: 5px; color: var(--accent); margin-bottom: 24px; }
.stars-outline svg { width: 22px; height: 22px; }

@media (max-width: 980px) { .trust-panel-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .quote-panel { padding: 34px 26px; } }

/* ============ FAQ (reader console: nav list + live answer pane) ============ */
.faq-console {
  display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); max-width: 980px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-nav { position: relative; padding: 28px 14px 28px 22px; background: var(--bg-alt); border-right: 1px solid var(--line); }
.faq-nav-indicator {
  position: absolute; left: 0; top: 0; width: 3px; background: var(--accent); border-radius: 0 3px 3px 0;
  transition: transform .4s cubic-bezier(.4,.1,.2,1), height .4s cubic-bezier(.4,.1,.2,1);
}
.faq-nav-group + .faq-nav-group { margin-top: 24px; }
.faq-nav-label { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); padding: 0 12px 8px; }
.faq-nav-payload { display: none; }
.faq-nav-item {
  display: block; width: 100%; text-align: left; background: none; border: none; padding: 12px 12px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; line-height: 1.35; font-family: inherit;
  transition: color .25s ease, background .25s ease;
}
.faq-nav-item:hover { background: rgba(255,90,31,0.08); color: var(--navy); }
.faq-nav-item.active { color: var(--navy); background: #fff; font-weight: 700; box-shadow: var(--shadow-sm); }
.faq-nav-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.faq-reader { padding: 40px 44px; display: flex; flex-direction: column; }
.faq-reader.swap { animation: faqReaderSwap .45s ease; }
@keyframes faqReaderSwap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.faq-reader-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.faq-reader-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--bg-alt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.faq-reader-icon svg { width: 24px; height: 24px; color: var(--accent); }
.faq-reader-count { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); letter-spacing: .04em; font-variant-numeric: tabular-nums; }
.faq-reader h3 { font-family: var(--serif); font-size: 25px; color: var(--navy); margin: 0 0 16px; line-height: 1.3; }
.faq-reader p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; max-width: 520px; }

.faq-feedback { display: flex; align-items: center; gap: 10px; padding-top: 18px; margin-top: 24px; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--ink-soft); }
.faq-feedback-buttons { display: flex; gap: 6px; }
.faq-feedback button { width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.faq-feedback button:hover { border-color: var(--accent); }
.faq-feedback button svg { width: 14px; height: 14px; color: var(--ink-soft); }
.faq-feedback button.picked { background: var(--accent); border-color: var(--accent); }
.faq-feedback button.picked svg { color: #fff; }

@media (max-width: 760px) {
  .faq-console { grid-template-columns: minmax(0, 1fr); }
  .faq-nav { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 12px 22px 18px; }
  .faq-reader { padding: 32px 24px; }
  .faq-reader h3 { font-size: 21px; }
}

/* ============ Contact ============ */
.contact-section { background: var(--bg-alt); }

.live-status-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-sm); margin-top: 16px;
}

.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 50px; }
.channel-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  background: var(--bg-card); border: 1.5px solid var(--line); border-radius: 18px; padding: 22px 20px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.channel-card:hover { transform: translateY(-4px); border-color: rgba(255,90,31,0.4); box-shadow: var(--shadow-sm); }
.channel-card.featured { background: var(--navy); border-color: var(--navy); }
.channel-tag { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; letter-spacing: .3px; color: var(--accent-2); background: rgba(255,255,255,0.1); padding: 4px 9px; border-radius: 999px; }
.channel-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; transition: transform .25s ease; }
.channel-card:hover .channel-icon { transform: scale(1.08) rotate(-4deg); }
.channel-icon svg { width: 20px; height: 20px; color: var(--accent); }
.channel-card.featured .channel-icon { background: rgba(255,255,255,0.1); }
.channel-card.featured .channel-icon svg { color: #25D366; }
.channel-card strong { font-family: var(--serif); font-size: 17px; color: var(--navy); }
.channel-card.featured strong { color: #fff; }
.channel-time { font-size: 12px; color: var(--ink-soft); }
.channel-card.featured .channel-time { color: rgba(255,255,255,0.65); }
@media (max-width: 980px) { .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .channel-grid { grid-template-columns: 1fr; } }

#kontakt-form:target { animation: kontakt-form-flash 1.6s ease; }
@keyframes kontakt-form-flash { 0% { box-shadow: 0 0 0 4px rgba(255,90,31,0.5); } 100% { box-shadow: var(--shadow-sm); } }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 50px; }
.contact-info-card { position: relative; overflow: hidden; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px; }
.contact-info-glow { position: absolute; inset: -30%; background: radial-gradient(circle at 90% 0%, rgba(255,90,31,0.28), transparent 55%); pointer-events: none; }
.contact-info-card h3 { position: relative; z-index: 1; color: #fff; }
.contact-line { position: relative; z-index: 1; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; transition: transform .25s ease; }
.contact-line:hover { transform: translateX(3px); }
.contact-icon {
  width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: background .25s ease;
}
.contact-line:hover .contact-icon { background: var(--accent); }
.contact-icon svg { width: 18px; height: 18px; color: var(--accent-2); transition: color .25s ease; }
.contact-line:hover .contact-icon svg { color: #fff; }
.contact-line strong { display: block; font-size: 14px; }
.contact-line span, .contact-line a { font-size: 14px; color: rgba(255,255,255,0.75); }
.contact-line > div { display: flex; flex-direction: column; gap: 3px; }
.availability-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; font-weight: 700; }
.contact-line .availability-badge, .contact-line .availability-badge span { font-size: 12px; color: rgba(255,255,255,0.85); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #8a94a3; flex-shrink: 0; }
.avail-dot.online { background: #3CE07A; box-shadow: 0 0 0 3px rgba(60,224,122,0.25); animation: avail-pulse 2s ease-in-out infinite; }
@keyframes avail-pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(60,224,122,0.25); } 50% { box-shadow: 0 0 0 6px rgba(60,224,122,0.12); } }
.social-row { position: relative; z-index: 1; display: flex; gap: 12px; margin-top: 28px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s ease; }
.social-row a:hover { background: var(--accent); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.contact-form-card { background: var(--bg-card); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

/* ============ Footer ============ */
footer { position: relative; background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { position: relative; color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; padding-left: 16px; }
.footer-grid h4::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 2px; background: var(--accent); }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { position: relative; font-size: 14.5px; transition: color .25s ease, padding-left .25s ease; }
.footer-grid a:hover { color: #fff; padding-left: 6px; }
.footer-grid a::before { content: "›"; position: absolute; left: -14px; opacity: 0; transition: opacity .25s ease; color: var(--accent); }
.footer-grid a:hover::before { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-credit { text-align: center; margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-credit a { font-weight: 700; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-credit a:hover { opacity: .8; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

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

/* ============ Back to top ============ */
.back-to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 600; width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .back-to-top { width: 42px; height: 42px; bottom: 20px; left: 16px; } }

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 600; width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2.4s ease-out infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.9); opacity: 0; } }

/* ============ Chatbot widget ============ */
.chat-toggle {
  position: fixed; bottom: 26px; right: 100px; z-index: 600; width: 62px; height: 62px; border-radius: 50%;
  background: var(--navy); border: none; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.chat-toggle:hover { transform: scale(1.08); }
.chat-toggle svg { width: 28px; height: 28px; color: #fff; }
@media (max-width: 560px) { .chat-toggle { right: 96px; width: 54px; height: 54px; bottom: 20px; } .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; } }

.chat-panel {
  position: fixed; bottom: 100px; right: 26px; z-index: 601; width: 360px; max-height: 70vh;
  background: #fff; border-radius: 20px; box-shadow: var(--shadow); display: none; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line);
}
.chat-panel.open { display: flex; }
@media (max-width: 560px) { .chat-panel { right: 12px; left: 12px; width: auto; bottom: 88px; } }
.chat-head { background: var(--navy); color: #fff; padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-head strong { display: block; font-size: 14.5px; }
.chat-head span { font-size: 12px; color: var(--accent-2); }
.chat-dot { width: 9px; height: 9px; border-radius: 50%; background: #3CE07A; box-shadow: 0 0 0 3px rgba(60,224,122,0.25); }
.chat-close { margin-left: auto; background: none; border: none; color: #fff; opacity: .7; width: 28px; height: 28px; }
.chat-close svg { width: 18px; height: 18px; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-alt); }
.msg { max-width: 84%; padding: 12px 15px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.user { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 14px; background: var(--bg-alt); }
.chat-quick button { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 12.5px; font-weight: 600; color: var(--navy); }
.chat-quick button:hover { border-color: var(--accent); color: var(--accent); }
.chat-input-row { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); background: #fff; }
.chat-input-row input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 16px; font-size: 14px; font-family: inherit; }
.chat-input-row input:focus { outline: none; border-color: var(--accent); }
.chat-input-row button { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); border: none; display: flex; align-items: center; justify-content: center; }
.chat-input-row button svg { width: 18px; height: 18px; color: #fff; }

/* ============ Misc ============ */
.toast { position: fixed; bottom: 26px; left: 26px; z-index: 700; background: var(--navy); color: #fff; padding: 16px 22px; border-radius: 12px; box-shadow: var(--shadow); font-size: 14px; transform: translateY(20px); opacity: 0; pointer-events: none; transition: .3s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.legal-content { max-width: 760px; margin: 0 auto; padding-top: 160px; padding-bottom: 100px; }
.legal-content h2 { margin-top: 42px; }
.legal-content h3 { margin-top: 26px; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 15.5px; }
.legal-content ul { padding-left: 22px; margin-bottom: 1em; }
.legal-notice { background: var(--bg-alt); border-left: 3px solid var(--accent); padding: 16px 20px; border-radius: 10px; font-size: 14px; color: var(--ink-soft); margin-bottom: 30px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
