@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Figtree:wght@400;500;600;700&display=swap");
:root {
  --brand-red: #C41E24;
  --brand-red-dark: #A01920;
  --brand-red-light: #E8363D;
  --brand-yellow: #F5C518;
  --brand-dark: #1A1A2E;
  --brand-cream: #F9F7F4;
  --brand-warm: #F0EBE3;
  --black: #0F0F0F;
  --white: #FFFFFF;
  --gray-100: #F5F2EE;
  --gray-200: #E8E4DE;
  --gray-300: #D1CCC4;
  --gray-400: #A8A3A0;
  --gray-500: #6B6B73;
  --gray-600: #4A4A54;
  --gray-700: #2C2C36;
  --company-background-color: var(--brand-red);
  --company-text-color: var(--white);
  --text-primary: var(--brand-dark);
  --text-secondary: var(--gray-500);
  --card-bg: var(--white);
  --border-color: rgba(26, 26, 46, 0.08);
  --background-body: var(--brand-cream);
  --responsive-padding: 24px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 50px;
}
@media (min-width: 1280px) {
  :root {
    --responsive-padding: 0px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroPulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
.autoComplete_wrapper {
  width: 100%;
}
.autoComplete_wrapper input:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}
.autoComplete_wrapper ul {
  z-index: 9999;
}

.search-input-wrapper-overlay .autoComplete_wrapper ul {
  max-width: 600px;
}

.search-input-wrapper-overlay input:focus {
  box-shadow: none;
  outline: none;
}

.search-form {
  color: var(--text-primary);
  position: relative;
}

.home-container {
  --lg-width: 1280px;
  --base-padding: 24px;
  --banner-height: 520px;
  --banner-title-font-size: 2.6rem;
  --banner-subtitle-font-size: 1.15rem;
  --banner-horizontal-padding: 40px;
  --service-list-direction: column;
  --faq-direction: column;
  --font-size-medium: 1.6rem;
  --line-height-medium: 2.2rem;
  --font-size-large: 2.2rem;
  --line-height-large: 2.6rem;
  --font-size-xlarge: 2.6rem;
  --line-height-xlarge: 3rem;
  --light-grey-border-color: var(--gray-200);
  --section-spacing: 96px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: transparent;
}
@media (min-width: 768px) {
  .home-container {
    --banner-horizontal-padding: 20px;
    --banner-height: 640px;
    --banner-title-font-size: 4.2rem;
    --banner-subtitle-font-size: 1.6rem;
    --font-size-medium: 2rem;
    --line-height-medium: 2.4rem;
    --font-size-large: 2.5rem;
    --line-height-large: 2.8rem;
    --font-size-xlarge: 3.5rem;
    --line-height-xlarge: 3.8rem;
  }
}
@media (min-width: 1024px) {
  .home-container {
    --service-list-direction: row;
  }
}
@media (min-width: 1280px) {
  .home-container {
    --faq-direction: row;
    --banner-horizontal-padding: 0px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  margin: 0;
  background-color: var(--brand-cream);
  color: var(--text-primary);
}
body * {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  height: auto;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-wrap: balance;
  color: var(--brand-dark);
}

h3,
h4,
h5,
h6 {
  font-family: "Figtree", sans-serif;
  color: var(--brand-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--brand-yellow) !important;
  color: var(--brand-dark) !important;
  border-radius: var(--radius-md);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border: none;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: var(--brand-red) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(196, 30, 36, 0.3);
  transform: translateY(-2px);
}
.btn-primary.no-border {
  border: 0;
}
.btn-primary.inverted {
  background-color: var(--white) !important;
  color: var(--brand-red) !important;
  border: 2px solid var(--brand-red);
}
.btn-primary.inverted:hover {
  background-color: var(--brand-red) !important;
  color: var(--white) !important;
}
.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  border-radius: var(--radius-md);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background-color: var(--brand-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.dark-section .btn-secondary, .footer-container .btn-secondary, .ct-hero .btn-secondary, .ct-cta .btn-secondary, .contact-hero .btn-secondary, .contact-cta .btn-secondary, .faq-full-width-wrapper .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.dark-section .btn-secondary:hover, .footer-container .btn-secondary:hover, .ct-hero .btn-secondary:hover, .ct-cta .btn-secondary:hover, .contact-hero .btn-secondary:hover, .contact-cta .btn-secondary:hover, .faq-full-width-wrapper .btn-secondary:hover {
  background-color: var(--white);
  color: var(--brand-dark);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-phone svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.btn-phone:hover {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
}
.btn-phone:hover svg {
  fill: var(--brand-dark);
}

.header-nav {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.header-nav.index-page, .header-nav.contact-page {
  position: fixed;
  left: 0;
  right: 0;
}

.header-top-banner {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  display: none;
  overflow: hidden;
  max-height: 40px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 815px) {
  .header-top-banner {
    display: block;
  }
}
.header-top-banner.scrolled {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.header-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px var(--responsive-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  white-space: nowrap;
}

.header-top-banner .store-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  line-height: 1;
}

.selected-store {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.language-selector-link {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.language-selector-link .language-icon {
  line-height: 1rem;
  display: flex;
  align-items: center;
}

.header-top-banner .banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.header-top-banner .banner-actions .phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s;
  line-height: 1;
}
.header-top-banner .banner-actions .phone:hover {
  color: var(--brand-yellow);
}
.header-top-banner .banner-actions .phone svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.header-main-nav {
  position: relative;
  background: var(--brand-cream);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.header-main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
}

.header-nav.index-page .header-main-nav,
.header-nav.contact-page .header-main-nav {
  background: transparent;
  border-bottom-color: transparent;
}
.header-nav.index-page .header-main-nav .nav-link,
.header-nav.index-page .header-main-nav .category-toggle-btn,
.header-nav.contact-page .header-main-nav .nav-link,
.header-nav.contact-page .header-main-nav .category-toggle-btn {
  color: var(--white);
}
.header-nav.index-page .header-main-nav .drawer-button,
.header-nav.contact-page .header-main-nav .drawer-button {
  color: var(--white);
}
.header-nav.index-page .header-main-nav .search-icon-button,
.header-nav.contact-page .header-main-nav .search-icon-button {
  color: var(--white);
}
.header-nav.index-page .header-main-nav .search-icon-button svg,
.header-nav.contact-page .header-main-nav .search-icon-button svg {
  fill: var(--white);
}
.header-nav.index-page .header-main-nav .header-nav-1-right a,
.header-nav.index-page .header-main-nav .header-nav-1-right #avatarButton,
.header-nav.index-page .header-main-nav .header-nav-1-right button:not(.drawer-button),
.header-nav.contact-page .header-main-nav .header-nav-1-right a,
.header-nav.contact-page .header-main-nav .header-nav-1-right #avatarButton,
.header-nav.contact-page .header-main-nav .header-nav-1-right button:not(.drawer-button) {
  color: var(--white) !important;
}
.header-nav.index-page .header-main-nav .header-nav-1-right a svg,
.header-nav.index-page .header-main-nav .header-nav-1-right #avatarButton svg,
.header-nav.index-page .header-main-nav .header-nav-1-right button:not(.drawer-button) svg,
.header-nav.contact-page .header-main-nav .header-nav-1-right a svg,
.header-nav.contact-page .header-main-nav .header-nav-1-right #avatarButton svg,
.header-nav.contact-page .header-main-nav .header-nav-1-right button:not(.drawer-button) svg {
  fill: var(--white) !important;
}
.header-nav.index-page .header-main-nav.scrolled,
.header-nav.contact-page .header-main-nav.scrolled {
  background: rgba(249, 247, 244, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
}
.header-nav.index-page .header-main-nav.scrolled .drawer-button,
.header-nav.contact-page .header-main-nav.scrolled .drawer-button {
  color: var(--brand-dark);
}
.header-nav.index-page .header-main-nav.scrolled .nav-link,
.header-nav.index-page .header-main-nav.scrolled .category-toggle-btn,
.header-nav.contact-page .header-main-nav.scrolled .nav-link,
.header-nav.contact-page .header-main-nav.scrolled .category-toggle-btn {
  color: var(--brand-dark);
}
.header-nav.index-page .header-main-nav.scrolled .search-icon-button,
.header-nav.contact-page .header-main-nav.scrolled .search-icon-button {
  color: var(--brand-dark);
}
.header-nav.index-page .header-main-nav.scrolled .search-icon-button svg,
.header-nav.contact-page .header-main-nav.scrolled .search-icon-button svg {
  fill: var(--brand-dark);
}
.header-nav.index-page .header-main-nav.scrolled .header-nav-1-right a,
.header-nav.index-page .header-main-nav.scrolled .header-nav-1-right #avatarButton,
.header-nav.index-page .header-main-nav.scrolled .header-nav-1-right button:not(.drawer-button),
.header-nav.contact-page .header-main-nav.scrolled .header-nav-1-right a,
.header-nav.contact-page .header-main-nav.scrolled .header-nav-1-right #avatarButton,
.header-nav.contact-page .header-main-nav.scrolled .header-nav-1-right button:not(.drawer-button) {
  color: var(--brand-dark) !important;
}
.header-nav.index-page .header-main-nav.scrolled .header-nav-1-right a svg,
.header-nav.index-page .header-main-nav.scrolled .header-nav-1-right #avatarButton svg,
.header-nav.index-page .header-main-nav.scrolled .header-nav-1-right button:not(.drawer-button) svg,
.header-nav.contact-page .header-main-nav.scrolled .header-nav-1-right a svg,
.header-nav.contact-page .header-main-nav.scrolled .header-nav-1-right #avatarButton svg,
.header-nav.contact-page .header-main-nav.scrolled .header-nav-1-right button:not(.drawer-button) svg {
  fill: var(--brand-dark) !important;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--responsive-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 1024px) {
  .header-inner {
    height: 96px;
  }
}

.header-nav-1 {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.drawer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--brand-dark);
}
.drawer-button svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 815px) {
  .drawer-button {
    display: none;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 88px;
  width: auto;
}
@media (min-width: 768px) {
  .logo img {
    height: 108px;
  }
}

.company-header-logo {
  height: 88px;
  width: auto;
}
@media (min-width: 768px) {
  .company-header-logo {
    height: 108px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 815px) {
  .nav-links {
    display: flex;
  }
}

.category-dropdown-wrapper {
  position: relative;
}

.category-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--brand-dark);
  border-radius: var(--radius-md);
  transition: color 0.3s ease;
}
.category-toggle-btn .category-text {
  white-space: nowrap;
}
.category-toggle-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.category-toggle-btn::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-toggle-btn:hover {
  color: var(--brand-red);
}
.category-toggle-btn:hover::after {
  transform: scaleX(1);
}

.category-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  padding: 8px 0;
  z-index: 100;
}
.category-dropdown-list.show {
  display: block;
}

.category-item {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: background 0.15s, color 0.15s;
}
.category-item:hover {
  background: var(--gray-100);
  color: var(--brand-red);
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--brand-dark);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover {
  color: var(--brand-red);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-nav-1-right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header-nav-1-right a, .header-nav-1-right button, .header-nav-1-right #avatarButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-md);
  color: var(--brand-dark) !important;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.header-nav-1-right a svg, .header-nav-1-right button svg, .header-nav-1-right #avatarButton svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.header-nav-1-right a:hover, .header-nav-1-right button:hover, .header-nav-1-right #avatarButton:hover {
  color: var(--brand-red) !important;
  background: rgba(196, 30, 36, 0.06);
}
.header-nav-1-right a:hover svg, .header-nav-1-right button:hover svg, .header-nav-1-right #avatarButton:hover svg {
  transform: scale(1.1);
  fill: var(--brand-red) !important;
}
.header-nav-1-right .log-in-text {
  display: none;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .header-nav-1-right .log-in-text {
    display: inline;
    margin-left: 4px;
  }
}

.search-icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-dark);
  border-radius: var(--radius-md);
  transition: color 0.3s ease, background 0.3s ease;
}
.search-icon-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.search-icon-button:hover {
  color: var(--brand-red);
  background: rgba(196, 30, 36, 0.06);
}
.search-icon-button:hover svg {
  transform: scale(1.1);
  fill: var(--brand-red);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}
.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  width: 90%;
  max-width: 640px;
}

.search-form-overlay {
  position: relative;
}

.search-pill-overlay {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.search-input-wrapper-overlay {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}
.search-input-wrapper-overlay .search-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
}
.search-input-wrapper-overlay input {
  width: 100%;
  border: none;
  outline: none;
  font-family: "Figtree", sans-serif;
  font-size: 1.1rem;
  padding: 12px 0;
  background: transparent;
  color: var(--brand-dark);
}
.search-input-wrapper-overlay input::placeholder {
  color: var(--gray-400);
}

.search-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  transition: background 0.2s;
}
.search-close-btn svg {
  width: 18px;
  height: 18px;
}
.search-close-btn:hover {
  background: var(--gray-200);
}

#drawer-menu,
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
#drawer-menu.is-open,
.drawer-menu.is-open {
  transform: translateX(0);
}
#drawer-menu .close-drawer,
.drawer-menu .close-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  color: var(--brand-dark);
  align-self: flex-end;
  margin-bottom: 24px;
}
#drawer-menu .close-drawer svg,
.drawer-menu .close-drawer svg {
  width: 20px;
  height: 20px;
}
#drawer-menu .close-drawer:hover,
.drawer-menu .close-drawer:hover {
  background: var(--gray-200);
}
#drawer-menu .logo,
.drawer-menu .logo {
  margin-bottom: 32px;
}
#drawer-menu .logo img,
.drawer-menu .logo img {
  height: 32px;
}
#drawer-menu .pages,
.drawer-menu .pages {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
#drawer-menu .pages ul,
.drawer-menu .pages ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#drawer-menu .pages ul li,
.drawer-menu .pages ul li {
  display: block;
}
#drawer-menu .pages a,
.drawer-menu .pages a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-dark);
  text-decoration: none;
  transition: background 0.15s;
}
#drawer-menu .pages a:hover,
.drawer-menu .pages a:hover {
  background: var(--gray-100);
}
#drawer-menu .drawer-menu-bottom,
.drawer-menu .drawer-menu-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#drawer-menu .store-phone,
.drawer-menu .store-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-red);
  font-size: 1.1rem;
}
#drawer-menu .store-phone svg,
.drawer-menu .store-phone svg {
  width: 20px;
  height: 20px;
}

#userDropdown {
  background-color: var(--white) !important;
  color: var(--brand-dark) !important;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  border-radius: var(--radius-lg);
}
#userDropdown a, #userDropdown span, #userDropdown div {
  color: var(--brand-dark) !important;
}
#userDropdown svg {
  fill: var(--brand-dark) !important;
  color: var(--brand-dark) !important;
}
#userDropdown a {
  font-weight: 500;
  transition: background-color 0.2s ease;
}
#userDropdown a:hover {
  background-color: var(--gray-100) !important;
}

#avatarButton {
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--brand-dark);
  transition: color 0.3s ease;
}
#avatarButton svg {
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px - 52px);
  min-height: calc(100svh - 80px - 52px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh - 96px - 38px - 60px);
    min-height: calc(100svh - 96px - 38px - 60px);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.82) 0%, rgba(196, 30, 36, 0.45) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px var(--responsive-padding) 80px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-container {
    padding: 140px var(--responsive-padding) 100px;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: heroPulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: var(--banner-title-font-size);
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--banner-subtitle-font-size);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
  }
}
.hero-cta .hero-btn-primary {
  background-color: var(--brand-yellow) !important;
  color: var(--brand-dark) !important;
  font-weight: 700;
  padding: 16px 32px;
  font-size: 1rem;
}
.hero-cta .hero-btn-primary:hover {
  background-color: var(--brand-red) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(196, 30, 36, 0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item svg {
  flex-shrink: 0;
  opacity: 0.7;
  fill: rgba(255, 255, 255, 0.7);
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee {
  background: var(--brand-cream);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  border-top: 3px solid var(--brand-red);
  border-bottom: 3px solid var(--brand-red);
}
@media (min-width: 768px) {
  .marquee {
    padding: 20px 0;
    border-top-width: 4px;
    border-bottom-width: 4px;
  }
}
.marquee .marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 45s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee .marquee-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
  flex-shrink: 0;
  padding: 0 20px;
}
.marquee .marquee-text strong {
  font-weight: 900;
  color: var(--brand-red);
}
@media (min-width: 768px) {
  .marquee .marquee-text {
    font-size: 1.8rem;
    padding: 0 28px;
  }
}
@media (min-width: 1024px) {
  .marquee .marquee-text {
    font-size: 2.1rem;
    padding: 0 36px;
  }
}
.marquee .marquee-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-dark);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .marquee .marquee-dot {
    width: 12px;
    height: 12px;
  }
}

.trust-strip {
  position: relative;
  background: var(--brand-dark);
  padding: 56px 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .trust-strip {
    padding: 80px 0;
  }
}
.trust-strip .trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 var(--responsive-padding);
}
@media (min-width: 640px) {
  .trust-strip .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust-strip .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-strip .trust-item {
  position: relative;
  padding: 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-strip .trust-item:nth-child(1) {
  transition-delay: 0s;
}
.trust-strip .trust-item:nth-child(2) {
  transition-delay: 0.12s;
}
.trust-strip .trust-item:nth-child(3) {
  transition-delay: 0.24s;
}
.trust-strip .trust-item:nth-child(4) {
  transition-delay: 0.36s;
}
.trust-strip .trust-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 640px) {
  .trust-strip .trust-item {
    padding: 40px 28px;
    border-bottom: none;
  }
  .trust-strip .trust-item:nth-child(1), .trust-strip .trust-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .trust-strip .trust-item:nth-child(1), .trust-strip .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
@media (min-width: 1024px) {
  .trust-strip .trust-item {
    padding: 0 36px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .trust-strip .trust-item:last-child {
    border-right: none;
  }
  .trust-strip .trust-item:nth-child(1), .trust-strip .trust-item:nth-child(2) {
    border-bottom: none;
  }
}
.trust-strip .trust-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-strip .trust-item:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}
.trust-strip .trust-item:hover .trust-number {
  color: var(--brand-yellow);
  transform: translateX(4px);
}
.trust-strip .trust-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-red);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  transition: color 0.4s ease, transform 0.4s ease;
}
@media (min-width: 1024px) {
  .trust-strip .trust-number {
    font-size: 3.5rem;
    margin-bottom: 18px;
  }
}
.trust-strip .trust-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .trust-strip .trust-title {
    font-size: 1.1rem;
  }
}
.trust-strip .trust-desc {
  margin: 8px 0 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.categories-section {
  background: var(--brand-dark);
  padding: 72px 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .categories-section {
    padding: 96px 0;
  }
}
.categories-section.is-visible .category-card {
  opacity: 1;
  transform: translateY(0);
}

.categories-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--responsive-padding);
}

.categories-header {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .categories-header {
    margin-bottom: 40px;
  }
}

.categories-eyebrow {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .categories-eyebrow {
    font-size: 2.2rem;
  }
}

.categories-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin: 0;
  max-width: 480px;
}

.categories-search {
  max-width: 520px;
  margin-bottom: 40px;
}

.search-form-categories {
  position: relative;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 4px 4px 4px 16px;
  transition: border-color 0.3s, background 0.3s;
}
.search-pill:focus-within {
  border-color: var(--brand-red);
  background: rgba(255, 255, 255, 0.12);
}
.search-pill .search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Figtree", sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
  background: transparent;
  color: var(--white);
}
.search-pill .search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.search-pill .search-icon {
  fill: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.search-pill .btn-primary {
  padding: 10px 20px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.categories-scroll-area {
  position: relative;
}

.categories-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 0;
  cursor: grab;
  scroll-snap-type: x mandatory;
}
.categories-track::-webkit-scrollbar {
  display: none;
}
.categories-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.categories-track.is-dragging .category-card {
  pointer-events: none;
}

.category-card {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(24px) scale(1);
  scroll-snap-align: start;
  transition: opacity 0.5s ease calc(var(--i, 0) * 60ms), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 60ms), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 640px) {
  .category-card {
    flex: 0 0 calc(33.333% - 11px);
  }
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  z-index: 5;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(196, 30, 36, 0.2);
  z-index: 2;
}
.category-card:hover::before {
  height: 5px;
}
.category-card:hover .category-card-image {
  background: var(--brand-cream);
}
.category-card:hover .category-card-image img {
  transform: scale(1.12);
}
.category-card:hover .category-card-image::after {
  opacity: 1;
}
.category-card:hover .category-card-content {
  background: var(--brand-dark);
  border-top-color: var(--brand-dark);
}
.category-card:hover .category-card-name {
  color: var(--white);
}
.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .category-card {
    flex: 0 0 calc(25% - 12px);
  }
}
@media (min-width: 1024px) {
  .category-card {
    flex: 0 0 calc(20% - 13px);
  }
}

.category-card-image {
  height: 180px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  transition: background 0.4s ease;
}
.category-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(196, 30, 36, 0.06) 0%, rgba(245, 197, 24, 0.04) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.category-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .category-card-image {
    height: 200px;
  }
}

.category-card-content {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--gray-200);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.category-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-dark);
  line-height: 1.25;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .category-card-name {
    font-size: 0.95rem;
  }
}

.category-card-arrow {
  color: var(--brand-yellow);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  display: flex;
}

.categories-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  max-width: 320px;
}

.categories-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.categories-nav-btn svg {
  width: 18px;
  height: 18px;
}
.categories-nav-btn:hover {
  border-color: var(--brand-red);
  background: rgba(196, 30, 36, 0.15);
  color: var(--brand-red);
}

.categories-progress {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.categories-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--brand-red);
  border-radius: 2px;
  transition: width 0.15s ease-out;
}

.popular-equipment-section {
  background: var(--brand-cream);
  padding: 72px 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .popular-equipment-section {
    padding: 96px 0;
  }
}
.popular-equipment-section.is-visible .equipment {
  opacity: 1;
  transform: translateY(0);
}

.popular-equipment-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--responsive-padding);
}

.popular-equipment-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .popular-equipment-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.popular-equipment-header {
  flex: 1;
}

.popular-equipment-eyebrow {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .popular-equipment-eyebrow {
    font-size: 2.2rem;
  }
}

.popular-equipment-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  max-width: 420px;
}

.popular-equipment-browse {
  flex-shrink: 0;
  align-self: flex-start;
}

.equipment-scroll-area {
  position: relative;
}

.equipment-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 0;
  cursor: grab;
  scroll-snap-type: x mandatory;
}
.equipment-track::-webkit-scrollbar {
  display: none;
}
.equipment-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.equipment-track.is-dragging .equipment {
  pointer-events: none;
}

.equipment-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  max-width: 320px;
}

.equipment-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.equipment-nav-btn svg {
  width: 18px;
  height: 18px;
}
.equipment-nav-btn:hover {
  border-color: var(--brand-red);
  background: rgba(196, 30, 36, 0.08);
  color: var(--brand-red);
}

.equipment-progress {
  flex: 1;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  overflow: hidden;
}

.equipment-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--brand-red);
  border-radius: 2px;
  transition: width 0.15s ease-out;
}

.equipment {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  scroll-snap-align: start;
  transition: opacity 0.5s ease calc(var(--i, 0) * 70ms), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 70ms), box-shadow 0.35s ease;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.04), 0 4px 16px rgba(26, 26, 46, 0.04);
}
.equipment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  z-index: 5;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.equipment:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 26, 46, 0.12);
}
.equipment:hover::before {
  height: 5px;
}
.equipment:hover .equipment-image img {
  transform: scale(1.05);
}
.equipment:hover .equipment-cta {
  background: var(--brand-red);
}
@media (min-width: 640px) {
  .equipment {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (min-width: 768px) {
  .equipment {
    flex: 0 0 calc(25% - 15px);
  }
}
@media (min-width: 1024px) {
  .equipment {
    flex: 0 0 calc(20% - 16px);
  }
}

.equipment-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.equipment-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.equipment-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.equipment-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--brand-red);
  color: var(--white);
  z-index: 2;
}
.equipment-tag.discount {
  background: #16A34A;
}

.equipment-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--gray-200);
}
.equipment-info .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}
.equipment-info .manufacturer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.equipment-pricing {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.equipment-pricing .price-item + .price-item {
  padding-left: 16px;
  border-left: 2px solid var(--brand-red);
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
}

.price-period {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.equipment-availability {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.equipment-availability .available {
  color: #16A34A;
  display: flex;
  align-items: center;
  gap: 6px;
}
.equipment-availability .available::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  flex-shrink: 0;
}
.equipment-availability .other-stores {
  color: #D97706;
  display: flex;
  align-items: center;
  gap: 6px;
}
.equipment-availability .other-stores::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D97706;
  flex-shrink: 0;
}
.equipment-availability .not-available {
  color: var(--gray-400);
}

.equipment-cta {
  margin-top: auto;
  padding: 10px 20px;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  transition: background 0.3s ease;
}

.services-section {
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .services-section {
    padding: 96px var(--responsive-padding);
  }
}
.services-section {
  background: var(--brand-warm);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}
.services-header h2 {
  margin-bottom: 8px;
}

.services-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.04), 0 8px 24px rgba(26, 26, 46, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-row.service-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .service-row {
    flex-direction: row;
    align-items: stretch;
  }
  .service-row.reverse {
    flex-direction: row-reverse;
  }
}

.service-image {
  flex: 0 0 auto;
  height: 240px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .service-image {
    flex: 0 0 45%;
    height: auto;
    min-height: 320px;
  }
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .service-content {
    padding: 40px 48px;
  }
}
.service-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--brand-dark);
}
.service-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 24px;
}

.service-cta {
  align-self: flex-start;
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
}

.manufacturers-section {
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .manufacturers-section {
    padding: 96px var(--responsive-padding);
  }
}
.manufacturers-section {
  background: var(--white);
  overflow: hidden;
}

.manufacturers-container {
  max-width: 1280px;
  margin: 0 auto;
}

.manufacturers-header {
  text-align: center;
  margin-bottom: 40px;
}
.manufacturers-header h2 {
  font-weight: 500;
}
.manufacturers-header h2 strong {
  font-weight: 700;
}

.manufacturers-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 96px;
  align-items: center;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
@media (min-width: 768px) {
  .marquee-track {
    gap: 120px;
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
.manufacturer-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.manufacturer-logo img {
  max-height: 68px;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.manufacturer-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media (min-width: 768px) {
  .manufacturer-logo {
    height: 100px;
  }
  .manufacturer-logo img {
    max-height: 92px;
    max-width: 300px;
  }
}
@media (min-width: 1024px) {
  .manufacturer-logo {
    height: 110px;
  }
  .manufacturer-logo img {
    max-height: 100px;
    max-width: 340px;
  }
}

.testimonials-section {
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .testimonials-section {
    padding: 96px var(--responsive-padding);
  }
}
.testimonials-section {
  background: var(--brand-cream);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(196, 30, 36, 0.08);
  color: var(--brand-red);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.testimonials-header .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--brand-dark);
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .testimonials-header .title {
    font-size: 2.4rem;
  }
}
.testimonials-header .subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--brand-red);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.testimonial-card.faded {
  opacity: 0.4;
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-red);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.testimonial-stars img {
  width: 16px;
  height: 16px;
}

.testimonial-content {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand-dark);
  transition: all 0.2s;
}
.testimonials-arrow svg {
  width: 18px;
  height: 18px;
}
.testimonials-arrow:hover {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
}

.testimonials-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.faq-full-width-wrapper {
  background: var(--brand-dark);
  color: var(--white);
}

.frequently-asked-questions-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .frequently-asked-questions-container {
    padding: 96px var(--responsive-padding);
  }
}

.faq-wrapper {
  width: 100%;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1280px) {
  .faq-grid {
    flex-direction: row;
    gap: 64px;
  }
}

@media (min-width: 1280px) {
  .faq-sidebar {
    flex: 0 0 320px;
    order: -1;
  }
}

.faq-sidebar-content {
  position: sticky;
  top: 100px;
}

.faq-contact-info .faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(196, 30, 36, 0.2);
  color: var(--brand-red-light);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.faq-contact-info .faq-contact-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.2;
}
.faq-contact-info .faq-contact-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.faq-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-sidebar-cta .btn-primary {
  background-color: var(--brand-red) !important;
  color: var(--white) !important;
  width: 100%;
  justify-content: center;
}
.faq-sidebar-cta .btn-primary:hover {
  background-color: var(--brand-red-light) !important;
}
.faq-sidebar-cta .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  justify-content: center;
}
.faq-sidebar-cta .btn-secondary:hover {
  background-color: var(--white);
  color: var(--brand-dark);
}

.faq-main-content {
  flex: 1;
  min-width: 0;
}

.faq-header {
  margin-bottom: 32px;
}
.faq-header .faq-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 8px;
}
.faq-header .faq-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.2s;
}
.faq-accordion-item.open {
  background: rgba(255, 255, 255, 0.1);
}
.faq-accordion-item.open .faq-accordion-trigger .accordion-icon {
  transform: rotate(45deg);
}
.faq-accordion-item.open .faq-accordion-content {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  gap: 16px;
}
.faq-accordion-trigger .faq-question-text {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}
.faq-accordion-trigger .accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--brand-red-light);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer-inner {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-answer-inner p {
  margin: 0;
}

.seo-content-section {
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .seo-content-section {
    padding: 96px var(--responsive-padding);
  }
}
.seo-content-section {
  background: var(--brand-cream);
}

.seo-content-container {
  max-width: 1280px;
  margin: 0 auto;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .seo-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

.seo-content-text h2 {
  margin-bottom: 16px;
}

.seo-paragraph {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.seo-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.seo-action-btn svg {
  flex-shrink: 0;
}

.seo-content-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
}
@media (min-width: 1024px) {
  .seo-content-map {
    min-height: 400px;
  }
}
.seo-content-map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .seo-content-map iframe {
    min-height: 400px;
  }
}

.footer-container {
  background: var(--brand-warm);
  color: var(--brand-dark);
  position: relative;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px var(--responsive-padding) 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  height: 72px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-logo {
    height: 80px;
  }
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  background: var(--brand-red);
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand-red);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-red);
}
.footer-contact-link:hover {
  color: var(--brand-red);
}

.footer-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 7px 14px;
  background: var(--brand-yellow);
  border-radius: var(--radius-sm);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  align-self: flex-start;
}
.footer-review-link svg {
  width: 14px;
  height: 14px;
  color: var(--brand-dark);
}
.footer-review-link:hover {
  background: var(--brand-red);
  color: var(--white);
  transform: translateY(-1px);
}
.footer-review-link:hover svg {
  color: var(--white);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-hours div {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 3px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.05);
}
.footer-hours div:last-child {
  border-bottom: none;
}

.footer-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nav li {
  display: block;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover {
  color: var(--brand-red);
  padding-left: 4px;
}

.footer-associations {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.association-logo {
  height: 36px;
  width: auto;
  opacity: 0.35;
  filter: invert(1);
  transition: opacity 0.3s;
}
.association-logo:hover {
  opacity: 0.7;
}

.footer-bottom {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px var(--responsive-padding);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .footer-bottom-left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.powered-by-heyquip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.powered-by-heyquip a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.powered-by-heyquip a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.powered-by-heyquip img {
  height: 22px;
  width: auto;
  opacity: 0.5;
}

@keyframes ctReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ct-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ct-reveal.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

.ct-locate__cards .ct-reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.ct-locate__cards .ct-reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.ct-hero {
  background: var(--brand-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 140px var(--responsive-padding) 64px;
}
@media (min-width: 815px) {
  .ct-hero {
    padding: 190px var(--responsive-padding) 80px;
  }
}
@media (min-width: 1024px) {
  .ct-hero {
    padding: 200px var(--responsive-padding) 96px;
  }
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.15) 0%, transparent 50%, rgba(245, 197, 24, 0.08) 100%);
  pointer-events: none;
}

.ct-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow));
}

.ct-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ct-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .ct-hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
}

.ct-hero__content {
  text-align: left;
}

.ct-hero__carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) {
  .ct-hero__carousel {
    aspect-ratio: 1/1;
  }
}

.ct-hero__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ct-hero__carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ct-hero__carousel-slide--active {
  opacity: 1;
}
.ct-hero__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-hero__carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.ct-hero__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.ct-hero__carousel-dot--active {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  transform: scale(1.2);
}
.ct-hero__carousel-dot:hover:not(.ct-hero__carousel-dot--active) {
  background: rgba(255, 255, 255, 0.4);
}

.ct-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.ct-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: heroPulse 2s ease-in-out infinite;
}

.ct-hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .ct-hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .ct-hero__title {
    font-size: 3.4rem;
  }
}

.ct-hero__intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 560px;
}

.ct-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .ct-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.ct-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.ct-hero__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ct-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ct-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}
.ct-hero__trust-item svg {
  flex-shrink: 0;
  opacity: 0.7;
  fill: rgba(255, 255, 255, 0.7);
}

.ct-hero__trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}

.ct-locate {
  background: var(--brand-warm);
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .ct-locate {
    padding: 96px var(--responsive-padding);
  }
}

.ct-locate__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ct-locate__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .ct-locate__grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
  }
}

.ct-locate__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-locate__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--brand-red);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ct-locate__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.08);
}

.ct-locate__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(196, 30, 36, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-red);
}

.ct-locate__card-body {
  flex: 1;
  min-width: 0;
}

.ct-locate__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin: 0 0 8px;
}

.ct-locate__card-text {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.ct-locate__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-red);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.25s ease;
}
.ct-locate__card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.ct-locate__card-link:hover {
  gap: 10px;
}
.ct-locate__card-link:hover svg {
  transform: translateX(3px);
}

.ct-locate__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ct-locate__hours li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ct-locate__hours-closed {
  color: var(--brand-red) !important;
  font-weight: 600;
}

.ct-locate__card--review {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  border-top: none;
  position: relative;
  flex-direction: column;
  padding: 32px 28px;
  gap: 0;
}
.ct-locate__card--review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.ct-locate__card--review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.ct-locate__review-stars {
  display: flex;
  gap: 3px;
  color: var(--brand-yellow);
  margin-bottom: 14px;
}

.ct-locate__review-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 20px;
}

.ct-locate__review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  border-radius: var(--radius-md);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}
.ct-locate__review-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.ct-locate__review-btn:hover {
  background: #e0b416;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
}
.ct-locate__review-btn:hover svg {
  transform: translateX(3px);
}

.ct-locate__map-col {
  display: flex;
  flex-direction: column;
}

.ct-locate__map-frame {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.04), 0 8px 24px rgba(26, 26, 46, 0.06);
  flex: 1;
}
@media (min-width: 768px) {
  .ct-locate__map-frame {
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .ct-locate__map-frame {
    height: auto;
    min-height: 480px;
  }
}
.ct-locate__map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.ct-seo {
  background: var(--brand-cream);
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .ct-seo {
    padding: 96px var(--responsive-padding);
  }
}

.ct-seo__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ct-seo__content {
  max-width: 760px;
}

.ct-seo__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .ct-seo__title {
    font-size: 1.7rem;
  }
}

.ct-seo__text {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.ct-seo__service-area {
  padding-top: 20px;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

.ct-cta {
  background: var(--brand-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ct-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow));
}
.ct-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.06) 0%, transparent 40%, rgba(245, 197, 24, 0.04) 100%);
  pointer-events: none;
}

.ct-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--responsive-padding);
}
@media (min-width: 1024px) {
  .ct-cta__inner {
    padding: 96px var(--responsive-padding);
  }
}
.ct-cta__inner {
  position: relative;
  z-index: 1;
}

.ct-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .ct-cta__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}

.ct-cta__content {
  max-width: 580px;
}

.ct-cta__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.ct-cta__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--brand-red);
}

.ct-cta__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  margin: 0 0 28px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .ct-cta__title {
    font-size: 2.8rem;
  }
}

.ct-cta__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-cta__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.4;
}
.ct-cta__benefits li svg {
  flex-shrink: 0;
}

.ct-cta__note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 32px;
}

.ct-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ct-cta__visual {
  display: none;
}
@media (min-width: 1024px) {
  .ct-cta__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.ct-cta__stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.ct-cta__stamp svg {
  width: 56px;
  height: 56px;
  color: var(--brand-yellow);
  opacity: 0.6;
}
.ct-cta__stamp span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}