:root {
  --tn-orange: #ff8200;
  --tn-blue: #0b1f3a;
  --ink: #0f172a;
  --line: rgba(15, 23, 42, 0.1);

  /* Your tuning knobs */
  --max: 1520px;
  --pad: clamp(12px, 1.4vw, 18px);

  --radius: 26px;

  /* Carousel arrow safe zone on desktop (keep arrows off text) */
  --carousel-arrow-safe: 260px;

  --color-accent: var(--tn-orange);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: #fff;
}

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

a {
  color: inherit;
}

/* Layout */
.container {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.center {
  text-align: center;
}

.section {
  padding: 26px 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid var(--tn-orange);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

/* Utility bar */
.utility-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  padding: 8px 0;
}

/* Main container */
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* allow 2-line layout */
  gap: 16px;
}

/* Left & right columns stack vertically */
.utility-left,
.utility-right {
  display: flex;
  flex-direction: column;
  /* key change */
  gap: 1px;
  min-width: 0;
}

/* First line (icon + text) */
.utility-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  column-gap: 10px;
}

.utility-line>span,
.utility-line>a {
  display: inline-flex;
  align-items: center;
}

.utility-phone-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Icon styling */
.utility-icon {
  width: 19px;
  height: 19px;
  color: var(--tn-orange);
  /* uses currentColor in SVG */
  flex-shrink: 0;
}

/* Phone link */
.utility-phone {
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.utility-phone:hover {
  text-decoration: underline;
}

/* Subtext line (trust / emergency) */
.utility-sub {
  font-size: 12px;
  margin-left: 0;
  /* IMPORTANT: remove the fixed indent */
  padding-left: 28px;
  /* aligns exactly under text column */
  line-height: 1.15;
  opacity: 0.85;
  font-weight: 600;
}

/* Emergency highlight */
.utility-sub.emergency {
  color: var(--tn-orange);
  font-weight: 900;
  opacity: 1;
}

/* Prevent left text overflow on desktop */
.utility-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-line span,
.utility-line a {
  white-space: nowrap;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.brand-name {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 28px;
  line-height: 1.1;
}

.brand-sub {
  font-weight: 800;
  opacity: 0.78;
  margin-top: 2px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.55);
  padding: 10px 6px;
  border-bottom: 3px solid transparent;
}

.nav-link.is-active,
.nav-link.active {
  color: rgba(15, 23, 42, 0.96);
  border-bottom-color: var(--tn-orange);
}

/* Desktop Services dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  appearance: none;
  -webkit-appearance: none;

  background: transparent;
  border: 0;
  margin: 0;

  font-family: inherit;
  font-size: inherit;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1;

  display: inline-flex;
  align-items: center;

  cursor: pointer;
}

.nav-dropdown-toggle.nav-link {
  padding: 10px 6px;
  border-bottom: 3px solid transparent;
}

.nav-caret {
  margin-left: 8px;
  font-size: 14px;
  line-height: 1;
  color: currentColor;
  transform: translateY(1px);
  display: inline-flex;
  opacity: 0.9;
}

.nav-caret svg {
  width: 18px;
  height: 18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;

  min-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);

  padding: 10px;
  display: none;
  z-index: 2500;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.9);
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* Open on hover and keyboard focus */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: rgba(15, 23, 42, 0.96);
  border-bottom-color: var(--tn-orange);
}

.nav:hover>a.nav-link.is-active {
  border-bottom-color: transparent;
}

/* Normal hover underline */
.nav-link:hover {
  border-bottom-color: var(--color-accent);
}

/* Dropdown hover state */
.nav-dropdown:hover>.nav-link {
  border-bottom-color: var(--color-accent);
}

/* Keep Services highlighted while menu open */
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* Allow dropdown toggle button to behave like nav links */
.nav-dropdown-toggle.is-active {
  border-bottom: 3px solid var(--color-accent);
}

/* Also underline on hover */
.nav-dropdown:hover>.nav-dropdown-toggle {
  border-bottom: 3px solid var(--color-accent);
}

.header-cta {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--tn-orange);
  color: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 26px rgba(255, 130, 0, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-dark {
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: rgba(15, 23, 42, 0.95);
  border-color: rgba(15, 23, 42, 0.25);
}

.header-call {
  padding: 12px 18px;
}

/* Mobile navigation */
.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 130, 0, 0.45);
  outline-offset: 2px;
}

.nav-toggle .bars {
  width: 20px;
  height: 14px;
  position: relative;
}

.nav-toggle .bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 2px;
}

.nav-toggle .bars span:nth-child(1) {
  top: 0;
}

.nav-toggle .bars span:nth-child(2) {
  top: 6px;
}

.nav-toggle .bars span:nth-child(3) {
  top: 12px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 2000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -24px 0 70px rgba(15, 23, 42, 0.22);
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 2001;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.mobile-menu-links {
  padding: 10px 10px 18px;
  display: grid;
  gap: 8px;
}

.mobile-menu-links a {
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.9);
  font-weight: 800;
}

.mobile-menu-links a:hover {
  background: rgba(15, 23, 42, 0.05);
}

.mobile-menu-links a.active,
.mobile-menu-links a.is-active {
  background: rgba(255, 130, 0, 0.12);
  color: rgba(15, 23, 42, 0.95);
}

.mobile-menu-cta {
  margin-top: auto;
  padding: 14px 14px 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* Mobile Services expandable section inside hamburger */
.mobile-subnav {
  border-radius: 12px;
}

.mobile-subnav summary {
  list-style: none;
  padding: 12px 12px;
  border-radius: 12px;
  cursor: pointer;

  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-subnav summary::-webkit-details-marker {
  display: none;
}

.mobile-subnav summary:hover {
  background: rgba(15, 23, 42, 0.05);
}

.mobile-subnav[open] summary {
  background: rgba(255, 130, 0, 0.12);
  color: rgba(15, 23, 42, 0.95);
}

.mobile-subnav-caret {
  display: inline-flex;
  opacity: 0.9;
}

.mobile-subnav-caret svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

/* Rotate when expanded */
.mobile-subnav[open] .mobile-subnav-caret svg {
  transform: rotate(180deg);
}

.mobile-subnav[open] .mobile-subnav-caret {
  transform: rotate(180deg) translateY(-1px);
}

.mobile-subnav-links {
  padding: 6px 6px 10px;
  display: grid;
  gap: 6px;
}

.mobile-subnav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;

  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
}

.mobile-subnav-links a:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* Hero / Carousel */
.section-hero {
  padding-top: 30px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--tn-blue);
  padding-bottom: 44px;
  isolation: isolate;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 450ms ease;
  will-change: transform;
  transform: translateX(0);
}

.slide {
  position: relative;
  min-width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #0b1f3a;
  height: clamp(420px, 42vw, 560px);
}

.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: right center;

  filter: saturate(1.35) contrast(1.12) brightness(1.06);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(11, 31, 58, 0.72) 0%,
      rgba(11, 31, 58, 0.55) 40%,
      rgba(11, 31, 58, 0.22) 62%,
      rgba(11, 31, 58, 0.08) 78%,
      rgba(11, 31, 58, 0) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  width: min(620px, 52vw);

  padding-top: clamp(22px, 3vw, 44px);
  padding-right: clamp(22px, 3vw, 44px);
  padding-bottom: clamp(22px, 3vw, 44px);

  padding-left: clamp(64px, 6vw, 92px);

  display: grid;
  align-content: center;
  gap: 14px;
  color: #fff;
}

.slide-eyebrow {
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 12px;
  opacity: 0.85;
}

.slide-title {
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}

.slide-subtitle {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.slide-meta {
  margin-top: 4px;
  font-weight: 800;
  font-size: 14px;
  opacity: 0.78;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.28);
  color: rgba(255, 255, 255, 0.95);
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  opacity: 1;
  visibility: visible;
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 14px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 12px;
  z-index: 6;

  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(6px);
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.7);

  cursor: pointer;
}

.dot.is-active,
.dot[data-active="true"] {
  background: var(--tn-orange);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Social row */
.section-social {
  padding-top: 10px;
  padding-bottom: 6px;
}

.social-row {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
}

.social-svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Request band */
.section-request {
  padding-top: 24px;
  padding-bottom: 26px;
}

.request-band {
  background: var(--tn-orange);
  border-radius: 0;
  padding: clamp(18px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.exp-badge {
  width: 160px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.16);
  padding: 18px 18px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.exp-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.exp-number {
  font-weight: 950;
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.exp-years {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
  transform: translateY(-8px);
  opacity: 0.95;
}

.exp-text {
  margin-top: 8px;
  text-align: center;
  font-weight: 900;
  opacity: 0.95;
}

.request-title {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 48px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 950;
}

.request-sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.request-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

/* Contact section */
.section-contact {
  padding-top: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}

.contact-kicker {
  color: #b91c1c;
  font-weight: 950;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.contact-title {
  margin: 10px 0 0;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.contact-title .muted {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
}

.contact-desc {
  margin: 14px 0 0;
  color: rgba(15, 23, 42, 0.65);
  font-size: 16px;
  max-width: 52ch;
}

.contact-bullets {
  margin: 22px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  font-weight: 900;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 160px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  background: #fafafa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-name {
  font-weight: 950;
}

.footer-sub {
  font-weight: 800;
  opacity: 0.7;
}

.footer-meta {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 800;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-head {
  font-weight: 950;
  margin-top: 16px;
  margin-bottom: 14px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: rgba(15, 23, 42, 0.95);
}

.footer-line {
  color: rgba(15, 23, 42, 0.7);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 800;
  align-items: center;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.65);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.footer-legal {
  flex: 0 0 auto;
}

.footer-copy {
  flex: 0 0 auto;
  margin-left: auto;
  /* forces it to the far right */
  text-align: right;
  white-space: nowrap;
  /* prevents wrapping to next line */
}

.footer-line.trust {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 800;
}

.footer-line.license {
  font-weight: 600;
  opacity: 0.85;
}

.footer-line.emergency {
  color: var(--tn-orange);
  font-weight: 900;
}

.footer-grid>div {
  min-width: 0;
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: #ff8200;
  /* Tennessee orange */
  flex-shrink: 0;
}

.service-block {
  margin-top: 18px;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tn-orange);
  margin-bottom: 6px;
}

.service-desc {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-item summary {
  color: var(--tn-orange);
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  color: #000;
}

.faq-item summary:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    gap: 18px;
  }

  .slide-content {
    width: min(560px, 68vw);
  }

  .request-band {
    grid-template-columns: auto 1fr;
  }

  .request-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .utility-bar {
    display: none;
  }

  /* Stack left and right vertically */
  .utility-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Hide secondary lines to keep header compact */
  .utility-sub {
    display: none;
  }

  /* Allow full text wrapping on mobile */
  .utility-left span {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    justify-self: center;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    font-size: 20px;
  }

  .header-call {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .slide {
    height: 520px;
  }

  .slide-content {
    width: 100%;
    padding-top: 22px;
    padding-right: 18px;
    padding-bottom: 22px;

    padding-left: 72px;

    align-content: end;
  }

  .slide-overlay {
    background: linear-gradient(90deg,
        rgba(11, 31, 58, 0.62) 0%,
        rgba(11, 31, 58, 0.44) 42%,
        rgba(11, 31, 58, 0.16) 64%,
        rgba(11, 31, 58, 0.06) 80%,
        rgba(11, 31, 58, 0) 100%);
  }

  .slide-title {
    font-size: 44px;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

  .request-band {
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 22px;
  }

  .request-actions {
    justify-content: flex-start;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 640px) {
  .footer-copy {
    margin-left: 0;
    text-align: left;
    white-space: normal;
  }
}