:root {
  --color-navy: #061B4E;
  --color-blue: #0B3F91;
  --color-blue-light: #EAF2FF;
  --color-red: #D90016;
  --color-red-hover: #B80012;
  --color-white: #FFFFFF;
  --color-off-white: #F7F9FC;
  --color-light-gray: #E5EAF2;
  --color-text: #0B1B3D;
  --color-muted: #5C6B82;
  --color-border: #D9E2EF;

  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-max: 1200px;
  --border-radius: 20px;
  --border-radius-sm: 10px;
  --shadow-card: 0 14px 36px rgba(6, 27, 78, 0.08);
  --shadow-hover: 0 20px 48px rgba(6, 27, 78, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-fade {
  transform: none;
}

.reveal-up {
  transform: translateY(26px);
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn img {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px;
  object-fit: contain;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border: 1px solid var(--color-red);
}

.btn-primary img {
  filter: brightness(0) invert(1);
}

.btn-primary:hover {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1.5px solid var(--color-blue);
}

.btn-secondary:hover {
  background: var(--color-blue-light);
}

.section-kicker {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  color: var(--color-navy);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img,
.site-logo {
  max-width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-red);
}

.header-cta {
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  padding: 68px 0 58px;
  background: #f3f8ff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 24%,
      rgba(255, 255, 255, 0.55) 43%,
      rgba(255, 255, 255, 0.08) 68%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../assets/hero_image.webp") center right / auto 100% no-repeat;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(52%, 590px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  margin-bottom: 22px;
}

.eyebrow-icon {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--color-navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 530px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-actions .btn img {
  width: 18px;
  height: 18px;
}

.hero-trust-items {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
}

.trust-mini-item img {
  width: 24px;
  height: 24px;
}

.trust-mini-item strong {
  font-weight: 700;
  font-size: 14px;
}

.trust-mini-item div {
  font-size: 13px;
  line-height: 1.4;
}

.hero-visual {
  display: none !important;
}

.hero-visual::before {
  display: none !important;
}

.hero-car {
  display: none !important;
}

.trust-bar-section {
  margin-top: -22px;
  position: relative;
  z-index: 5;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 22px 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--color-navy);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.trust-item small {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
}

.packages {
  padding: 76px 0 64px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 38px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card-featured {
  border: 1.5px solid var(--color-red) !important;
  transform: translateY(-10px);
}

.package-badge {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  background: var(--color-red);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.package-icon {
  margin-bottom: 16px;
}

.package-icon img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.package-card h3 {
  color: var(--color-navy);
  font-size: 24px;
  margin-bottom: 10px;
}

.price-label {
  color: var(--color-muted);
  margin: 0;
  font-size: 13px;
}

.price {
  color: var(--color-red);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  margin: 4px 0 18px;
}

.package-description {
  color: var(--color-text);
  min-height: 54px;
  font-size: 14px;
  line-height: 1.5;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  text-align: left;
  flex: 1;
}

.package-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 15px;
}

.package-card li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.package-card .btn {
  align-self: center;
  margin-top: auto;
}

.quote-form-section {
  padding: 24px 0 76px;
}

.quote-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
}

.quote-intro {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.quote-icon img {
  width: 42px;
  height: 42px;
}

.quote-intro h2 {
  color: var(--color-navy);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 800;
}

.quote-intro p {
  color: var(--color-muted);
  margin: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form .btn {
  grid-column: 1 / -1;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  left: -9999px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.quote-form input,
.quote-form select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 15px;
  font-family: inherit;
}

.quote-form input:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(11, 63, 145, 0.1);
}

.quote-form button img {
  width: 18px;
  height: 18px;
}

.results {
  padding: 80px 0 56px;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: center;
}

.results-copy h2 {
  color: var(--color-navy);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 800;
}

.results-copy .section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-copy .section-kicker img {
  width: 20px;
  height: 20px;
}

.results-copy p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.results-copy .btn {
  width: auto;
  min-width: 0;
  min-height: 52px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.before-after-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(6, 27, 78, 0.12);
}

.ba-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 210px;
  overflow: hidden;
}

.ba-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 27, 78, .16);
}

.ba-handle img {
  width: 22px;
  height: 22px;
}

.ba-label {
  position: absolute;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-white);
}

.ba-before {
  left: 10px;
  background: rgba(0, 0, 0, .72);
}

.ba-after {
  right: 10px;
  background: var(--color-blue);
}

.why-choose {
  padding: 42px 0 64px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 34px 24px;
}

.benefit-icon img {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
}

.benefit-card h3 {
  color: var(--color-navy);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.how-it-works {
  padding: 50px 0;
}

.steps-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.step-icon img {
  width: 36px;
  height: 36px;
}

.step-item h3 {
  color: var(--color-navy);
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 700;
}

.step-item p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.step-arrow img {
  width: 28px;
  height: 28px;
  color: var(--color-blue);
}

.reviews {
  padding: 50px 0 76px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.review-card {
  padding: 26px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.stars img {
  width: 18px;
  height: 18px;
}

.review-card p {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.65;
  min-height: 116px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-author strong {
  display: block;
  color: var(--color-navy);
  font-size: 14px;
}

.review-author small {
  color: var(--color-muted);
  font-size: 12px;
}

.final-cta-section {
  padding: 70px 0 0;
}

.final-cta {
  position: relative;
  min-height: 230px;
  padding: 42px 330px 42px 42px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  background: linear-gradient(90deg, #FFFFFF 0%, #EAF2FF 100%);
  border: 1px solid var(--color-border);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  background: var(--color-red);
  border-radius: 0 999px 999px 0;
}

.final-cta-copy h2 {
  position: relative;
  z-index: 2;
  color: var(--color-navy);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  max-width: 520px;
  margin-bottom: 12px;
  font-weight: 800;
}

.final-cta-copy p {
  position: relative;
  z-index: 2;
  color: var(--color-muted);
  font-size: 16px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.final-cta-actions .btn img {
  width: 18px;
  height: 18px;
}

.btn-call {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1.5px solid var(--color-blue);
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-call img {
  width: 20px;
  height: 20px;
}

.btn-call strong,
.btn-call small {
  display: block;
  text-align: left;
}

.btn-call strong {
  font-size: 14px;
  color: var(--color-navy);
}

.btn-call small {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 400;
}

.final-cta-car {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 330px;
  height: 100%;
  max-width: 34%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.5;
  z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
}

.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 54px 0 22px;
  margin-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .85fr 1fr;
  gap: 48px;
}

.footer-logo {
  max-width: 220px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
}

.social-links a img {
  width: 18px;
  height: 18px;
}

.footer-column h3 {
  color: var(--color-white);
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
}

.footer-column a,
.footer-column p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-column a img,
.footer-column p img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.footer-column a:hover,
.footer-book {
  color: var(--color-red) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 1024px) {
  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 30%,
        rgba(255, 255, 255, 0.68) 54%,
        rgba(255, 255, 255, 0.22) 78%,
        rgba(255, 255, 255, 0.05) 100%
      ),
      url("../assets/hero_image.webp") center right / auto 100% no-repeat;
  }

  .hero-content {
    width: min(58%, 560px);
  }

  .trust-bar {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 18px;
  }

  .trust-item {
    min-width: 180px;
    border-right: 0;
    padding: 0;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card-featured {
    transform: none;
  }

  .package-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .quote-card {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-arrow {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding-bottom: 220px;
  }

  .final-cta-actions {
    flex-wrap: wrap;
  }

  .final-cta-car {
    max-width: 75%;
    width: 380px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 70px;
  }

  .logo img,
  .site-logo {
    max-width: 120px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 54px 0 42px;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.9) 38%,
        rgba(255, 255, 255, 0.62) 66%,
        rgba(255, 255, 255, 0.86) 100%
      ),
      url("../assets/hero_image_mobile.webp") center top / cover no-repeat;
  }

  .hero-grid {
    min-height: 620px;
    display: flex;
    align-items: flex-start;
    padding-top: 8px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-items {
    justify-content: center;
  }

  .trust-mini-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .trust-bar-section {
    margin-top: -110px;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-visual::before {
    display: none !important;
  }

  .hero-car {
    display: none !important;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card:last-child {
    max-width: 100%;
  }

  .before-after-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    gap: 16px;
  }

  .before-after-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    min-width: 84%;
    scroll-snap-align: start;
  }

  .final-cta {
    padding: 32px 24px 180px;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-call {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .trust-bar-section {
    margin-top: -128px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-trust-items {
    gap: 20px;
  }

  .price {
    font-size: 36px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .btn {
    grid-column: 1;
  }
}

/* Hostinger override: keep hero image as a full-section background. */
.site-header .logo img,
.site-header .site-logo {
  width: 132px !important;
  max-width: 132px !important;
  height: auto !important;
}

.hero {
  position: relative !important;
  min-height: 0 !important;
  padding: 68px 0 58px !important;
  background: #f3f8ff !important;
  overflow: hidden !important;
}

.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url("../assets/hero_image.webp") !important;
  background-size: auto 100% !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 24%,
    rgba(255, 255, 255, 0.62) 42%,
    rgba(255, 255, 255, 0.16) 68%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
}

.hero .container,
.hero-grid,
.hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.hero-grid {
  min-height: 560px !important;
  display: flex !important;
  align-items: center !important;
}

.hero-content {
  width: min(52%, 590px) !important;
}


/* =========================================================
   ADD-ONS PATCH — SAFE VERSION
   Popular Add-ons + Quote Form Add-ons
   Scoped to #addons and #quote-form to avoid affecting the rest of the site.
   ========================================================= */

/* 1. LANDING SECTION: POPULAR ADD-ONS */

#addons.addons-section {
  padding: 72px 0;
  background: #ffffff;
}

#addons .section-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

#addons .section-heading .eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--color-red, #E2001A);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#addons .section-heading h2 {
  margin: 0 0 10px;
  color: var(--color-navy, #061B4E);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

#addons .section-heading p {
  margin: 0 auto;
  max-width: 800px;
  color: var(--color-text, #263653);
  font-size: 18px;
  line-height: 1.55;
}

#addons .addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

#addons .addon-card {
  padding: 28px;
  border: 1px solid var(--color-border, #d7e1f1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(6, 27, 78, 0.07);
}

#addons .addon-card--featured {
  border-color: rgba(226, 0, 26, 0.3);
  box-shadow: 0 22px 55px rgba(226, 0, 26, 0.08);
}

#addons .addon-card h3 {
  margin: 0 0 8px;
  color: var(--color-navy, #061B4E);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

#addons .addon-card p {
  margin: 0 0 22px;
  color: var(--color-muted, #5f6f89);
  font-size: 15px;
  line-height: 1.55;
}

#addons .addon-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#addons .addon-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(6, 27, 78, 0.2);
  color: var(--color-navy, #061B4E);
  font-size: 15px;
  line-height: 1.35;
}

#addons .addon-list li:first-child {
  padding-top: 0;
}

#addons .addon-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#addons .addon-list span {
  min-width: 0;
}

#addons .addon-list strong {
  color: var(--color-red, #E2001A);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

#addons .addons-cta {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--color-border, #d7e1f1);
  border-radius: 24px;
  background: linear-gradient(90deg, #f7faff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

#addons .addons-cta p {
  margin: 0;
  color: var(--color-navy, #061B4E);
  font-weight: 800;
}

/* 2. QUOTE FORM: ADD-ONS BLOCK */

#quote-form .quote-card {
  overflow: hidden;
}

#quote-form .quote-form {
  min-width: 0;
}

#quote-form .quote-form .form-group {
  min-width: 0;
}

#quote-form .quote-form .form-group input,
#quote-form .quote-form .form-group select {
  width: 100%;
}

#quote-form .quote-addons {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid #d7e1f1;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(6, 27, 78, 0.06);
  overflow: hidden;
  box-sizing: border-box;
}

#quote-form .quote-addons__header {
  margin-bottom: 18px;
}

#quote-form .quote-addons__header .eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--color-blue, #063b92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#quote-form .quote-addons__header h3 {
  margin: 0 0 8px;
  color: var(--color-navy, #061B4E);
  font-size: 23px;
  line-height: 1.15;
}

#quote-form .quote-addons__header p {
  max-width: 520px;
  margin: 0;
  color: #42526e;
  font-size: 14px;
  line-height: 1.55;
}

/* 3. ADD-ON GROUPS INSIDE FORM */

#quote-form .addon-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

#quote-form .addon-form-group {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(6, 27, 78, 0.12);
  border-radius: 18px;
  background: #f8fbff;
  box-sizing: border-box;
}

#quote-form .addon-form-group legend {
  padding: 0 8px;
  color: var(--color-navy, #061B4E);
  font-size: 14px;
  font-weight: 900;
}

#quote-form .addon-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 27, 78, 0.09);
  cursor: pointer;
  box-sizing: border-box;
}

#quote-form .addon-option:last-child {
  border-bottom: 0;
}

#quote-form .addon-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  accent-color: var(--color-red, #e2001a);
}

#quote-form .addon-option span {
  display: block;
  min-width: 0;
}

#quote-form .addon-option strong {
  display: block;
  color: var(--color-navy, #061B4E);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

#quote-form .addon-option small {
  display: block;
  margin-top: 4px;
  color: var(--color-muted, #5f6f89);
  font-size: 12px;
  line-height: 1.35;
}

#quote-form .addon-option em {
  display: block;
  color: var(--color-red, #e2001a);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

/* 4. WINDOW TINT TOGGLE */

#quote-form .tint-toggle {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 0, 26, 0.18);
  border-radius: 18px;
  background: #fff8f9;
}

#quote-form .switch-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

#quote-form .switch-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-red, #e2001a);
}

#quote-form .switch-row strong {
  display: block;
  color: var(--color-navy, #061B4E);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

#quote-form .switch-row small {
  display: block;
  margin-top: 4px;
  color: var(--color-muted, #5f6f89);
  font-size: 12px;
  line-height: 1.4;
}

#quote-form .tint-options {
  margin-top: 16px;
}

/* 5. ESTIMATED TOTAL BOX */

#quote-form .quote-estimate-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--color-navy, #061B4E);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

#quote-form .quote-estimate-box span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}

#quote-form .quote-estimate-box strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

#quote-form .quote-estimate-box small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.4;
}

#quote-form .quote-form button[type="submit"] {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
}

/* 6. RESPONSIVE */

@media (max-width: 980px) {
  #addons .addons-grid {
    grid-template-columns: 1fr;
  }

  #addons .addon-card {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  #addons.addons-section {
    padding: 54px 0;
  }

  #addons .section-heading h2 {
    font-size: 32px;
  }

  #addons .section-heading p {
    font-size: 16px;
  }

  #addons .addon-list li {
    font-size: 14px;
  }

  #addons .addons-cta {
    flex-direction: column;
  }

  #addons .addons-cta .btn {
    width: 100%;
  }

  #quote-form .quote-addons {
    padding: 16px;
    border-radius: 18px;
  }

  #quote-form .addon-form-group {
    padding: 14px;
  }

  #quote-form .addon-option {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
  }

  #quote-form .addon-option em {
    grid-column: 2;
    margin-top: -2px;
  }
}

.hero-visual,
.hero-visual::before,
.hero-car {
  display: none !important;
  visibility: hidden !important;
}

@media (max-width: 768px) {
  .site-header .logo img,
  .site-header .site-logo {
    width: 120px !important;
    max-width: 120px !important;
  }

  .hero {
    padding: 54px 0 42px !important;
  }

  .hero::before {
    background-image: url("../assets/hero_image_mobile.webp") !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.9) 38%,
      rgba(255, 255, 255, 0.62) 66%,
      rgba(255, 255, 255, 0.86) 100%
    ) !important;
  }

  .hero-grid {
    min-height: 620px !important;
    align-items: flex-start !important;
    padding-top: 8px !important;
  }

  .hero-content {
    width: 100% !important;
  }
}

/* 2026 landing updates */
.btn:hover,
.btn:focus-visible,
.social-links a:hover,
.mobile-phone-btn:hover,
.mobile-phone-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(6, 27, 78, 0.16);
}

.btn:focus-visible,
.mobile-menu-btn:focus-visible,
.mobile-phone-btn:focus-visible {
  outline: 3px solid rgba(217, 0, 22, 0.28);
  outline-offset: 3px;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  padding: 5px;
}

.header-actions,
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  min-height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

.btn-phone {
  padding: 12px 18px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1.5px solid var(--color-blue);
}

.btn-phone img,
.mobile-phone-btn img {
  filter: none;
}

.header-actions .btn-phone,
.header-actions .header-cta {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

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

.mobile-phone-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--color-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.mobile-phone-btn img {
  width: 20px;
  height: 20px;
}

.hero h1,
#addons .section-heading h2 {
  letter-spacing: 0 !important;
}

@keyframes popularFloat {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -5px);
  }
}

.package-card-featured .package-badge {
  animation: popularFloat 2.8s ease-in-out infinite;
  box-shadow: 0 10px 22px rgba(217, 0, 22, 0.22);
}

.package-card .package-icon {
  min-height: 50px;
}

.package-card h3 {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.package-prices {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.35fr;
  align-items: stretch;
  gap: 8px;
  margin: 12px 0 18px;
  min-height: 78px;
  padding: 14px;
  border-radius: 14px;
  background: var(--color-blue-light);
}

.package-prices div {
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: center;
}

.package-prices span {
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 650;
  text-transform: uppercase;
}

.package-prices strong {
  color: var(--color-red);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.package-prices i {
  color: rgba(6, 27, 78, 0.22);
  font-style: normal;
  align-self: center;
}

#addons .addons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.ba-images-single {
  display: block;
  height: 310px;
}

.ba-images-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#gallery.before-after-grid {
  grid-template-columns: repeat(2, 1fr);
}

.quote-icon img {
  filter: brightness(0) invert(1);
}

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

#quote-form .form-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#quote-form .form-step[hidden] {
  display: none;
}

#quote-form .form-step-heading,
#quote-form .quote-addons,
#quote-form .form-next,
#quote-form .form-step-actions,
#quote-form .form-group-full {
  grid-column: 1 / -1;
}

#quote-form textarea {
  width: 100%;
  min-height: 104px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
}

#quote-form textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(11, 63, 145, 0.1);
}

#quote-form .form-step-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 2px;
}

#quote-form .form-step-heading span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

#quote-form .form-step-heading strong {
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.15;
}

#quote-form .form-step-heading p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

#quote-form .addon-dropdown {
  border: 1px solid rgba(6, 27, 78, 0.12);
  border-radius: 16px;
  background: #f8fbff;
  overflow: hidden;
}

#quote-form .addon-dropdown summary {
  cursor: pointer;
  padding: 16px;
  color: var(--color-navy);
  font-weight: 900;
  list-style: none;
}

#quote-form .addon-dropdown summary::-webkit-details-marker {
  display: none;
}

#quote-form .addon-dropdown summary::after {
  content: "+";
  float: right;
  color: var(--color-red);
  font-size: 20px;
  line-height: 1;
}

#quote-form .addon-dropdown[open] summary::after {
  content: "-";
}

#quote-form .addon-dropdown .addon-form-group {
  border: 0;
  border-top: 1px solid rgba(6, 27, 78, 0.1);
  border-radius: 0;
  background: transparent;
}

#quote-form .form-step-actions {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 12px;
}

#quote-form .form-step-actions .btn {
  width: 100%;
}

.footer-column a img,
.footer-column p img,
.social-links a img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

@media (max-width: 768px) {
  .header-actions {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
  }

  .header-inner {
    gap: 12px;
  }

  .main-nav {
    align-items: stretch;
    text-align: center;
  }

  .hero-trust-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-mini-item {
    min-height: 92px;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
  }

  .package-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .package-prices i {
    display: none;
  }

  .package-prices strong {
    font-size: 18px;
  }

  #gallery.before-after-grid {
    display: flex;
  }

  #addons .addons-grid {
    grid-template-columns: 1fr;
  }

  .ba-images-single {
    height: 240px;
  }

  .quote-form-section .container {
    padding: 0 10px;
  }

  .quote-card {
    padding: 22px 14px;
    gap: 24px;
  }

  .quote-intro {
    align-items: center;
    gap: 14px;
  }

  .quote-icon {
    width: 72px;
    height: 72px;
  }

  #quote-form .form-step {
    grid-template-columns: 1fr;
  }

  #quote-form .form-step-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-brand,
  .footer-column,
  .footer-contact {
    text-align: center;
    justify-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links,
  .footer-column a,
  .footer-column p,
  .footer-bottom div {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero-trust-items {
    gap: 8px;
  }

  .trust-mini-item strong,
  .trust-mini-item div {
    font-size: 11px;
  }

  .package-prices span {
    font-size: 10px;
  }

  .package-prices strong {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .final-cta {
    padding: 36px 260px 36px 32px !important;
  }

  .final-cta-car {
    width: 260px !important;
    max-width: 36% !important;
    height: 100% !important;
  }
}

@media (max-width: 768px) {
  .final-cta {
    min-height: auto !important;
    padding: 30px 22px 170px !important;
    grid-template-columns: 1fr !important;
  }

  .final-cta-car {
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
    height: 150px !important;
    max-width: 100% !important;
    object-position: center bottom !important;
    opacity: 0.38 !important;
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%) !important;
  }
}

/* Package cards: service dropdown layout */
.package-card {
  padding: 38px 32px;
  border-radius: var(--border-radius);
}

.package-card h3 {
  min-height: 0;
  margin-bottom: 14px;
  text-transform: none;
}

.package-time {
  min-height: 54px;
  max-width: 260px;
  margin: 0 auto 4px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.package-prices {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.35fr;
  align-items: stretch;
  gap: 8px;
  margin: 12px 0 18px;
  min-height: 78px;
  padding: 14px;
  border-radius: 14px;
  background: var(--color-blue-light);
  text-align: center;
}

.package-prices div {
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: center;
}

.package-prices strong {
  color: var(--color-red);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.package-prices span {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.package-prices i {
  color: rgba(6, 27, 78, 0.22);
  font-style: normal;
  align-self: center;
}

.package-services {
  display: grid;
  gap: 10px;
  width: min(100%, 300px);
  max-width: 100%;
  margin: 18px auto 16px;
  text-align: left;
}

.package-service-group {
  overflow: hidden;
  border: 1px solid rgba(6, 27, 78, 0.12);
  border-radius: 12px;
  background: #f5f7fb;
  box-shadow: 0 8px 18px rgba(6, 27, 78, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.package-service-group:hover {
  border-color: rgba(6, 27, 78, 0.2);
  box-shadow: 0 10px 22px rgba(6, 27, 78, 0.07);
  transform: translateY(-1px);
}

.package-service-group summary {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  gap: 12px;
  padding: 13px 14px;
  cursor: pointer;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  list-style: none;
  background: #f1f4f8;
  user-select: none;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.package-service-group summary::-webkit-details-marker {
  display: none;
}

.package-service-group summary::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  opacity: 0.72;
  filter: drop-shadow(0 2px 4px rgba(6, 27, 78, 0.1));
  transition: transform 0.24s ease, opacity 0.24s ease;
  animation: packageArrowFloat 2.4s ease-in-out infinite;
}

.package-service-group[open] {
  border-color: rgba(6, 27, 78, 0.2);
  background: #f8fafc;
  box-shadow: 0 12px 24px rgba(6, 27, 78, 0.07);
}

.package-service-group[open] summary::after {
  transform: rotate(90deg);
  opacity: 0.9;
  animation: none;
}

.package-service-group summary:active {
  background: #e9eef6;
}

.package-service-list {
  margin: 0 !important;
  padding: 12px 16px 14px !important;
  display: grid;
  gap: 9px;
  flex: initial !important;
  border-top: 1px solid rgba(6, 27, 78, 0.1);
  background: var(--color-white);
  animation: packageDropdownIn 0.22s ease-out;
}

.package-service-list li {
  position: relative;
  display: block;
  margin: 0;
  padding-left: 15px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.package-service-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-red);
  font-weight: 900;
}

@keyframes packageArrowFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(2px);
    opacity: 0.9;
  }
}

@keyframes packageDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-service-group summary::after,
  .package-service-list {
    animation: none;
  }
}

.package-book-btn {
  width: auto;
  min-width: 144px;
  margin-top: auto;
  text-transform: none;
}

@media (max-width: 1024px) {
  .package-card {
    padding: 24px 18px;
  }

  .packages-grid .package-card,
  .packages-grid .package-card:last-child {
    width: 100%;
    max-width: none;
  }

  .package-prices {
    grid-template-columns: repeat(2, minmax(112px, 1fr)) !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 16px 14px !important;
  }

  .package-prices div {
    min-height: 54px;
    padding: 7px 8px;
    align-content: center;
    justify-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.52);
  }

  .package-prices span {
    max-width: 110px;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

  .package-prices strong {
    font-size: 21px;
    line-height: 1.05;
  }

  .package-prices i {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .package-prices {
    gap: 10px;
    padding: 14px 10px;
  }

  .package-prices strong {
    font-size: 19px;
  }
}
