@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #101114;
  --surface: #17191d;
  --surface-light: #f5f5f2;
  --card: #ffffff;
  --text: #16171a;
  --muted: #676b73;
  --light: #ffffff;
  --accent: #f2c94c;
  --accent-dark: #d7ac2d;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(11, 12, 15, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--surface-light);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(16, 17, 20, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
  line-height: 1.05;
  flex-shrink: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent);
  color: #111215;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.navigation a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navigation a:hover {
  color: var(--light);
}

.navigation a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #121316;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button:hover {
  background: #f8d45f;
  box-shadow: 0 12px 34px rgba(242, 201, 76, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 19px;
  border-radius: 12px;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.menu-button span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 830px;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 65% 10%, rgba(242, 201, 76, 0.07), transparent 32%),
    linear-gradient(135deg, #0d0e11 0%, #16181c 100%);
  color: var(--light);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -45%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 170px;
  right: 14%;
  width: 320px;
  height: 320px;
  background: rgba(242, 201, 76, 0.07);
}

.hero-glow-two {
  bottom: -180px;
  left: -140px;
  width: 430px;
  height: 430px;
  background: rgba(87, 109, 255, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.eyebrow.dark {
  color: #757981;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-description {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.hero-notes span::first-letter {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.car-scene {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 650px;
  max-width: 120%;
  transform: translate(-50%, -50%);
}

.car-scene::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.car-scene::after {
  content: "";
  position: absolute;
  right: 11%;
  bottom: 1%;
  left: 9%;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(13px);
}

.car-scene img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.35));
}

.road-line {
  position: absolute;
  z-index: -1;
  top: 68%;
  right: -8%;
  left: -8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.55), transparent);
}

.route-card {
  position: absolute;
  z-index: 5;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(31, 33, 38, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.route-card-top {
  top: 20px;
  right: 20px;
}

.route-card-bottom {
  bottom: 20px;
  left: 0;
}

.route-card small,
.route-card strong {
  display: block;
}

.route-card small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card strong {
  margin-top: 3px;
  color: white;
  font-size: 13px;
}

.route-dot,
.route-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #121316;
  font-weight: 800;
}

.route-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 3px solid #121316;
  border-radius: 50%;
}

.stats {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.stats article {
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
}

.stats article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 30px;
  width: 1px;
  background: #e9e9e5;
}

.stats strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading h2,
.routes-section h2,
.cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e8e8e3;
  border-radius: var(--radius);
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(16, 17, 20, 0.09);
}

.service-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 50%;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f3f3ef;
  color: #686b70;
  font-size: 12px;
  font-weight: 800;
}

.featured .service-icon {
  background: rgba(255, 255, 255, 0.45);
  color: #121316;
}

.service-label {
  position: absolute;
  top: 28px;
  right: 24px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #111215;
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 64px 0 12px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.featured p {
  color: rgba(16, 17, 20, 0.67);
}

.routes-section {
  background: var(--bg);
  color: white;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 100px;
}

.routes-description {
  max-width: 620px;
  margin: 20px 0 36px;
  color: rgba(255, 255, 255, 0.55);
}

.route-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 30px;
}

.route-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.route-list span {
  color: rgba(255, 255, 255, 0.44);
}

.route-list i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
}

.route-list strong {
  font-weight: 700;
}

.booking-card {
  padding: 42px;
  border-radius: 28px;
  background: var(--accent);
  color: #111215;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.booking-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.booking-card > p:not(.booking-kicker) {
  margin: 16px 0 26px;
  color: rgba(17, 18, 21, 0.66);
  font-size: 14px;
}

.booking-info {
  padding: 18px 0;
  border-top: 1px solid rgba(17, 18, 21, 0.14);
  border-bottom: 1px solid rgba(17, 18, 21, 0.14);
}

.booking-info small,
.booking-info a {
  display: block;
}

.booking-info small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-info a {
  margin-top: 4px;
  font-size: 23px;
  font-weight: 800;
}

.booking-buttons {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-buttons .button:first-child {
  background: #111215;
  color: white;
}

.booking-buttons .button:first-child:hover {
  background: #2a2c31;
}

.button-light {
  border: 1px solid rgba(17, 18, 21, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e4e4df;
  border-radius: var(--radius);
  background: #e4e4df;
}

.advantages-grid article {
  min-height: 210px;
  display: flex;
  gap: 25px;
  padding: 36px;
  background: white;
}

.advantages-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: #f3f3ef;
  color: #777b82;
  font-size: 11px;
  font-weight: 800;
}

.advantages-grid h3 {
  margin: 2px 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.advantages-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(242, 201, 76, 0.09), transparent 28%),
    var(--bg);
  color: white;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 100px;
}

.cta-inner > div:first-child > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.cta-contact {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.cta-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-contact > a {
  display: block;
  margin-top: 8px;
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cta-contact > div {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  color: white;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0c0f;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1020px) {
  .navigation {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .car-scene {
    width: 610px;
    max-width: 90%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats article:nth-child(2)::after {
    display: none;
  }

  .stats article:nth-child(-n + 2) {
    border-bottom: 1px solid #e9e9e5;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .routes-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .booking-card {
    max-width: 560px;
  }

  .cta-contact {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: block;
  }

  .header-call {
    display: none;
  }

  .navigation {
    position: fixed;
    z-index: 20;
    top: 70px;
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(19, 20, 24, 0.98);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .navigation a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .navigation a:last-child {
    border-bottom: 0;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 124px 0 80px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .car-scene {
    width: 520px;
    max-width: 112%;
  }

  .route-card {
    min-width: 162px;
    padding: 13px;
  }

  .route-card-top {
    top: 0;
    right: 0;
  }

  .route-card-bottom {
    bottom: 0;
    left: 0;
  }

  .stats {
    margin-top: 0;
    padding: 14px 0 0;
    background: var(--bg);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats article {
    min-height: 112px;
    padding: 20px;
  }

  .stats strong {
    font-size: 20px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 255px;
  }

  .service-card h3 {
    margin-top: 46px;
  }

  .route-list {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 28px;
  }

  .booking-buttons {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid article {
    min-height: 180px;
    padding: 28px 24px;
  }

  .cta {
    padding: 76px 0 110px;
  }

  .cta-contact > div {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(17, 18, 21, 0.91);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent);
    color: #111215;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
}

@media (max-width: 420px) {
  .hero-notes {
    display: grid;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-bottom: 1px solid #e9e9e5;
  }

  .stats article::after {
    display: none;
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .route-card {
    min-width: 145px;
  }

  .route-card strong {
    max-width: 120px;
    font-size: 11px;
  }

  .booking-card h3 {
    font-size: 29px;
  }

  .booking-info a {
    font-size: 20px;
  }
}


/* Тарифи */
.tariff-section {
  background: #ecece7;
}

.tariff-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 64px;
}

.tariff-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tariff-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
}

.tariff-highlights {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tariff-highlights article {
  padding: 20px;
  border: 1px solid #deded8;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
}

.tariff-highlights strong,
.tariff-highlights span {
  display: block;
}

.tariff-highlights strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.tariff-highlights span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.tariff-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow);
}

.tariff-image-card a {
  display: block;
}

.tariff-image-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.tariff-image-card a:hover img {
  transform: scale(1.012);
}

.tariff-image-card figcaption {
  padding: 13px 18px 16px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

/* Список телефонів */
.phone-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cta-contact .phone-item {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(19px, 2.4vw, 29px);
  font-weight: 800;
  letter-spacing: -0.035em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-contact .phone-item:hover {
  border-color: rgba(242, 201, 76, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.cta-contact .primary-phone {
  border-color: rgba(242, 201, 76, 0.4);
  color: var(--accent);
}

.phone-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions {
  margin-top: 18px;
}

@media (max-width: 1020px) {
  .tariff-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .tariff-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .tariff-highlights {
    grid-template-columns: 1fr;
  }

  .tariff-call-button {
    width: 100%;
  }

  .tariff-image-card {
    border-radius: 18px;
  }

  .cta-contact .phone-item {
    font-size: 20px;
  }
}


/* Однаковий блок телефонів і графік роботи */
.working-hours {
  margin-top: 18px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.working-hours span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.working-hours strong {
  color: var(--accent);
  font-size: 15px;
  white-space: nowrap;
}

.cta-contact > .phone-list {
  margin-top: 14px;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.cta-contact .phone-item {
  width: 100%;
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 16px;
  font-size: clamp(15px, 1.75vw, 22px);
  line-height: 1.35;
  white-space: nowrap;
}

.cta-contact .phone-item span {
  margin-top: 8px;
  white-space: normal;
}

.cta-contact > .contact-actions {
  margin-top: 18px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.viber-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.viber-button:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

@media (max-width: 760px) {
  .cta-contact > .phone-list {
    grid-template-columns: 1fr;
  }

  .cta-contact .phone-item {
    min-height: 92px;
    font-size: 21px;
  }

  .cta-contact > .contact-actions {
    grid-template-columns: 1fr;
  }

  .working-hours {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .cta-contact .phone-item {
    font-size: 18px;
  }
}


/* Після видалення плашки точки приїзду */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .car-scene {
  top: 54%;
}

@media (max-width: 760px) {
  .hero-visual .car-scene {
    top: 56%;
  }
}


/* Три актуальні послуги */
@media (min-width: 1021px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* Виправлений блок телефонів: без накладання номерів */
.cta-inner {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 64px;
}

.cta-contact {
  min-width: 0;
}

.cta-contact > .phone-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: 100%;
}

.cta-contact .phone-item {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 86px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px;
  padding: 16px 20px !important;
  overflow: hidden;
  white-space: normal !important;
}

.cta-contact .phone-number {
  min-width: 0;
  color: inherit;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.cta-contact .phone-item > span {
  flex: 0 0 auto;
  max-width: 92px;
  margin: 0 !important;
  text-align: right;
  line-height: 1.4;
  white-space: normal !important;
}

.cta-contact .primary-phone .phone-number {
  color: var(--accent);
}

@media (max-width: 1020px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-contact {
    width: 100%;
    max-width: 620px;
  }
}

@media (max-width: 520px) {
  .cta-contact .phone-item {
    min-height: 96px !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 7px;
  }

  .cta-contact .phone-number {
    font-size: 21px;
  }

  .cta-contact .phone-item > span {
    max-width: none;
    text-align: left;
  }
}


/* =========================================================
   ФІНАЛЬНИЙ БЛОК ТЕЛЕФОНІВ — унікальні класи без конфліктів
   ========================================================= */

.cta-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px) !important;
  align-items: start !important;
  gap: 64px !important;
}

.cta-contact {
  width: 100% !important;
  min-width: 0 !important;
}

.taxi-phone-cards {
  width: 100%;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.taxi-phone-card {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 7px;
  padding: 17px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.taxi-phone-card:hover {
  border-color: rgba(242, 201, 76, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.taxi-phone-card-main {
  border-color: rgba(242, 201, 76, 0.52);
}

.taxi-phone-card-label {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.taxi-phone-card-number {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: clamp(21px, 2.15vw, 29px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.taxi-phone-card-main .taxi-phone-card-number {
  color: var(--accent);
}

.cta-contact > .contact-actions {
  width: 100%;
  margin-top: 16px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 10px !important;
}

.cta-contact > .contact-actions .button {
  width: 100%;
  min-width: 0;
  padding-right: 14px;
  padding-left: 14px;
  text-align: center;
  white-space: normal;
}

@media (max-width: 1100px) {
  .cta-inner {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .cta-contact {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .taxi-phone-card {
    min-height: 88px;
    padding: 16px;
  }

  .taxi-phone-card-number {
    font-size: clamp(20px, 6.4vw, 25px);
  }

  .cta-contact > .contact-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 360px) {
  .taxi-phone-card-number {
    font-size: 18px;
    letter-spacing: -0.055em;
  }
}


/* Instagram і TikTok */
.social-links-block {
  width: 100%;
  margin-top: 24px;
}

.social-links-title {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 201, 76, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: #f2c94c;
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 520px) {
  .social-links {
    grid-template-columns: 1fr;
  }

  .social-link {
    justify-content: flex-start;
  }
}
