:root {
  --ink: #071b33;
  --ink-soft: #40556c;
  --navy: #002f6c;
  --navy-light: #06478e;
  --cream: #f6f8fb;
  --white: #ffffff;
  --accent: #e31837;
  --accent-dark: #b70f2a;
  --accent-soft: rgba(227, 24, 55, 0.1);
  --blue-soft: #eaf1fa;
  --line: rgba(0, 47, 108, 0.14);
  --shadow: 0 24px 70px rgba(0, 32, 75, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(227, 24, 55, 0.42);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 0;
  background: rgba(0, 35, 80, 0.94);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 33.333%, var(--white) 33.333% 66.666%, var(--navy-light) 66.666% 100%);
  content: "";
}

.navbar {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.logo,
.logo-copy,
.nav-right,
.nav-links,
.header-call,
.lang-switch {
  display: flex;
  align-items: center;
}

.logo {
  gap: 11px;
  color: var(--white);
}

.logo-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.logo-copy {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.05;
}

.logo-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.logo-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-right {
  gap: 22px;
}

.nav-links {
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.lang-switch {
  gap: 3px;
}

.lang-switch button {
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 7px 6px;
  transition: 0.2s ease;
}

.lang-switch button:hover {
  color: var(--white);
}

.lang-switch button.active {
  background: var(--white);
  color: var(--navy);
}

.header-call {
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 11px 15px;
}

.header-call svg {
  width: 15px;
  height: 15px;
}

#menu-toggle,
.hamburger,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 148px 0 86px;
  background: url("images/pozadina.jpg") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 26, 63, 0.97) 0%, rgba(0, 35, 80, 0.88) 38%, rgba(0, 47, 108, 0.62) 68%, rgba(0, 47, 108, 0.48) 100%);
}

.hero-layout {
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.eyebrow,
.section-kicker,
.booking-kicker {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--white);
  font-style: normal;
}

.hero-text {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0 22px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-glass,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.hero .btn-glass {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.hero .btn-glass:hover {
  background: #edf3fa;
}

.btn-glass:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-note svg {
  width: 18px;
  color: var(--accent);
}

.booking-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 28px;
}

.booking-head,
.online-badge,
.form-row {
  display: flex;
}

.booking-head {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.booking-head h2 {
  margin-top: 5px;
  font-size: 1.8rem;
  letter-spacing: -0.06em;
}

.online-badge {
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #e9f9ef;
  color: #18743b;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 7px 10px;
}

.online-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27a852;
}

.booking-form,
.details-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popular-routes p {
  margin-bottom: 7px;
  color: #607080;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popular-routes div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.popular-routes button {
  border: 1px solid #d9e0e6;
  border-radius: 999px;
  background: #f8fafb;
  color: #42505f;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 7px 9px;
  transition: 0.2s ease;
}

.popular-routes button:hover {
  border-color: var(--accent-dark);
  background: rgba(227, 24, 55, 0.1);
  color: var(--ink);
}

.price-info {
  position: relative;
  border: 1px solid rgba(227, 24, 55, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.08), rgba(0, 47, 108, 0.06));
  padding: 13px 14px 13px 38px;
}

.price-info::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(227, 24, 55, 0.12);
  content: "";
}

.price-info strong,
.price-info span {
  display: block;
}

.price-info strong {
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.25;
}

.price-info span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.45;
}

.booking-field {
  flex: 1;
}

.booking-field label {
  display: block;
  margin-bottom: 6px;
  color: #607080;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid #d9e0e6;
  border-radius: 10px;
  background: #f8fafb;
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
  transition: 0.2s ease;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.16);
}

.booking-field textarea {
  min-height: 76px;
  resize: vertical;
}

.input-wrap {
  position: relative;
}

.input-wrap svg {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 17px;
  transform: translateY(-50%);
  color: #657583;
}

.input-wrap input {
  padding-left: 40px;
}

.route-line {
  height: 7px;
  padding-left: 19px;
}

.route-line span {
  display: block;
  height: 100%;
  border-left: 1px dashed #b3bec8;
}

.form-row {
  gap: 12px;
  margin-top: 4px;
}

.more-details {
  margin-top: 2px;
}

.return-ride {
  margin-top: 2px;
}

.return-ride > label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #536170;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 800;
}

.return-ride input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-dark);
}

.return-time {
  display: none;
  margin-top: 12px;
}

.return-time.visible {
  display: block;
}

.more-details summary {
  color: #536170;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 800;
}

.details-fields {
  margin-top: 14px;
}

.btn-dark {
  width: 100%;
  margin-top: 5px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
}

.form-note {
  color: #75818d;
  font-size: 0.67rem;
  text-align: center;
}

.privacy-note {
  margin-top: -7px;
  color: #8a949e;
  font-size: 0.61rem;
  line-height: 1.45;
  text-align: center;
}

.trust-bar {
  background: var(--cream);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid div {
  display: flex;
  width: 168px;
  height: 168px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 15, 26, 0.06);
  animation: float-trust-circle 4.8s ease-in-out infinite;
}

.trust-grid div:nth-child(2) {
  animation-delay: -1.6s;
}

.trust-grid div:nth-child(3) {
  animation-delay: -3.2s;
}

.trust-grid div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 1.8rem;
  letter-spacing: -0.08em;
}

.trust-grid span {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes float-trust-circle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-grid div {
    animation: none;
  }
}

.section {
  padding: 118px 0;
}

.section-heading h2,
.coverage-section h2,
.cta-section h2 {
  margin-top: 10px;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  letter-spacing: -0.09em;
  line-height: 1.04;
}

.split-heading {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.split-heading > p,
.process-layout .section-heading > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
}

.service-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 28px;
  transition: 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--navy-light);
  content: "";
}

.featured-card::before {
  background: rgba(255, 255, 255, 0.72);
}

.service-card:nth-child(3)::before {
  background: rgba(255, 255, 255, 0.72);
}

.service-card:hover {
  box-shadow: 0 18px 44px rgba(4, 15, 26, 0.1);
  transform: translateY(-5px);
}

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

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--navy);
}

.service-icon svg {
  width: 26px;
}

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

.service-card:nth-child(3) {
  background: var(--navy);
  color: var(--white);
}

.service-card:nth-child(3) .service-icon {
  background: var(--white);
  color: var(--navy);
}

.card-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(16, 24, 32, 0.18);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.09em;
}

.featured-card .card-number {
  color: rgba(255, 255, 255, 0.34);
}

.service-card:nth-child(3) .card-number {
  color: rgba(255, 255, 255, 0.16);
}

.service-card h3 {
  margin-top: 34px;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.service-card p:last-child {
  margin-top: 10px;
  color: #61707e;
  font-size: 0.88rem;
}

.featured-card p:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:nth-child(3) p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.process-layout .section-heading > p {
  max-width: 480px;
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 30px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.text-link span {
  color: var(--accent-dark);
}

.steps-list {
  list-style: none;
}

.steps-list li {
  display: grid;
  gap: 22px;
  grid-template-columns: 56px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.steps-list h3 {
  font-size: 1.14rem;
  letter-spacing: -0.04em;
}

.steps-list p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.coverage-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 94px 0;
}

.coverage-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 110px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent) 0 33%, var(--white) 33% 66%, var(--navy-light) 66% 100%);
  content: "";
  transform: translateX(-50%);
}

.coverage-section::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 47, 108, 0.08);
  border-radius: 50%;
  content: "";
}

.coverage-section .section-kicker {
  color: var(--accent);
}

.coverage-section h2 {
  color: var(--navy);
}

.coverage-layout {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

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

.locations span {
  position: relative;
  border: 1px solid rgba(0, 47, 108, 0.12);
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 14px 15px 14px 31px;
  transition: 0.2s ease;
}

.locations span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.locations span:hover {
  border-color: rgba(0, 47, 108, 0.3);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 32, 75, 0.08);
  transform: translateY(-2px);
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #00275a 100%);
  color: var(--white);
  padding: 90px 0;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-section h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.cta-section p:not(.section-kicker) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.cta-actions {
  min-width: max-content;
  margin-top: 0;
}

.footer {
  background: #001f47;
  color: rgba(255, 255, 255, 0.58);
}

.footer-layout {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p,
.footer-phone {
  font-size: 0.75rem;
}

.croatia-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.checker-mark {
  display: grid;
  width: 18px;
  height: 18px;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px;
}

.checker-mark i:nth-child(1),
.checker-mark i:nth-child(4) {
  background: var(--accent);
}

.checker-mark i:nth-child(2),
.checker-mark i:nth-child(3) {
  background: var(--white);
}

.footer-phone {
  color: var(--accent);
  font-weight: 800;
}

.footer-right {
  display: flex;
  max-width: 300px;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.footer-right span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.61rem;
  line-height: 1.4;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 1080px) {
  .nav-links,
  .desktop-lang-switch {
    display: none;
  }

  .hamburger {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    cursor: pointer;
  }

  .hamburger span {
    width: 17px;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu {
    position: absolute;
    top: 76px;
    right: 24px;
    display: none;
    width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: var(--navy);
    box-shadow: var(--shadow);
    padding: 18px;
  }

  #menu-toggle:checked ~ .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu > a {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .mobile-lang-switch {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-layout {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) 390px;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 140px 0 70px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 26, 63, 0.94) 0%, rgba(0, 47, 108, 0.8) 100%);
  }

  .hero-layout,
  .split-heading,
  .process-layout,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 13vw, 5.5rem);
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div {
    width: 150px;
    height: 150px;
    padding: 8px 4px;
  }

  .trust-grid div:last-child {
    grid-column: 1 / -1;
  }

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

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

  .split-heading,
  .process-layout {
    gap: 24px;
  }

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(100% - 32px, 560px);
  }

  .navbar {
    width: calc(100% - 32px);
    min-height: 68px;
  }

  .header-call {
    display: none;
  }

  .mobile-menu {
    top: 68px;
    right: 16px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 52px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-note {
    font-size: 0.68rem;
  }

  .booking-card {
    border-radius: 18px;
    padding: 20px;
  }

  .booking-head h2 {
    font-size: 1.55rem;
  }

  .form-row {
    flex-direction: column;
  }

  .trust-grid strong {
    font-size: 1.5rem;
  }

  .trust-grid span {
    font-size: 0.59rem;
    text-align: center;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .coverage-section h2,
  .cta-section h2 {
    font-size: 2.8rem;
  }

  .service-grid {
    margin-top: 34px;
  }

  .coverage-section,
  .cta-section {
    padding: 66px 0;
  }

  .locations span {
    font-size: 0.7rem;
  }

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

  .cta-actions {
    width: 100%;
    min-width: 0;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-layout {
    min-height: 150px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 26px 0;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }

  .mobile-quick-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(4, 15, 26, 0.16);
  }

  .mobile-quick-actions a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-quick-actions a:first-child {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-quick-actions svg {
    width: 18px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .trust-grid {
    gap: 10px;
  }

  .trust-grid div {
    width: 134px;
    height: 134px;
  }
}
