﻿:root {
  --bg: #0b0f16;
  --bg-soft: #101722;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --text: #e9eef6;
  --muted: rgba(233, 238, 246, 0.74);
  --yellow: #f2c200;
  --yellow-strong: #ffd84a;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --type-section-title: clamp(1.5rem, 1.18rem + 0.78vw, 1.95rem);
  --type-block-title: clamp(1.08rem, 0.98rem + 0.34vw, 1.3rem);
  --type-body: 0.95rem;
  --type-body-tight: 0.9rem;
  --type-lead: 1rem;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 194, 0, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 20%),
    var(--bg);
}
main,
.site-header,
.site-footer,
.section { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid #9fb4ff; outline-offset: 3px; }
.container { width: min(1060px, calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 58px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section h2 { margin: 0 0 8px; font-size: var(--type-section-title); }
.section-lead { margin: 0 0 22px; max-width: 64ch; color: var(--muted); font-size: var(--type-lead); line-height: 1.65; }
.services-intro {
  display: grid;
  gap: 6px;
}
.services-intro p {
  margin: 0;
  color: rgba(214, 221, 232, 0.62);
  font-size: clamp(0.82rem, 0.8rem + 0.08vw, 0.88rem);
  line-height: 1.44;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.02);
}
.services-intro p:nth-child(2) {
  padding-left: 14px;
  border-left: 1px solid rgba(242, 194, 0, 0.24);
  color: rgba(233, 238, 246, 0.42);
  font-size: 0.84rem;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.02);
}
#szolgaltatasok h2,
#szolgaltatasok .section-lead {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
#szolgaltatasok h2 {
  color: rgba(247, 248, 251, 0.82);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 10px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(242, 194, 0, 0.04);
}
#szolgaltatasok {
  padding-top: 34px;
}
.muted { color: var(--muted); }
.micro { font-size: 0.875rem; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.skip-link:focus { left: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 22, 0.85);
  isolation: isolate;
}
.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 44px; height: auto; object-fit: contain; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 1.05rem; }
.brand-text span { color: var(--muted); font-size: 0.9rem; }
.nav { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 11px; border-radius: 10px; color: rgba(233, 238, 246, 0.85); }
.nav a:hover, .nav a.active { text-decoration: none; background: rgba(255, 255, 255, 0.05); }
.menu-toggle {
  display: none;
  width: 68px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(232, 238, 248, 0.34);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(232, 238, 248, 0.12),
    0 10px 26px rgba(186, 196, 214, 0.08);
  transition:
    transform 0.16s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(240, 244, 250, 0.54);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(182, 194, 214, 0.16),
    0 0 0 1px rgba(240, 244, 250, 0.18);
  transform: translateY(-1px);
}
.header-cta { display: flex; gap: 8px; }
.mobile-actions { display: none; align-items: center; gap: 8px; }
.header-desktop-hide { display: inline-flex; }
.btn-mobile-pay {
  min-height: 36px;
  padding: 0 3px;
  border-radius: 11px;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  transition:
    transform 0.16s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px) scale(0.995); }
.btn-primary {
  color: #111;
  background: linear-gradient(180deg, var(--yellow-strong), var(--yellow));
  border-color: rgba(242, 194, 0, 0.85);
  box-shadow: 0 10px 24px rgba(242, 194, 0, 0.16);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ffe680, #f6cc29);
  border-color: rgba(255, 226, 128, 0.95);
  box-shadow:
    0 16px 30px rgba(242, 194, 0, 0.24),
    0 0 0 1px rgba(255, 226, 128, 0.28);
  transform: translateY(-2px);
}
.btn-primary:focus-visible {
  outline-color: rgba(255, 216, 74, 0.95);
}
.btn-pay {
  color: #eff7ff;
  background: linear-gradient(180deg, #143b63, #0b2746);
  border-color: rgba(96, 164, 236, 0.58);
  box-shadow: 0 10px 24px rgba(11, 39, 70, 0.28);
}
.btn-pay:hover {
  background: linear-gradient(180deg, #1a4c80, #12365c);
  border-color: rgba(134, 193, 255, 0.78);
  box-shadow:
    0 16px 30px rgba(11, 39, 70, 0.34),
    0 0 0 1px rgba(134, 193, 255, 0.18);
  transform: translateY(-2px);
}
.btn-pay:focus-visible {
  outline-color: rgba(134, 193, 255, 0.92);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.hero-actions .btn-ghost {
  border-color: rgba(232, 238, 248, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 22px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(232, 238, 248, 0.11),
    0 12px 28px rgba(186, 196, 214, 0.06);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.hero-actions .btn-ghost:hover,
.hero-actions .btn-ghost:focus-visible {
  border-color: rgba(242, 246, 252, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(242, 246, 252, 0.16),
    0 16px 34px rgba(186, 196, 214, 0.1);
}
.btn-ghost:focus-visible {
  outline-color: rgba(159, 180, 255, 0.95);
}
.btn-full { width: 100%; }
.hero-mobile-only { display: none; }
.hero {
  position: relative;
  overflow: clip;
  padding: 60px 0 56px;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.7), rgba(5, 8, 12, 0.95)),
    url("hero.webp") center/cover no-repeat;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
}
.hero-copy {
  --hero-copy-measure: clamp(420px, 58vw, 660px);
  max-width: none;
  justify-self: auto;
  margin-left: 0;
}
.hero-card {
  width: 100%;
  max-width: none;
  justify-self: auto;
  margin-right: 0;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 1.5rem + 1.65vw, 2.7rem);
  line-height: 1.1;
  max-width: var(--hero-copy-measure);
}
.lead {
  margin: 0 0 30px;
  font-size: var(--type-lead);
}
.hero-lead-desktop {
  text-shadow:
    0 0 14px rgba(242, 194, 0, 0.46),
    0 0 30px rgba(242, 194, 0, 0.32),
    0 0 44px rgba(242, 194, 0, 0.2),
    0 1px 0 rgba(255, 216, 74, 0.24);
}
.hero-lead-mobile,
.hero-call-label-mobile {
  display: none;
}
.hero-call-label-desktop {
  display: none;
}
.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, var(--hero-copy-measure));
  margin: 0 0 36px;
}
.hero-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 60px;
  letter-spacing: 0.06em;
}
.hero-actions .btn-ghost {
  letter-spacing: 0.18em !important;
}
.hero-call-btn > span:first-child {
  letter-spacing: 0.08em;
}
.hero-actions .btn-ghost,
.hero-card .card-actions .btn {
  font-weight: 800;
}
.hero-card .card-actions .btn {
  letter-spacing: 0.18em !important;
}
.hero-call-btn {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.hero-call-number {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
}
.hero-manifesto, .hero-intro {
  width: min(100%, 31rem);
  max-width: 31rem;
  color: rgba(233, 238, 246, 0.86);
  font-size: var(--type-body);
  line-height: 1.62;
}
.inline-highlight-link {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  font-weight: 700;
}
.inline-highlight-link:hover,
.inline-highlight-link:focus-visible {
  color: var(--yellow-strong);
}
.hero-manifesto {
  margin: 0;
}
.hero-intro {
  margin: 0;
}
.car-container { display: none; }
.hero-trust-mobile { display: none; }
.hero-divider {
  width: 72px;
  height: 2px;
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(242, 194, 0, 0.75), transparent);
}
.card, .feature, .box, .pricing-card, .contact-form {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.card, .feature, .box, .pricing-card, .contact-form, .pay-card { padding: 16px; }
.card, .feature, .box, .pricing-card, .contact-form, .contact-call, .contact-facebook {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.card:hover, .feature:hover, .box:hover, .pricing-card:hover, .contact-form:hover, .contact-call:hover, .contact-facebook:hover {
  transform: translateY(-2px) translateZ(0);
  border-color: rgba(242, 194, 0, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}
.card-cta .cta-list { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 8px; }
.card-cta .cta-list li { position: relative; padding-left: 22px; }
.card-cta .cta-list li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow); }
.hero-card .card-cta {
  padding: 18px;
}
.hero-card .card-cta h2 {
  margin: 0 0 14px;
  font-size: var(--type-section-title);
}
.hero-card-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
  padding-right: 76px;
  isolation: isolate;
}
.hero-card-title-text {
  position: relative;
  z-index: 1;
}
.hero-card-title-icon {
  position: absolute;
  top: 68%;
  right: 0;
  width: 64px;
  height: 64px;
  transform: translateY(-50%);
  opacity: 0.9;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
  z-index: 0;
}
.hero-card .cta-list {
  gap: 10px;
}
.hero-card .cta-list li {
  padding-left: 20px;
}
.cta-divider { height: 1px; margin: 16px 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent); }
.btn-call {
  min-height: 52px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn-call:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(242, 194, 0, 0.34);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.card-actions { display: grid; gap: 10px; margin-top: 12px; }
.hero-card .card-actions .btn {
  min-height: 60px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
  width: 100%;
  max-width: 1040px;
  min-width: 0;
  perspective: 1200px;
  overflow: visible;
}
.service-flip-card {
  display: block;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  min-width: 0;
  overflow: visible;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 1;
}
.service-flip-card.is-flipped,
.service-flip-card:hover {
  z-index: 5;
}
.service-card-flip {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 208px;
  min-width: 0;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.28s ease;
  will-change: transform;
  overflow: visible;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.service-flip-card:hover .service-card-flip {
  transform: rotateY(180deg);
}
.service-flip-card.is-flipped .service-card-flip {
  transform: rotateY(180deg);
}
.service-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(242, 194, 0, 0.45);
  background: #161618;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.service-front {
  align-items: center;
  text-align: center;
  pointer-events: auto;
  background:
    radial-gradient(circle at top left, rgba(242, 194, 0, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #161618;
}
.service-front-hint {
  padding-bottom: 34px;
}
.service-back {
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding-top: 52px;
  border-color: rgba(242, 194, 0, 0.55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.service-flip-card:hover .service-front,
.service-flip-card.is-flipped .service-front {
  pointer-events: none;
}
.service-flip-card:hover .service-back,
.service-flip-card.is-flipped .service-back {
  pointer-events: auto;
}
.service-icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #f2c200;
  transition: box-shadow 0.24s ease, transform 0.24s ease, filter 0.24s ease;
}
.service-copy {
  display: contents;
}
.service-title {
  display: block;
  order: 2;
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #f2c200;
}
.service-text {
  display: block;
  order: 3;
  color: rgba(233, 238, 246, 0.9);
  font-size: 0.78rem;
  line-height: 1.48;
}
.service-front .service-icon-box {
  order: 1;
  margin-bottom: 14px;
}
.service-back-text {
  display: block;
  max-width: 26ch;
  margin: 0;
  text-align: center;
  color: rgba(233, 238, 246, 0.92);
  font-size: 0.8rem;
  line-height: 1.42;
}
.service-back-text + .service-back-text {
  margin-top: 10px;
}
.service-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(242, 194, 0, 0.34);
  background: rgba(242, 194, 0, 0.08);
  color: var(--yellow-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-back-link:hover {
  text-decoration: none;
  background: rgba(242, 194, 0, 0.14);
  border-color: rgba(242, 194, 0, 0.48);
}
.services-wide-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-radius: 22px;
  border: 1px solid rgba(242, 194, 0, 0.52);
  background:
    radial-gradient(circle at top left, rgba(242, 194, 0, 0.14), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #161618;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.services-wide-link-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 12px;
}
.services-wide-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(242, 194, 0, 0.72);
  background:
    radial-gradient(circle at top left, rgba(242, 194, 0, 0.19), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    #161618;
}
.services-wide-link-title {
  margin: 0;
  color: #f2c200;
  font-size: clamp(1rem, 0.95rem + 0.22vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.services-wide-link-text {
  margin: 0;
  justify-self: end;
  text-align: right;
  color: rgba(233, 238, 246, 0.7);
  font-style: italic;
  font-size: 0.95rem;
}
.services-wide-link-arrow {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f2c200;
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
}
.instruction-wrapper {
  position: absolute;
  right: 6px;
  bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.78;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.service-flip-card:hover .instruction-wrapper,
.service-flip-card:focus-visible .instruction-wrapper {
  opacity: 1;
}
.instruction-text {
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.instruction-hand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transform-origin: center;
  animation: subtle-tap 2.5s ease-in-out infinite, instruction-fade 2.8s ease-in-out infinite;
}
.instruction-hand svg {
  display: block;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.2));
}
.instruction-cursor-svg {
  overflow: visible;
}
.instruction-cursor-svg .instruction-pulse-dot {
  fill: #fde68a;
  opacity: 0.95;
  animation: instruction-pulse-dot 2s ease-out infinite;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.75));
}
.instruction-cursor-svg .instruction-circle {
  transform-origin: 30px 30px;
  stroke: #fbbf24;
  stroke-width: 4.5;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
  animation: instruction-ripple 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.instruction-cursor-svg .instruction-circle-2 {
  animation-delay: 0.6s;
}
.instruction-cursor-svg .instruction-cursor-group {
  animation: instruction-float 3s ease-in-out infinite;
}
.service-icon {
  width: 26px;
  height: 26px;
  fill: #000000;
  color: #000000;
  flex: 0 0 auto;
}
.service-icon path { fill: currentColor !important; }
@media (hover: hover) and (pointer: fine) {
  .service-flip-card:hover .service-icon-box,
  .service-flip-card:focus-visible .service-icon-box {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    transform: scale(1.06);
  }
}
.service-flip-card:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.8);
  outline-offset: 4px;
}
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pricing-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.full-row { grid-column: 1 / -1; }
.pay-card-wide { margin-top: 8px; }
.pay-heading { margin: 0 0 14px; font-size: 1rem; }
.pay-wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pay-card { border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(0, 0, 0, 0.14); }
.pay-title { margin-bottom: 10px; font-weight: 700; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(242, 194, 0, 0.24);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  white-space: nowrap;
}
.pay-link:hover { text-decoration: none; border-color: rgba(242, 194, 0, 0.55); }
.calc { margin-top: 18px; }
.calc.card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.calc.card:hover {
  transform: none;
  box-shadow: none;
}
.calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}
.calc-input-panel {
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(242, 194, 0, 0.45);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(11, 15, 22, 0.99)),
    #121316;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 42px rgba(0, 0, 0, 0.24);
}
.calc-panel-copy { margin-bottom: 22px; }
.calc-heading {
  margin: 0 0 8px;
  color: #f2c200;
  font-size: clamp(1.55rem, 1.2rem + 0.7vw, 2rem);
  line-height: 1.05;
}
.calc-subtitle {
  margin: 0;
  color: rgba(233, 238, 246, 0.9);
  font-size: 1rem;
  font-weight: 700;
}
.calc-note {
  margin: 12px 0 0;
  padding-left: 12px;
  border-left: 3px solid rgba(242, 194, 0, 0.85);
  color: rgba(233, 238, 246, 0.72);
  font-size: 0.83rem;
  line-height: 1.55;
  font-style: italic;
}
.calc-note-inline {
  margin-top: 0;
  font-size: 0.8rem;
}
.calc-disabled .calc-note {
  color: rgba(255, 224, 130, 0.92);
}
.calc-addresses {
  display: grid;
  gap: 12px;
}
.calc-address-field {
  position: relative;
  display: flex;
  align-items: center;
}
.calc-address-field input {
  padding-left: 78px !important;
  text-indent: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.calc-address-field input::placeholder {
  color: rgba(233, 238, 246, 0.42);
}
.calc-address-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  z-index: 1;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.calc-address-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 64px;
  border-radius: 10px 0 0 10px;
  pointer-events: none;
}
.calc-address-icon-start { color: #e0a800; }
.calc-address-icon-end { color: #fb7185; }
.calc-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.calc-category-wrap {
  margin-top: 18px;
}
.calc-category-label {
  margin: 0 0 10px;
  color: rgba(233, 238, 246, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.calc-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.calc-category {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 238, 246, 0.88);
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.calc-category:hover,
.calc-category:focus-visible {
  border-color: rgba(242, 194, 0, 0.3);
  transform: translateY(-1px);
}
.calc-category.is-active {
  border-color: rgba(242, 194, 0, 0.85);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.98), rgba(15, 17, 20, 0.98));
  color: #f2c200;
  box-shadow: 0 18px 28px rgba(242, 194, 0, 0.18);
}
.calc-disabled .calc-address-field input:disabled,
.calc-disabled .calc-category:disabled,
.calc-disabled .calc-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
.calc-disabled .calc-address-field input:disabled {
  color: rgba(233, 238, 246, 0.46);
}
.calc-disabled .calc-category:disabled,
.calc-disabled .calc-submit:disabled {
  box-shadow: none;
}
.calc-category-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.calc-category-text {
  display: grid;
  gap: 3px;
}
.calc-category-text strong {
  display: block;
  font-size: 0.98rem;
}
.calc-category-text span {
  font-size: 0.78rem;
  color: inherit;
  opacity: 0.8;
}
.calc-category-compact {
  min-height: 76px;
}
.calc-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}
.field { display: grid; gap: 5px; }
.calc label { color: rgba(233, 238, 246, 0.82); font-size: 0.8rem; font-weight: 700; }
.calc input, .calc select, .calc textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
}
.calc select {
  background-color: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
}
.calc select option {
  background: #161618;
  color: #f8fafc;
}
.calc input::placeholder, .calc textarea::placeholder { color: rgba(233, 238, 246, 0.42); }
.calc .is-locked { background: rgba(255, 255, 255, 0.04); color: var(--yellow); font-weight: 700; cursor: not-allowed; }
.check { display: inline-flex; align-items: center; gap: 8px; }
.calc-submit {
  width: 100%;
  margin-top: 18px;
  min-height: 56px;
  border-radius: 22px;
  font-size: 1.02rem;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(242, 194, 0, 0.22);
}
.calc-result-panel {
  min-height: 100%;
}
.calc-result-shell,
.calc-result-card {
  height: 100%;
  border-radius: 34px;
}
.calc-result-shell[hidden],
.calc-result-card[hidden] {
  display: none !important;
}
.calc-result-shell {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(242, 194, 0, 0.45);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(11, 15, 22, 0.99)),
    #121316;
  color: rgba(233, 238, 246, 0.52);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.calc-placeholder-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 194, 0, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.calc-result-shell h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.18rem;
}
.calc-result-shell p {
  margin: 0;
  max-width: 24rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.calc-result-card {
  padding: 24px;
  border: 1px solid rgba(242, 194, 0, 0.45);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(11, 15, 22, 0.99)),
    #121316;
  color: #f8fafc;
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
}
.calc-result-head {
  margin-bottom: 18px;
}
.calc-result-label {
  margin: 0 0 6px;
  color: #facc15;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.calc-total {
  padding: 0;
  border: 0;
  background: transparent;
}
.calc-total .total {
  display: inline-block;
  margin-top: 0;
  font-size: clamp(2rem, 1.65rem + 1.2vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.calc-total .total.is-updating { transform: translateY(-1px) scale(1.02); filter: drop-shadow(0 10px 18px rgba(250, 204, 21, 0.18)); }
.calc-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.calc-stat {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.calc-stat-label {
  display: block;
  margin-bottom: 3px;
  color: #94a3b8;
  font-size: 0.72rem;
}
.calc-stat strong {
  font-size: 0.98rem;
}
.calc-summary {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.calc-summary-row,
.calc-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.calc-summary-row {
  padding: 6px 0;
  color: #cbd5e1;
  font-size: 0.84rem;
}
.calc-summary-row span {
  color: #94a3b8;
}
.calc-summary-row strong {
  text-align: right;
  font-size: 0.92rem;
}
.calc-summary-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.calc-summary-total span {
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.calc-summary-total strong {
  color: #facc15;
  font-size: 1.04rem;
}
.calc-breakdown {
  margin-top: 16px;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.55;
}
.calc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.calc-actions .btn {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.92rem;
}
.card-highlight { margin-top: 18px; border-color: rgba(242, 194, 0, 0.34); background: linear-gradient(145deg, rgba(242, 194, 0, 0.14), rgba(255, 255, 255, 0.03)); }
.services-offer {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1040px;
  min-width: 0;
  margin: 26px auto 0;
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(242, 194, 0, 0.38);
  background:
    radial-gradient(circle at top left, rgba(255, 240, 190, 0.1), transparent 24%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(242, 194, 0, 0.06), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.012) 68%, rgba(255, 255, 255, 0.05) 100%),
    rgba(18, 22, 30, 0.34);
  backdrop-filter: blur(22px) saturate(138%);
  -webkit-backdrop-filter: blur(22px) saturate(138%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02),
    inset 1px 0 0 rgba(255, 255, 255, 0.03),
    0 20px 48px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(242, 194, 0, 0.08),
    0 10px 36px rgba(242, 194, 0, 0.07);
}
.services-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025) 22%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%);
  opacity: 0.62;
}
.services-offer::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(24px - 1px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}
.services-offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.services-offer-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.services-offer-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.services-offer-heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-offer-heading-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: rgba(242, 194, 0, 0.84);
  filter: drop-shadow(0 0 8px rgba(242, 194, 0, 0.14));
}
.services-offer-kicker {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.18rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(247, 248, 251, 0.86);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.04);
}
.services-offer-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 194, 0, 0.95), rgba(242, 194, 0, 0.18));
  box-shadow: 0 0 14px rgba(242, 194, 0, 0.16);
}
.services-offer-summary {
  margin: 18px 0 20px;
  color: rgba(214, 221, 232, 0.62);
  font-size: clamp(0.82rem, 0.8rem + 0.08vw, 0.88rem);
  line-height: 1.44;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.02);
}
.services-offer-summary span {
  color: rgba(242, 194, 0, 0.88);
  font-weight: 600;
  font-style: italic;
}
.services-offer-note-row {
  display: flex;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(242, 194, 0, 0.24);
}
.services-offer-note {
  margin: 0;
  color: rgba(233, 238, 246, 0.42);
  font-size: 0.76rem;
  line-height: 1.46;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.02);
}
.services-offer-btn {
  width: fit-content;
  min-height: 54px;
  min-width: 214px;
  padding-inline: 22px;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 18px 34px rgba(242, 194, 0, 0.16),
    0 0 0 1px rgba(255, 216, 74, 0.14);
}
.why-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}
.why-card {
  --why-delay: 0s;
  --why-offset-x: 0px;
  --why-offset-y: 42px;
  --why-card-min-height: 220px;
  --why-card-padding-top: 64px;
  --why-body-min-height: 190px;
  --why-body-padding: 24px 18px 20px;
  --why-heading-top: 4px;
  --why-heading-inline: 18px;
  --why-heading-shift: -180px;
  position: relative;
  min-height: var(--why-card-min-height);
  padding-top: var(--why-card-padding-top);
}
.why-card:nth-child(1) {
  --why-delay: 0.12s;
  --why-offset-x: -30px;
}
.why-card:nth-child(2) {
  --why-delay: 0.34s;
  --why-offset-x: 0px;
}
.why-card:nth-child(3) {
  --why-delay: 0.56s;
  --why-offset-x: 30px;
}
.why-card-body {
  position: relative;
  min-height: var(--why-body-min-height);
  height: 100%;
  padding: var(--why-body-padding);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(11, 15, 22, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translate3d(var(--why-offset-x), var(--why-offset-y), 0) scale(0.98);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  transition-delay: var(--why-delay);
}
.why-card-heading {
  position: absolute;
  top: var(--why-heading-top);
  left: var(--why-heading-inline);
  right: var(--why-heading-inline);
  margin: 0;
  font-size: var(--type-block-title);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  opacity: 0;
  transform: translateX(var(--why-heading-shift));
  transition: transform 2.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.6s ease;
  z-index: 1;
}
.why-card:not(.why-card-premium) .why-card-heading {
  padding-bottom: 14px;
}
.why-card:not(.why-card-premium) .why-card-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 194, 0, 0.95), rgba(242, 194, 0, 0.18));
  box-shadow: 0 0 16px rgba(242, 194, 0, 0.18);
}
.why-card-text {
  margin: 0;
  color: rgba(233, 238, 246, 0.8);
  font-size: var(--type-body);
  line-height: 1.62;
}
.why-card.is-visible .why-card-body {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.why-card.is-titled .why-card-heading {
  opacity: 1;
  transform: translateX(0);
}
.why-card:hover .why-card-body {
  border-color: rgba(242, 194, 0, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.42);
}
.why-card-premium .why-card-body {
  border-color: rgba(242, 194, 0, 0.42);
  background:
    linear-gradient(180deg, rgba(242, 194, 0, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(11, 15, 22, 0.98);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.44),
    0 0 30px rgba(255, 204, 0, 0.2);
}
.why-card-premium .why-card-heading {
  color: var(--yellow);
  font-size: clamp(1.16rem, 1.04rem + 0.42vw, 1.45rem);
}
.why-card-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--yellow-strong), var(--yellow));
  color: #111;
  box-shadow:
    0 0 28px rgba(242, 194, 0, 0.26),
    0 16px 28px rgba(242, 194, 0, 0.18);
}
.why-card-crown {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card:focus-visible {
  outline: 2px solid rgba(255, 216, 74, 0.9);
  outline-offset: 6px;
  border-radius: 30px;
}
.contact-heading {
  margin-bottom: 18px;
  overflow: hidden;
}
.contact-heading h2 {
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: var(--type-section-title);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-style: italic;
  transform: translateX(-46px);
  opacity: 0;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.72s ease;
}
.contact-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 194, 0, 0.95), rgba(242, 194, 0, 0.18));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease 0.28s;
}
.contact-heading.is-visible h2 {
  transform: translateX(0);
  opacity: 1;
}
.contact-heading.is-visible h2::after {
  transform: scaleX(1);
}
.contact-grid { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr); gap: 14px; }
.contact-left { display: grid; gap: 12px; }
.contact-call,
.contact-facebook,
.contact-form {
  border-radius: 24px;
  border-color: rgba(242, 194, 0, 0.34);
  background:
    radial-gradient(circle at top right, rgba(242, 194, 0, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(24, 24, 27, 0.88), rgba(11, 15, 22, 0.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact-call:hover,
.contact-facebook:hover,
.contact-form:hover {
  transform: none;
  border-color: rgba(242, 194, 0, 0.34);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}
.contact-call,
.contact-facebook {
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.contact-form {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(242, 194, 0, 0.04);
  filter: blur(10px);
  pointer-events: none;
}
.contact-call h3,
.contact-facebook h3,
.contact-form h3 {
  margin: 0 0 8px;
  font-size: var(--type-block-title);
  line-height: 1.12;
}
.contact-card-top {
  display: grid;
  gap: 4px;
}
.contact-card-cta {
  display: flex;
  align-items: center;
}
.contact-card-meta {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-form > p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(233, 238, 246, 0.68);
  font-style: italic;
  font-size: var(--type-body);
}
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(242, 194, 0, 0.24);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  transition:
    transform 0.16s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.call-btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 194, 0, 0.5);
  box-shadow: 0 16px 28px rgba(242, 194, 0, 0.12);
  transform: translateY(-2px);
}
.call-btn-phone {
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  font-size: clamp(0.95rem, 0.86rem + 0.34vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.call-btn-facebook {
  width: fit-content;
  min-height: 44px;
  padding-inline: 16px;
}
.call-num {
  white-space: nowrap;
}
.fb-icon { width: 24px; height: 24px; }
.contact-note {
  margin-top: 0;
  color: rgba(233, 238, 246, 0.56);
  line-height: 1.55;
  font-size: var(--type-body-tight);
}
.contact-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
}
.contact-field span {
  padding-left: 8px;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 20, 0.88);
  color: #f8fafc;
  transition: all 0.3s ease;
}
.contact-form input {
  min-height: 44px;
  padding: 0 14px;
}
.contact-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(250, 204, 21, 0.72);
  background: rgba(22, 22, 24, 0.96);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.62);
}
.contact-form .btn-primary {
  position: relative;
  z-index: 1;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 16px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
}
.contact-form .btn-primary:hover {
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
  transform: scale(1.01);
}
.form-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(118, 214, 138, 0.35);
  background: rgba(118, 214, 138, 0.12);
  color: #dff6e4;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-feedback.is-error {
  border-color: rgba(255, 138, 138, 0.35);
  background: rgba(255, 138, 138, 0.12);
  color: #ffe4e4;
}
.contact-form .micro.muted:last-child {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  text-align: center;
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.footer-meta { display: grid; gap: 6px; }
.footer-meta p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-credit {
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}
.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a,
.footer-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-link-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow-strong), var(--yellow));
  color: #111;
  box-shadow:
    0 18px 36px rgba(242, 194, 0, 0.24),
    0 0 26px rgba(242, 194, 0, 0.3);
  animation: floatJump 2.8s ease-in-out infinite;
}
@media (min-width: 769px) {
  .floating-call {
    display: none;
  }
}
.floating-call::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(242, 194, 0, 0.35);
  animation: callRing 2.8s ease-out infinite;
}
.floating-call:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.floating-call-icon { width: 30px; height: 30px; }
@keyframes floatJump {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-5px); }
  55% { transform: translateY(-11px); }
  75% { transform: translateY(-4px); }
}
@keyframes callRing {
  0% { transform: scale(0.92); opacity: 0.75; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes headlight-flash {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes subtle-tap {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.88); }
}
@keyframes instruction-ripple {
  0% { transform: scale(0.35); opacity: 0.95; stroke-width: 4.5; }
  70% { opacity: 0.36; }
  100% { transform: scale(1.65); opacity: 0; stroke-width: 1.2; }
}
@keyframes instruction-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, -2px); }
}
@keyframes instruction-fade {
  0%, 100% {
    opacity: 1;
    filter: saturate(1) brightness(1);
  }
  50% {
    opacity: 0.52;
    filter: saturate(0.75) brightness(0.92);
  }
}
@keyframes instruction-pulse-dot {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.95;
  }
  45% {
    transform: scale(1.45);
    opacity: 0.45;
  }
  70% {
    transform: scale(0.88);
    opacity: 0.88;
  }
}
@keyframes wineWave {
  0%, 100% {
    transform: translateY(0) translateX(-2.4%) rotate(-0.8deg) scaleX(1.02);
    border-radius: 42% 58% 0 0 / 34% 18% 0 0;
    filter: saturate(1.08) brightness(1);
  }
  28% {
    transform: translateY(-9px) translateX(1.8%) rotate(0.45deg) scaleX(1.045);
    border-radius: 56% 44% 0 0 / 16% 34% 0 0;
  }
  50% {
    transform: translateY(-17px) translateX(2.8%) rotate(0.8deg) scaleX(1.03);
    border-radius: 62% 38% 0 0 / 20% 38% 0 0;
    filter: saturate(1.18) brightness(1.08);
  }
  76% {
    transform: translateY(-6px) translateX(-1.2%) rotate(-0.35deg) scaleX(1.04);
    border-radius: 48% 52% 0 0 / 30% 22% 0 0;
  }
}
@keyframes wineGlassShimmer {
  0%, 100% {
    background-position: 0 0, 46% 100%, 0 0;
    opacity: 0.84;
  }
  50% {
    background-position: 0 0, 66% 84%, 0 0;
    opacity: 1;
  }
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  border-top: 1px solid rgba(242, 194, 0, 0.35);
  background: rgba(11, 15, 22, 0.98);
}
.cookie-banner[hidden] { display: none; }
.cookie-content {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p { margin: 0; }
.cookie-content a { color: var(--yellow); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-buttons button {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 700;
}
#cookie-accept { background: var(--yellow); color: #000; border-color: rgba(242, 194, 0, 0.85); }
#cookie-decline { color: var(--text); background: transparent; }
.legal-page { padding: 72px 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--yellow); font-weight: 700; }
.page-main { padding: 32px 0 72px; }
.airport-transfer-page .page-main,
.wine-tour-page .page-main,
.rural-rides-page .page-main,
.events-page .page-main {
  padding: 24px 0 44px;
}
.airport-transfer-page .section,
.wine-tour-page .section,
.rural-rides-page .section,
.events-page .section {
  padding: 22px 0;
}
.airport-transfer-page .section:first-of-type,
.wine-tour-page .section:first-of-type,
.rural-rides-page .section:first-of-type,
.events-page .section:first-of-type {
  padding-top: 18px;
}
.airport-transfer-page .section.section-alt,
.wine-tour-page .section.section-alt,
.rural-rides-page .section.section-alt,
.events-page .section.section-alt {
  padding: 18px 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(242, 194, 0, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02) 46%, rgba(255, 255, 255, 0.035)),
    rgba(11, 15, 22, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -72px -72px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.18), transparent 70%);
  pointer-events: none;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 194, 0, 0.1);
  color: var(--yellow-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero h1 {
  margin: 0 0 16px;
  max-width: 15ch;
  font-size: clamp(2rem, 1.58rem + 1.2vw, 2.9rem);
  line-height: 1.05;
}
.page-lead {
  margin: 0;
  max-width: 64ch;
  color: rgba(233, 238, 246, 0.84);
  font-size: clamp(1rem, 0.92rem + 0.2vw, 1.12rem);
  line-height: 1.7;
}
.page-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 238, 246, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.airport-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}
.airport-hero__content {
  min-width: 0;
  max-width: none;
}
.airport-hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.62rem, 1.28rem + 0.82vw, 2rem);
}
.wine-tour-hero h1 {
  max-width: calc(100% - 272px);
  font-size: clamp(1.48rem, 1.2rem + 0.64vw, 1.82rem);
}
.events-hero h1 {
  max-width: 100%;
  white-space: normal;
  font-size: clamp(1.62rem, 1.28rem + 0.82vw, 2rem);
  line-height: 1.1;
}
.airport-hero .page-lead {
  max-width: none;
  position: relative;
  padding-left: 14px;
  font-size: clamp(0.86rem, 0.84rem + 0.08vw, 0.92rem);
  line-height: 1.52;
  font-style: italic;
  white-space: normal;
  text-wrap: pretty;
}
.airport-hero .page-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 1px;
  background: rgba(242, 194, 0, 0.42);
}
.airport-hero .page-meta {
  flex-wrap: nowrap;
}
.airport-hero__mobile-focus {
  display: none;
}
.airport-hero .page-pill {
  white-space: nowrap;
  padding: 0 16px;
  border-color: rgba(242, 194, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(242, 194, 0, 0.12), rgba(242, 194, 0, 0.06)),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 224, 130, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 190, 0.08),
    0 10px 24px rgba(242, 194, 0, 0.08);
}
.airport-hero__aside {
  display: grid;
  justify-items: center;
  align-self: center;
  min-width: 240px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.airport-hero .page-actions {
  width: 100%;
  max-width: 240px;
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
}
.airport-hero .btn {
  width: 100%;
}
.wine-region-spotlight {
  padding: 14px 0 8px;
}
.wine-region-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(238, 46, 75, 0.22);
  background:
    linear-gradient(145deg, rgba(238, 46, 75, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.wine-region-link:hover,
.wine-region-link:focus-visible {
  text-decoration: none;
  border-color: rgba(238, 46, 75, 0.42);
  background:
    linear-gradient(145deg, rgba(238, 46, 75, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}
.wine-region-logo {
  display: block;
  width: 132px;
  min-width: 132px;
}
.wine-region-logo img {
  width: 100%;
  height: auto;
}
.wine-region-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.wine-region-copy strong {
  color: #fff;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.12rem);
}
.wine-region-copy span {
  color: rgba(233, 238, 246, 0.76);
  font-size: 0.92rem;
}
.wine-region-arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(238, 46, 75, 0.22);
  border: 1px solid rgba(238, 46, 75, 0.34);
  font-size: 1.1rem;
  font-weight: 800;
}
.wine-fare-section {
  padding: 22px 0;
}
.wine-fare-calculator {
  --wine-fill-bottom: -18%;
  --wine-fill-height: 82%;
  --wine-wave-speed: 5.4s;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin-inline: auto;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025) 34%, rgba(255, 255, 255, 0.06)),
    rgba(11, 15, 22, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}
.wine-fare-calculator[data-wine-step="from"] {
  --wine-fill-bottom: -17%;
  --wine-fill-height: 58%;
  --wine-wave-speed: 4.8s;
}
.wine-fare-calculator[data-wine-step="route"] {
  --wine-fill-bottom: -15%;
  --wine-fill-height: 38%;
  --wine-wave-speed: 4.1s;
}
.wine-fare-calculator > * {
  position: relative;
  z-index: 1;
}
.wine-fare-calculator::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: var(--wine-fill-bottom);
  height: var(--wine-fill-height);
  border-radius: 45% 55% 0 0 / 28% 18% 0 0;
  background:
    radial-gradient(ellipse at 42% 4%, rgba(255, 210, 190, 0.24), transparent 22%),
    radial-gradient(ellipse at 72% 16%, rgba(151, 24, 44, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(151, 24, 44, 0.62) 0%, rgba(86, 11, 30, 0.82) 52%, rgba(36, 4, 18, 0.9) 100%);
  box-shadow:
    inset 0 20px 30px rgba(255, 255, 255, 0.08),
    inset 0 -24px 42px rgba(23, 2, 10, 0.28),
    0 -12px 28px rgba(151, 24, 44, 0.16);
  transform: translateY(0);
  transition: height 0.7s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  animation: wineWave var(--wine-wave-speed) ease-in-out infinite;
}
.wine-fare-calculator::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.18), transparent 18% 62%, rgba(255, 255, 255, 0.07)),
    radial-gradient(ellipse at 34% 76%, rgba(255, 235, 220, 0.24) 0 7%, transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(242, 194, 0, 0.1), transparent 24%);
  background-size: auto, 150% 44%, auto;
  animation: wineGlassShimmer var(--wine-wave-speed) ease-in-out infinite;
  pointer-events: none;
}
.wine-fare-head {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.wine-fare-head h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  font-size: clamp(1.55rem, 1.2rem + 0.8vw, 2.05rem);
  line-height: 1.14;
  color: var(--text);
}
.wine-fare-title-icon,
.wine-fare-label-icon,
.wine-fare-ready-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: rgba(255, 216, 74, 0.9);
  filter: drop-shadow(0 0 16px rgba(151, 24, 44, 0.34));
}
.wine-fare-title-icon {
  width: 42px;
  height: 42px;
}
.wine-fare-label-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 224, 130, 0.88);
  filter: drop-shadow(0 0 10px rgba(151, 24, 44, 0.28));
}
.wine-fare-ready-icon {
  width: 34px;
  height: 34px;
  color: rgba(255, 224, 130, 0.92);
  filter: drop-shadow(0 0 14px rgba(151, 24, 44, 0.3));
}
.wine-fare-title-icon svg,
.wine-fare-label-icon svg,
.wine-fare-ready-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wine-fare-head p {
  margin: 0;
  color: rgba(233, 238, 246, 0.76);
  font-size: 0.94rem;
  line-height: 1.56;
}
.wine-fare-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 720px);
  margin-inline: auto;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}
.wine-fare-field {
  display: grid;
  gap: 8px;
  text-align: left;
}
.wine-fare-field > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wine-fare-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 42px 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.065);
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.wine-fare-field select:not(:disabled):focus {
  border-color: rgba(242, 194, 0, 0.95);
  box-shadow: 0 0 0 3px rgba(242, 194, 0, 0.14);
}
.wine-fare-field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.wine-fare-field select option {
  background: #111722;
  color: #fff;
}
.wine-fare-result {
  display: grid;
  gap: 16px;
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(11, 15, 22, 0.36);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.wine-fare-route {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.wine-fare-route h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 6px;
  color: var(--yellow-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}
.wine-fare-route p {
  margin: 0;
  min-height: 2.8em;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(233, 238, 246, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}
.wine-fare-price {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(242, 194, 0, 0.2);
  background: linear-gradient(145deg, rgba(242, 194, 0, 0.11), rgba(151, 24, 44, 0.1));
  text-align: center;
}
.wine-fare-price strong {
  color: var(--yellow);
  font-size: clamp(1.55rem, 1.32rem + 0.56vw, 2rem);
  line-height: 1;
  text-shadow: 0 0 20px rgba(242, 194, 0, 0.24);
}
.wine-fare-price span {
  color: rgba(233, 238, 246, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}
.wine-fare-warning,
.wine-fare-legal {
  max-width: 72ch;
  margin: 0 auto;
  color: rgba(233, 238, 246, 0.72);
  line-height: 1.45;
  text-align: center;
}
.wine-fare-warning {
  position: relative;
  padding: 0 14px;
  color: rgba(255, 224, 130, 0.9);
  font-size: 0.84rem;
  font-style: italic;
}
.wine-fare-warning::before {
  content: none;
}
.wine-fare-legal {
  font-size: 0.72rem;
}
.wine-fare-ready {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 14px;
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(151, 24, 44, 0.08));
  text-align: center;
}
.wine-fare-ready h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  font-size: clamp(1.25rem, 1.08rem + 0.38vw, 1.5rem);
  line-height: 1.18;
}
.wine-fare-ready .btn {
  min-width: 190px;
  min-height: 42px;
}
.service-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
}
.service-hub-hero__content {
  min-width: 0;
}
.service-hub-hero__aside {
  display: grid;
  justify-items: end;
  min-width: 220px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  text-align: right;
}
.service-hub-hero .page-eyebrow {
  margin-bottom: 0;
  padding: 6px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}
.service-hub-hero h1 {
  margin-bottom: 12px;
  max-width: 22ch;
  font-size: clamp(1.5rem, 1.28rem + 0.62vw, 1.96rem);
  line-height: 1.12;
  white-space: nowrap;
}
.service-hub-hero .page-lead {
  max-width: 68ch;
  position: relative;
  padding-left: 12px;
  font-size: clamp(0.86rem, 0.84rem + 0.1vw, 0.92rem);
  line-height: 1.48;
  font-style: italic;
  white-space: nowrap;
}
.service-hub-hero .page-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 1px;
  background: rgba(242, 194, 0, 0.3);
}
.service-hub-services h2 {
  padding-left: 28px;
  font-size: clamp(1.24rem, 1.08rem + 0.38vw, 1.52rem);
  line-height: 1.18;
}
.service-hub-services .section-lead {
  position: relative;
  padding-left: 38px;
  font-style: italic;
}
.service-hub-services .section-lead::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0.18em;
  bottom: 0.18em;
  width: 1px;
  background: rgba(242, 194, 0, 0.3);
}
.service-hub-hero .page-actions {
  margin-top: 0;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-hub-hero .btn {
  min-height: 42px;
  min-width: 176px;
  padding: 0 18px;
  font-size: 0.86rem;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.compact-card-grid {
  align-items: stretch;
}
.page-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  align-content: start;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.compact-page-card {
  height: 100%;
  min-height: 0;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: 20px 24px 22px;
}
.compact-page-card .page-note {
  margin-top: 2px;
  margin-bottom: 0;
}
.compact-page-card-highlight .page-note {
  position: relative;
  margin-top: 0;
  padding-left: 14px;
  color: rgba(255, 224, 130, 0.9);
  font-style: italic;
  line-height: 1.6;
}
.compact-page-card-highlight .page-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 1px;
  background: rgba(242, 194, 0, 0.42);
}
.compact-page-card .page-actions {
  margin-top: 16px;
}
.compact-card-actions-right {
  justify-content: flex-end;
}
.page-card h2,
.page-card h3 {
  margin: 0 0 12px;
  line-height: 1.22;
  font-size: clamp(1.34rem, 1.14rem + 0.42vw, 1.72rem);
  min-height: 2.44em;
  max-width: 100%;
  text-wrap: balance;
}
.airport-info-card h2 {
  font-size: clamp(1.22rem, 1.06rem + 0.34vw, 1.52rem);
  line-height: 1.18;
}
.events-page .airport-info-card h2 {
  min-height: 2.36em;
}
.events-page .airport-info-card .page-list {
  margin-top: 0;
}
.events-page .airport-info-card .page-list li {
  min-height: 3.2em;
}
.page-card-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 18px;
  background: linear-gradient(90deg, rgba(242, 194, 0, 0.34), rgba(242, 194, 0, 0.08) 55%, rgba(242, 194, 0, 0));
  box-shadow: none;
}
.page-card p:last-child,
.page-card ul:last-child {
  margin-bottom: 0;
}
.page-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(233, 238, 246, 0.84);
  font-style: italic;
}
.page-list li::marker {
  color: var(--yellow);
}
.page-list strong {
  color: #fff;
}
.page-list-plain {
  list-style: none;
  padding: 0;
}
.page-list-plain li {
  position: relative;
  padding-left: 18px;
}
.page-list-plain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(242, 194, 0, 0.3);
}
.page-note {
  color: rgba(233, 238, 246, 0.72);
}
.page-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.page-link-row a {
  color: var(--yellow);
  font-weight: 700;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.hub-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(242, 194, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.hub-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  border-color: #f3c623;
  box-shadow: 0 10px 30px -15px rgba(243, 198, 35, 0.3);
}
.hub-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.card-icon {
  width: 24px;
  height: 24px;
  stroke: #f3c623;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease-in-out;
}
.hub-card:hover .card-icon {
  transform: translateX(-8px);
}
.hub-card h2,
.hub-card h3 {
  margin: 0;
}
.hub-card p {
  margin: 0;
  color: rgba(233, 238, 246, 0.8);
}
.hub-card ul {
  margin: 0;
}
.hub-card .page-list {
  gap: 0;
}
.hub-card .page-list-plain li {
  margin-bottom: 0;
}
.hub-card-label {
  color: var(--yellow-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hub-card-link {
  color: var(--yellow);
  font-weight: 800;
}
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 24px;
  border: 1px solid rgba(242, 194, 0, 0.24);
  background: linear-gradient(145deg, rgba(242, 194, 0, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}
.cta-band__content {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.cta-band h2,
.cta-band h3,
.cta-band p {
  margin: 0;
}
.cta-band h2 {
  font-size: clamp(1.2rem, 1.08rem + 0.32vw, 1.42rem);
  line-height: 1.18;
}
.cta-band p {
  font-size: 0.94rem;
  line-height: 1.56;
}
.cta-band-note {
  color: rgba(233, 238, 246, 0.68);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 6px;
  text-align: center;
}
.cta-band .page-actions {
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  min-width: 230px;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid rgba(242, 194, 0, 0.18);
  justify-self: end;
}
.cta-band .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.84rem;
}
.faq-grid {
  display: grid;
  gap: 14px;
}
.faq-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.faq-item p {
  margin: 0;
  color: rgba(233, 238, 246, 0.8);
}
.section-kicker {
  margin: 0 0 10px;
  color: var(--yellow-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mini-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.mini-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.mini-card p {
  margin: 0;
  color: rgba(233, 238, 246, 0.76);
}
.legal-footer {
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.legal-footer h2 {
  margin: 0 0 12px;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.12rem);
}
.legal-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.legal-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .legal-footer-grid {
    grid-template-columns: 1fr;
  }
  .page-main {
    padding: 24px 0 56px;
  }
  .page-hero {
    padding: 24px 20px;
    border-radius: 24px;
  }
  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.7rem, 6vw, 2.25rem);
  }
  .service-hub-hero {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 12px;
  }
  .service-hub-hero__aside {
    justify-items: stretch;
    min-width: 0;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }
  .service-hub-hero h1 {
    font-size: clamp(1.34rem, 4.7vw, 1.72rem);
    white-space: normal;
  }
  .service-hub-hero .page-lead {
    padding-left: 12px;
    font-size: 0.88rem;
    line-height: 1.42;
    white-space: normal;
  }
  .service-hub-services h2 {
    padding-left: 18px;
    font-size: clamp(1.16rem, 4.2vw, 1.38rem);
  }
  .service-hub-services .section-lead {
    padding-left: 12px;
  }
  .service-hub-services .section-lead::before {
    left: 0;
  }
  .airport-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .airport-hero__content {
    max-width: none;
  }
  .airport-hero h1 {
    white-space: normal;
  }
  .wine-tour-hero h1 {
    max-width: none;
  }
  .events-hero h1 {
    max-width: none;
  }
  .airport-hero .page-lead {
    padding-left: 12px;
  }
  .airport-hero .page-meta {
    flex-wrap: wrap;
  }
  .airport-hero__mobile-focus {
    display: inline-flex;
  }
  .airport-hero__desktop-focus {
    display: none;
  }
  .airport-hero__aside {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
    justify-items: stretch;
  }
  .airport-hero .page-actions {
    max-width: none;
  }
  .wine-region-link {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px;
  }
  .wine-region-logo {
    grid-column: 1 / -1;
    width: 112px;
    min-width: 0;
  }
  .wine-region-copy {
    grid-column: 1;
  }
  .wine-region-arrow {
    grid-column: 2;
    grid-row: 2;
  }
  .wine-fare-calculator {
    --wine-fill-bottom: -15%;
    --wine-fill-height: 62%;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }
  .wine-fare-calculator[data-wine-step="from"] {
    --wine-fill-bottom: -14%;
    --wine-fill-height: 46%;
  }
  .wine-fare-calculator[data-wine-step="route"] {
    --wine-fill-bottom: -12%;
    --wine-fill-height: 32%;
  }
  .wine-fare-calculator::before {
    left: -22%;
    right: -22%;
  }
  .wine-fare-head {
    gap: 8px;
  }
  .wine-fare-head h2 {
    font-size: 1.42rem;
  }
  .wine-fare-title-icon {
    width: 34px;
    height: 34px;
  }
  .wine-fare-head p {
    font-size: 0.88rem;
    line-height: 1.48;
  }
  .wine-fare-controls {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }
  .wine-fare-field {
    text-align: center;
  }
  .wine-fare-field > span {
    justify-content: center;
  }
  .wine-fare-field select {
    min-height: 44px;
    text-align: center;
    text-align-last: center;
  }
  .wine-fare-result {
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }
  .wine-fare-route {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wine-fare-route h3 {
    font-size: 0.74rem;
  }
  .wine-fare-route p {
    min-height: auto;
    padding: 10px 12px;
  }
  .wine-fare-price {
    padding: 14px 12px;
  }
  .wine-fare-price strong {
    font-size: 1.56rem;
  }
  .wine-fare-warning {
    font-size: 0.78rem;
    padding-inline: 0;
  }
  .wine-fare-legal {
    font-size: 0.66rem;
  }
  .wine-fare-ready {
    padding: 14px;
    border-radius: 18px;
  }
  .wine-fare-ready h3 {
    font-size: 1.28rem;
  }
  .wine-fare-ready-icon {
    width: 30px;
    height: 30px;
  }
  .wine-fare-ready .btn {
    width: 100%;
    min-width: 0;
  }
  .service-hub-hero .page-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 10px;
    margin-top: 10px;
  }
  .service-hub-hero .btn {
    min-width: 0;
    width: 100%;
    padding: 0 10px;
  }
  .cta-band {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cta-band .page-actions {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }
  .cta-band-note {
    margin: 0 0 2px;
    text-align: left;
  }
  .cta-band-note::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 0 10px;
    background: linear-gradient(90deg, rgba(242, 194, 0, 0.42), rgba(242, 194, 0, 0.12));
  }
  .cta-band .btn {
    width: 100%;
  }
  .cta-band-note { text-align: left; }
  .page-actions,
  .page-link-row {
    flex-direction: column;
  }
  .page-grid,
  .hub-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-page .pricing {
  gap: 22px;
  margin: 28px 0 32px;
}
.pricing-page .pricing-card {
  min-height: 100%;
}
.pricing-page .box + .box,
.pricing-page .pricing + .box {
  margin-top: 24px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 940px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .mobile-actions { display: flex; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta { display: none; }
  .nav {
    display: flex;
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    z-index: 650;
    flex-direction: column;
    width: auto;
    max-width: none;
    padding: 14px;
    border-radius: 16px;
    background: rgba(11, 15, 22, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    min-height: 44px;
    align-items: center;
  }
  .hero-inner, .grid-3, .grid-2, .pricing, .contact-grid, .pay-wrap, .calc-grid, .why-flip-grid { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .calc-result-panel,
  .calc-result-shell,
  .calc-result-card { min-height: 0; }
  .calc-result-shell,
  .calc-result-card {
    height: auto;
  }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero {
    padding: 42px 0 48px;
  }
  .hero-copy,
  .hero-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 941px) {
  .header-desktop-hide {
    display: none;
  }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  #kalkulator {
    padding-bottom: 42px;
    margin-bottom: 12px;
  }
  #miert {
    padding-top: 42px;
  }
  .calc.card {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .calc-result-panel {
    margin-bottom: 8px;
  }
  #miert .container {
    position: relative;
    z-index: 0;
  }
  body { padding-bottom: 40px; }
  .container {
    width: min(1100px, calc(100% - 32px));
  }
  .header-inner {
    gap: 14px;
    min-height: 66px;
  }
  .brand {
    gap: 10px;
  }
  .brand-logo {
    width: 40px;
    height: auto;
  }
  .brand-text strong {
    font-size: 0.98rem;
  }
  .brand-text span {
    font-size: 0.82rem;
  }
  .site-header {
    background: rgba(8, 11, 18, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .calc-category-grid,
  .calc-meta-grid,
  .calc-stat-grid {
    grid-template-columns: 1fr;
  }
  .calc-layout {
    align-items: start;
  }
  .calc-result-panel {
    min-height: 0;
    height: auto;
  }
  .calc-input-panel,
  .calc-result-card,
  .calc-result-shell {
    padding: 20px;
    border-radius: 26px;
    height: auto;
    min-height: 0;
  }
  .calc-result-shell {
    justify-content: flex-start;
  }
  .calc-category {
    min-height: 72px;
    padding: 14px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-call,
  .contact-facebook,
  .contact-form {
    padding: 18px;
    border-radius: 20px;
  }
  .call-btn-phone {
    width: 100%;
    font-size: 1.15rem;
  }
  .call-btn-facebook {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding-inline: 18px;
    font-size: 1.15rem;
  }
  .hero {
    min-height: clamp(600px, calc(100svh - 66px), 740px);
    padding: 14px 0 0;
    background:
      linear-gradient(180deg, rgba(8, 11, 18, 0.98) 0 236px, rgba(8, 11, 18, 0.18) 312px, rgba(8, 11, 18, 0) 390px),
      linear-gradient(180deg, rgba(4, 7, 12, 0.9) 0%, rgba(4, 7, 12, 0.48) 22%, rgba(4, 7, 12, 0.08) 42%, rgba(4, 7, 12, 0.14) 62%, rgba(4, 7, 12, 0.62) 80%, rgba(11, 15, 22, 0.98) 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 88px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 15, 22, 0) 0%, rgba(11, 15, 22, 0.42) 58%, var(--bg) 100%);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: auto;
    position: relative;
    z-index: 1;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-height: clamp(600px, calc(100svh - 104px), 700px);
    padding-top: 22px;
    padding-bottom: clamp(232px, 36vw, 284px);
  }
  .car-container {
    position: absolute;
    left: 50%;
    bottom: 1.8%;
    z-index: 0;
    display: inline-block;
    width: calc(100% + 32px);
    max-width: none;
    aspect-ratio: auto;
    margin: 0;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .car-container::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: clamp(88px, 14vw, 118px);
    background: linear-gradient(180deg, rgba(8, 11, 18, 0.96) 0%, rgba(8, 11, 18, 0.82) 26%, rgba(8, 11, 18, 0.38) 62%, rgba(8, 11, 18, 0) 100%);
    z-index: 1;
  }
  .hero-car-image {
    display: block;
    width: 100%;
    height: auto;
  }
  .light-left,
  .light-right {
    position: absolute;
    top: 53.5%;
    width: 18%;
    aspect-ratio: 1.9 / 1;
    opacity: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 214, 0.96) 24%, rgba(255, 234, 150, 0.72) 48%, rgba(255, 223, 116, 0.26) 72%, rgba(255, 223, 116, 0) 100%);
    filter: blur(14px);
    box-shadow: 0 0 26px rgba(255, 244, 194, 0.72);
    mix-blend-mode: screen;
    z-index: 2;
    animation-name: headlight-flash;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 2s;
    animation-iteration-count: 2;
  }
  .light-left {
    left: 13.2%;
  }
  .light-right {
    right: 14.8%;
  }
  .hero h1 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(1.42rem, 5.1vw, 1.82rem);
    line-height: 1.1;
    white-space: normal;
  }
  .lead {
    margin: 12px 0 0;
    max-width: none;
    font-size: clamp(0.9rem, 3.15vw, 0.98rem);
    line-height: 1.25;
    white-space: normal;
  }
  .hero-actions {
    width: 100%;
    margin-top: 24px;
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: none;
    border-radius: 18px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
    line-height: 1.14;
  }
  .hero-call-btn {
    flex-direction: row;
    gap: 0;
  }
  .hero-lead-desktop,
  .hero-call-label-desktop {
    display: none;
  }
  .hero-lead-mobile,
  .hero-call-label-mobile {
    display: inline;
  }
  .hero-call-number {
    display: none;
  }
  .hero-actions .btn-primary {
    grid-column: 1 / -1;
  }
  .hero-mobile-only {
    display: inline-flex;
  }
  .hero-divider {
    display: none;
  }
  .hero-manifesto,
  .hero-intro {
    display: none;
  }
  .hero-card {
    display: none;
  }
  .hero-trust-mobile {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: -118px;
    padding: 20px 0 28px;
    background:
      linear-gradient(180deg, rgba(11, 15, 22, 0) 0%, rgba(11, 15, 22, 0.16) 16px, rgba(11, 15, 22, 0.78) 72px, var(--bg) 164px);
  }
  .hero-trust-inner {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    text-align: left;
    padding: 26px 22px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at top left, rgba(242, 194, 0, 0.12), transparent 38%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014) 38%, rgba(255, 255, 255, 0.028) 100%),
      rgba(13, 17, 24, 0.9);
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      inset 0 -1px 0 rgba(255, 255, 255, 0.025),
      0 24px 54px rgba(0, 0, 0, 0.28);
  }
  .hero-trust-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 214, 82, 0.22), rgba(255, 255, 255, 0.08), rgba(255, 214, 82, 0.08));
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
  }
  .hero-trust-divider {
    width: 72px;
    height: 2px;
    margin: 2px 0 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(242, 194, 0, 0.8), transparent);
  }
  .hero-trust-text {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.68;
    color: rgba(233, 238, 246, 0.9);
  }
  .hero-trust-text + .hero-trust-text {
    color: rgba(233, 238, 246, 0.84);
  }
  .hero + .section {
    margin-top: 0;
    padding-top: 60px;
    background: none;
  }
  #szolgaltatasok {
    padding-top: 8px;
  }
  #szolgaltatasok .container {
    padding-top: 12px;
  }
  .services-intro {
    gap: 8px;
  }
  .services-intro p {
    position: relative;
    padding-left: 16px;
    font-size: 0.82rem;
    line-height: 1.44;
  }
  .services-intro p:nth-child(2) {
    padding-left: 14px;
    font-size: 0.8rem;
    line-height: 1.48;
  }
  .services-intro p:nth-child(2)::before {
    display: none;
  }
  .services-intro p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 12px rgba(242, 194, 0, 0.28);
  }
  .floating-call {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.92);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }
  .floating-call.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .service-flip-card {
    width: min(320px, calc(100% - 18px));
    height: 224px;
    min-height: 224px;
    margin-inline: auto;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-wide-link {
    padding: 18px 20px;
    border-radius: 20px;
  }
  .services-wide-link-copy {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .services-wide-link-title {
    font-size: 1rem;
  }
  .services-wide-link-text {
    font-size: 0.84rem;
    justify-self: start;
    text-align: left;
  }
  .services-wide-link-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .services-offer {
    margin-top: 22px;
    padding: 22px 20px;
    border-radius: 22px;
  }
  .services-offer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .services-offer-kicker {
    font-size: 0.92rem;
  }
  .services-offer-heading-row {
    gap: 10px;
  }
  .services-offer-heading-icon {
    width: 20px;
    height: 20px;
  }
  .services-offer-summary {
    margin: 16px 0 18px;
    font-size: 0.82rem;
  }
  .services-offer-note {
    font-size: 0.74rem;
  }
  .services-offer-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
  .service-card-flip {
    height: 100%;
    min-height: 224px;
  }
  .service-flip-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .service-flip-card.is-visible .service-icon-box {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.55);
    transform: scale(1.04);
  }
  .hero-actions, .calc-actions, .cookie-buttons { flex-direction: column; }
  .btn, .hero-actions .btn, .calc-actions .btn { width: 100%; }
  .service-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    min-height: 0;
    padding: 24px;
  }
  .service-icon-box {
    width: 74px;
    height: 74px;
    border-radius: 22px;
  }
  .service-icon {
    width: 30px;
    height: 30px;
  }
  .why-card {
    --why-offset-x: 72px;
    --why-offset-y: 0px;
    --why-card-min-height: 218px;
    --why-card-padding-top: 0;
    --why-body-min-height: 218px;
    --why-body-padding: 72px 22px 24px;
    --why-heading-top: 22px;
    --why-heading-inline: 22px;
    --why-heading-shift: -96px;
  }
  .why-card:nth-child(1),
  .why-card:nth-child(2),
  .why-card:nth-child(3) {
    --why-delay: 0s;
    --why-offset-x: 72px;
  }
  .why-card-premium .why-card-heading {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
  }
  .why-card-premium .why-card-heading::before {
    content: "";
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background:
      linear-gradient(180deg, var(--yellow-strong), var(--yellow)),
      rgba(242, 194, 0, 0.18);
    box-shadow:
      0 0 28px rgba(242, 194, 0, 0.26),
      0 16px 28px rgba(242, 194, 0, 0.18);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 18H20L21 20H3L4 18Z' fill='black' fill-opacity='0.2'/%3E%3Cpath d='M4 18H20' stroke='black' stroke-linecap='round'/%3E%3Cpath d='M5 18L3 9L7 13L12 5L17 13L21 9L19 18H5Z' fill='none' stroke='black' stroke-linejoin='round' stroke-linecap='round'/%3E%3Ccircle cx='3' cy='8' r='1' fill='black'/%3E%3Ccircle cx='12' cy='4' r='1' fill='black'/%3E%3Ccircle cx='21' cy='8' r='1' fill='black'/%3E%3Ccircle cx='7.5' cy='12' r='0.8' fill='black'/%3E%3Ccircle cx='16.5' cy='12' r='0.8' fill='black'/%3E%3Cpath d='M7 16H17' stroke='black' stroke-width='0.8' stroke-opacity='0.5'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 18H20L21 20H3L4 18Z' fill='black' fill-opacity='0.2'/%3E%3Cpath d='M4 18H20' stroke='black' stroke-linecap='round'/%3E%3Cpath d='M5 18L3 9L7 13L12 5L17 13L21 9L19 18H5Z' fill='none' stroke='black' stroke-linejoin='round' stroke-linecap='round'/%3E%3Ccircle cx='3' cy='8' r='1' fill='black'/%3E%3Ccircle cx='12' cy='4' r='1' fill='black'/%3E%3Ccircle cx='21' cy='8' r='1' fill='black'/%3E%3Ccircle cx='7.5' cy='12' r='0.8' fill='black'/%3E%3Ccircle cx='16.5' cy='12' r='0.8' fill='black'/%3E%3Cpath d='M7 16H17' stroke='black' stroke-width='0.8' stroke-opacity='0.5'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
  }
  .why-card-premium .why-card-body {
    padding-top: 88px;
  }
  .why-card-premium .why-card-badge {
    display: none;
  }
  .why-card-text {
    line-height: 1.65;
  }
  .floating-call {
    right: 18px;
    bottom: 22px;
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 768px) {
  .rural-rides-page .compact-card-grid > .page-card:first-child .page-actions .btn,
  .events-page .compact-card-grid > .page-card:first-child .page-actions .btn {
    color: #111;
    background: linear-gradient(180deg, var(--yellow-strong), var(--yellow));
    border-color: rgba(242, 194, 0, 0.85);
    box-shadow: 0 10px 24px rgba(242, 194, 0, 0.16);
  }

  .rural-rides-page .compact-card-grid > .page-card:last-child .page-actions .btn,
  .events-page .compact-card-grid > .page-card:last-child .page-actions .btn {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .calc-total .total { transition: none; }
  .wine-fare-calculator::before,
  .wine-fare-calculator::after { animation: none; }
  .light-left,
  .light-right { animation: none; }
}
