/* ============================================================
   Travelly – Design System v2 (2026)
   Professionelles, ruhiges Layout. Farben: App-Blau-Skala.
   ============================================================ */

:root {
  --blue: #4FADFF;
  --blue-600: #2E93EE;
  --blue-700: #1F6FBE;
  --blue-dark: #0E2A47;
  --blue-deep: #0A1E36;
  --ink: #17233B;
  --ink-soft: #43506B;
  --muted: #8A94A8;
  --line: #E6EAF2;
  --bg: #FFFFFF;
  --bg-soft: #F4F7FB;
  --bg-tint: #EAF3FC;
  --accent: #FF9433;
  --green: #33C787;
  --shadow-sm: 0 1px 2px rgba(14,42,71,.06), 0 2px 6px rgba(14,42,71,.05);
  --shadow-md: 0 4px 12px rgba(14,42,71,.08), 0 10px 28px rgba(14,42,71,.08);
  --shadow-lg: 0 12px 32px rgba(14,42,71,.14), 0 24px 64px rgba(14,42,71,.10);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

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

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--blue); }

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

/* ---------------------------------------------------------- Typo */

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.14rem; }
h4 { font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

.lead { font-size: 1.14rem; color: var(--ink-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  color: var(--blue-700); background: var(--bg-tint);
  border: 1px solid #D9ECFF; border-radius: 999px;
  padding: 6px 14px; text-transform: uppercase;
}

p { color: inherit; }

/* ---------------------------------------------------------- Nav */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-nav.scrolled { border-bottom-color: var(--line); }

.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); }
.brand img { width: 26px; height: 26px; }
.brand:hover { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: inline-block; padding: 8px 14px; border-radius: 10px;
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-links a.active { color: var(--blue-700); background: var(--bg-tint); font-weight: 600; }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 20px 16px; box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .2s var(--ease), opacity .2s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; font-size: 1.02rem; }
  .nav-cta { margin: 8px 0 0; }
}

/* ---------------------------------------------------------- Buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: .97rem; font-weight: 600;
  padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s ease, background .18s ease, border-color .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible { outline: 3px solid rgba(79,173,255,.4); outline-offset: 2px; }

.btn-primary { background: linear-gradient(180deg, var(--blue), var(--blue-600)); color: #fff; box-shadow: 0 4px 12px rgba(46,147,238,.35); }
.btn-primary:hover { background: linear-gradient(180deg, var(--blue-600), var(--blue-700)); color: #fff; box-shadow: 0 6px 18px rgba(46,147,238,.42); transform: translateY(-1px); }

.btn-secondary { background: #fff; border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: #C4DCF5; color: var(--blue-700); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }

.btn-lg { padding: 14px 26px; font-size: 1.02rem; border-radius: 14px; }

.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------------------------------------------------- Hero */

.hero {
  position: relative; overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
  padding: 96px 0 120px;
}
.hero-bg {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: .5; filter: saturate(.9);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(79,173,255,.35), transparent 55%),
    linear-gradient(180deg, rgba(10,30,54,.55), rgba(10,30,54,.82) 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #fff; }
.hero h1 { color: #fff; margin: 20px 0 18px; }
.hero .lead { color: rgba(255,255,255,.82); max-width: 34em; }
.hero .actions { margin-top: 30px; }
.hero .proof { margin-top: 18px; font-size: .88rem; color: rgba(255,255,255,.66); display: flex; align-items: center; gap: 8px; }
.hero .proof svg { width: 16px; height: 16px; flex: none; }

@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 64px 0 80px; }
  .hero-mockup { display: none; }
}

/* Phone-Mockup (App-Screenshot als nachgebautes UI) */

.hero-mockup { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px; border-radius: 38px; background: #fff; color: var(--ink);
  box-shadow: 0 40px 80px rgba(0,0,0,.45), var(--shadow-lg);
  overflow: hidden; transform: rotate(2deg);
  border: 8px solid #101d33;
}
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px 4px; font-size: .72rem; font-weight: 600; color: var(--ink); }
.phone-notch { width: 110px; height: 24px; margin: 0 auto; border-radius: 0 0 14px 14px; background: #101d33; }
.phone-app {
  background: linear-gradient(180deg, var(--bg-tint), #fff 40%);
}
.phone-head { padding: 14px 20px 8px; }
.phone-head small { font-size: .7rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.phone-head h4 { text-transform: none; font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin-top: 2px; }
.phone-day { background: #fff; margin: 10px; border-radius: 16px; padding: 12px 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.phone-day h5 { font-size: .82rem; font-weight: 600; color: var(--blue-700); letter-spacing: .02em; }
.phone-day ul { list-style: none; margin-top: 8px; display: grid; gap: 7px; }
.phone-day li { display: flex; gap: 9px; align-items: flex-start; font-size: .78rem; color: var(--ink-soft); line-height: 1.35; }
.phone-day li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 5px; flex: none; }
.phone-cta { margin: 12px; padding: 12px; border-radius: 16px; background: linear-gradient(180deg, var(--blue), var(--blue-600)); color: #fff; text-align: center; font-size: .84rem; font-weight: 700; box-shadow: 0 6px 16px rgba(46,147,238,.35); }
.phone-cta span { display: block; font-weight: 500; font-size: .72rem; opacity: .85; margin-top: 2px; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--shadow-lg); font-size: .82rem; font-weight: 600; color: var(--ink);
  animation: float 6s ease-in-out infinite;
}
.float-card svg { width: 20px; height: 20px; color: var(--green); }
.float-card .fc-sub { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); }
.float-card.f1 { top: 8%; left: -34px; animation-delay: 0s; }
.float-card.f2 { bottom: 14%; right: -30px; animation-delay: 1.6s; }

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

/* ---------------------------------------------------------- Sections */

.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: linear-gradient(180deg, var(--bg-tint), #fff 70%); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* Statistiken */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.stat .num { font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em; color: var(--blue-700); line-height: 1.1; }
.stat .label { font-size: .88rem; color: var(--muted); margin-top: 6px; }

/* Grid & Cards */

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C9E2FA; }

.icon-box {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint); color: var(--blue-700); margin-bottom: 16px;
}
.icon-box svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Bild-Karten (Guides / Blog) */

.img-card {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-soft); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  text-decoration: none !important; color: var(--ink);
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}
.img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C9E2FA; }
.img-card .cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.img-card:hover .cover { transform: scale(1.045); }
.img-card .body { padding: 20px 22px 22px; }
.img-card h3 { margin-bottom: 6px; }
.img-card p { color: var(--muted); font-size: .93rem; line-height: 1.5; }

.meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg-tint); color: var(--blue-700);
}
.tag.orange { background: #FFF2E3; color: #C96A1B; }
.tag.green { background: #E6F8EF; color: #1E8C5E; }
.meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* ---------------------------------------------------------- Steps */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: .8rem; font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-tint); border: 1px solid #D9ECFF;
  margin-bottom: 18px; letter-spacing: .02em;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------------------------------------------------------- App-Sektion */

.app-show { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
@media (max-width: 920px) { .app-show { grid-template-columns: 1fr; gap: 48px; } .app-show .phone { transform: none; } }

.check-list { list-style: none; display: grid; gap: 16px; margin-top: 24px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: var(--ink); font-weight: 500; }
.check-list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 2px; }
.check-list small { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; font-size: .9rem; }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 14px; padding: 10px 20px;
  border: 0; cursor: default; transition: transform .18s var(--ease), box-shadow .2s ease;
}
.store-badge svg { width: 26px; height: 26px; }
.store-badge .sb-top { font-size: .66rem; opacity: .7; letter-spacing: .03em; }
.store-badge .sb-bot { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }

/* ---------------------------------------------------------- FAQ */

.faq { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.faq details { border-top: 1px solid var(--line); }
.faq details:first-child { border-top: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-soft); }
.faq summary::after {
  content: ""; width: 10px; height: 10px; flex: none;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); margin-top: -4px; transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq .faq-answer { padding: 0 24px 22px; color: var(--ink-soft); font-size: .97rem; }
.faq .faq-answer p { margin-top: 8px; }

/* ---------------------------------------------------------- CTA Band */

.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(120deg, var(--blue-dark), var(--blue-deep) 60%);
  color: #fff; padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 30em; margin-top: 10px; }

/* ---------------------------------------------------------- Blog-Artikel / Artikel */

.page-hero { padding: 56px 0 20px; }
.crumb { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--blue-700); }

.post-list { display: grid; gap: 24px; padding: 20px 0 80px; }

.article { max-width: 740px; margin: 0 auto; padding: 24px 24px 80px; }
.article .lead { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 28px; }
.article h2 { margin: 42px 0 16px; }
.article h3 { margin: 30px 0 12px; }
.article p { margin-bottom: 16px; color: #2A3550; }
.article ul { margin: 0 0 18px 22px; }
.article li { margin-bottom: 8px; color: #2A3550; }
.article strong { color: var(--ink); }

.article figure { margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article figure img { width: 100%; display: block; }
.article figcaption { padding: 10px 16px; font-size: .8rem; color: var(--muted); background: var(--bg-soft); }

/* Rechtliches (Impressum / Datenschutz) */
.legal-page { max-width: 820px; margin: 0 auto; padding: 14px 24px 90px; }
.legal-page h1 { font-size: 2.2rem; margin: 8px 0 6px; }
.legal-page .lead { font-size: 1.08rem; color: var(--muted); margin-bottom: 26px; }

.legal-toc { display: grid; gap: 2px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin: 22px 0 34px; }
.legal-toc strong { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.legal-toc a { display: flex; gap: 10px; padding: 7px 4px; font-size: .95rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.legal-toc a:last-child { border-bottom: 0; }
.legal-toc a:hover { color: var(--blue-700); }
.legal-toc a .n { color: var(--blue); font-variant-numeric: tabular-nums; min-width: 24px; }

.legal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 28px 22px; margin: 22px 0; scroll-margin-top: 90px; }
.legal-card h2 { display: flex; align-items: baseline; gap: 12px; margin: 0 0 14px; font-size: 1.22rem; }
.legal-card h2 .n { color: var(--blue); font-size: .92rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.legal-card p, .legal-card li { color: #2A3550; margin-bottom: 10px; line-height: 1.65; }
.legal-card ul { margin: 0 0 6px 22px; }
.legal-card .note { background: var(--bg-tint); border-radius: 10px; padding: 12px 16px; font-size: .92rem; color: var(--ink-soft); margin-top: 6px; }
.legal-card .note strong { color: var(--ink); }

.legal-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.legal-contact .item { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: var(--bg-soft); }
.legal-contact .item small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.legal-contact .item p { margin: 0; color: var(--ink); font-size: .95rem; }

@media (max-width: 620px) {
  .legal-contact { grid-template-columns: 1fr; }
  .legal-card { padding: 20px 18px 16px; }
}

/* Tag-Struktur auf Guide-Seiten */
.guide-day { margin: 26px 0; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 24px 24px 18px; background: #fff; box-shadow: var(--shadow-sm); }
.guide-day h3 { font-size: 1.12rem; }
.guide-day ul { list-style: none; margin: 14px 0 0; }
.guide-day li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.guide-day li:last-child { border-bottom: 0; }
.guide-day li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex: none; }
.guide-day li strong { color: var(--ink); }

.food-box { background: var(--bg-soft); border-radius: var(--radius); padding: 24px 24px 20px; margin: 28px 0; }
.food-box h3 { color: var(--blue-700); }
.food-box ul { list-style: none; margin: 12px 0 0; }
.food-box li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--ink-soft); }
.food-box li::before { content: "🍴"; font-size: .8rem; }

.cta-box { margin: 48px 0 8px; border: 1px solid #D9ECFF; background: var(--bg-tint); border-radius: var(--radius-lg); padding: 34px 32px; text-align: center; }
.cta-box h2 { font-size: 1.4rem; }
.cta-box p { color: var(--muted); margin: 10px 0 22px; }

/* ---------------------------------------------------------- Cover-Hero (Guides) */

.cover-hero { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; margin: 0 0 32px; box-shadow: var(--shadow-md); aspect-ratio: 21/8; background: var(--bg-tint); }
.cover-hero img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) { .cover-hero { aspect-ratio: 16/7; } }

/* ---------------------------------------------------------- Reveal-Animationen */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .hero .phone { animation: none; }
}

/* ---------------------------------------------------------- Footer */

.site-footer { background: var(--blue-deep); color: #B9C6DC; padding: 64px 0 32px; margin-top: 0; }
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .site-footer .container { grid-template-columns: 1fr 1fr; } }
.site-footer a { color: #B9C6DC; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #7f93b5; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer li { font-size: .93rem; }
.brand-line { display: flex; align-items: center; gap: 9px; font-weight: 800; color: #fff; font-size: 1.1rem; }
.site-footer .about { margin-top: 14px; font-size: .9rem; max-width: 24em; line-height: 1.6; }
.site-footer .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #7f93b5; }