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

:root {
  --primary: #FFA40A;
  --secondary: #000000;
  --tertiary: #BB7500;
  --lighter-primary: #fff7e6;
  --white: #ffffff;
  --border: #b3b3b3;
  --border-light: #d3d3d3;
  --light-gray: #717171;
  --dark-gray: #484848;
  --dark-gray2: #2B2B2C;
  --dark-gray3: #0E220E;
  --alt-section-bg: #f8f8f8;
  --the-green: #22A44A;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--secondary);
  background: var(--white);
}

/* Shared / Utility Classes */
h1,
h2,
h3,
h4,
.btn-primary,
.service-number,
.service-label span {
  font-family: "Inter", sans-serif;
}

.card-clipped {
  padding: 30px 50px;
  flex-shrink: 0;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  clip-path: polygon(0 15%, 10% 0, 100% 0, 100% 85%, 88% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

p {
  margin-bottom: 1rem;
}

.card-clipped p:last-child {
  margin-bottom: 0;
}

/* Header / Navigation */
header {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  top: 0;
  z-index: 1001;
  transition: top 0.3s ease, background 0.3s ease;
  overflow: visible;
}

header.scrolled {
  background: rgba(0, 0, 0, 1);
  position: fixed;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
  max-width: 1470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 45px;
  width: auto;
  display: block;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--primary);
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-phone:hover {
  background-color: var(--primary);
  color: var(--white);
}

.header-phone svg {
  width: 20px;
  height: 20px;
}

.nav-middle {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.3s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--secondary);
  line-height: 1.2;
  transition: color 0.3s, border-color 0.3s;
}

.phone-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 12px;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-cta.filled {
  background-color: var(--primary);
  color: #000000;
}

.btn-cta.filled:hover {
  background-color: transparent;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}




/* Contact & WhatsApp Buttons */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
}

.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  transition: background 0.3s;
}

.contact-btn svg {
  fill: currentColor;
}

.phone-btn {
  background-color: var(--primary);
}

.whatsapp-btn {
  background-color: #25D366;
}

.phone-btn:active, .whatsapp-btn:active {
  opacity: 0.9;
}


/* Utility / Section Defaults */
section {
  padding: 80px 40px;
}

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

.sub-title {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
}

.btn-primary {
  padding: 18px 40px;
  border: none;
  border-radius: 60px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary.btn-sm {
  padding: 12px 20px;
  font-size: 14px;
}

.btn-primary span {
  font-size: 20px;
}

.btn-primary:hover {
  background: var(--tertiary);
  transform: translateY(-2px);
}

.label-pre-heading {
  font-size: 19px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Hero Section New */
.hero-window-cleaning {
  background: linear-gradient(270deg, rgba(75, 46, 3, 0.9) 10%, rgba(75, 46, 3, 0.6) 50%, rgba(0,0,0,0.1) 100%), url("images/hero-backdrop2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: left;
  position: relative;
  min-height: 807px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 20px;
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 90px;
  align-items: center;
}

.hero-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-chip {
  background: linear-gradient(90deg, #FFA40A 0%, #FFA40A 100%);
  border-radius: 8px;
  padding: 6px 12px;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-window-cleaning h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 0;
}

.hero-subheading {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.29;
  color: var(--white);
  margin: 0;
  text-transform: none;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #FFF6E5;
  margin-bottom: 10px;
  max-width: 100%;
}

.btn-quote-main {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px 24px;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s;
  height: 58px;
}

.btn-quote-main:hover {
  opacity: 0.9;
}

.hero-contact-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.hero-phone-cta:hover {
  opacity: 1;
}

.btn-quote-main .icon-circle {
  background: #FFA40A;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.feature-pill {
  background: rgba(255, 164, 10, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
}

.hero-form-card {
  width: 500px;
  background: #FFF6E5;
  box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hero-form-header {
  background: linear-gradient(126.77deg, #BB7500 16.95%, #FFA40A 73.71%);
  padding: 50px 24px 20px 24px;
  color: var(--white);
  position: relative;
}

.hero-form-offer-chip {
  position: absolute;
  top: 14px;
  left: -6px;
  background: linear-gradient(90deg, #FFA40A 0%, #FFC767 100%);
  color: #2B2B2C;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px 8px 24px;
  border-radius: 0px 4px 4px 0px;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  z-index: 10;
}

.hero-form-offer-chip::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid #4E3100;
  border-left: 6px solid transparent;
}

.hero-form-header h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  text-transform: none;
  line-height: 1.4;
}

.hero-form-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.starting-from {
  font-size: 12px;
  font-weight: 500;
  color: #FFF6E5;
  margin-bottom: 2px;
}

.price-main {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-main .currency {
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
}

.price-main .amount {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.price-discount {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.8;
}

.save-badge {
  background: #FFFFFF;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.offer-timer {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.timer-label {
  font-size: 12px;
  font-weight: 500;
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.time-box {
  background: #B06900;
  border-radius: 6px;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.time-box strong {
  font-size: 16px;
  line-height: 1;
}

.time-box span {
  font-size: 10px;
  opacity: 0.8;
}

.timer-boxes .colon {
  font-weight: bold;
}

.hero-quote-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-quote-form .form-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-quote-form .form-row {
    flex-direction: column;
    gap: 16px;
  }
}

.hero-quote-form .form-row .form-group {
  flex: 1;
}

.hero-quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-quote-form .form-group label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #717171;
}

.hero-quote-form .form-group label.required::after {
  content: "*";
  color: #FFA40A;
}

.hero-quote-form .form-group input, 
.hero-quote-form .form-group select, 
.hero-quote-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ABABAB;
  border-radius: 12px;
  background: #FFF6E5;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--dark-gray3);
  outline: none;
}

.hero-quote-form .form-group input::placeholder, 
.hero-quote-form .form-group textarea::placeholder {
  color: #A0AEC0;
}

.hero-quote-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23484848' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.hero-quote-form .form-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #484848;
}

.hero-quote-form .form-checkbox input {
  /* Visually hidden but still focusable/validatable by the browser */
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  /* Do NOT set pointer-events: none — label clicks must still toggle it */
}

/* Unchecked state — empty box */
.checkmark {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Hide checkmark SVG when unchecked */
.checkmark svg {
  display: none;
}

/* Checked state — orange fill, checkmark visible */
.hero-quote-form .form-checkbox input:checked + .checkmark {
  background: #FFA40A;
  border-color: #FFA40A;
}

.hero-quote-form .form-checkbox input:checked + .checkmark svg {
  display: block;
}

.submit-btn-full {
  width: 100%;
  background: #FFA40A;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 5px;
}

.submit-btn-full:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    padding-top: 60px;
    gap: 40px;
  }
  .hero-form-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-window-cleaning {
    background-attachment: scroll; /* Fix iOS Safari fixed bg issue */
    min-height: auto;
  }
  .hero-form-header {
    padding: 40px 20px 20px;
  }
  .hero-quote-form {
    padding: 20px;
  }
  .price-main .amount {
    font-size: 42px;
  }
  .hero-window-cleaning h1 {
    font-size: 32px;
    line-height: 1.15;
  }
  .hero-subheading {
    font-size: 20px;
    line-height: 1.3;
  }
  .hero-chip {
    font-size: 12px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-window-cleaning {
    padding-top: 90px;
  }
  .hero-window-cleaning h1 {
    font-size: 28px;
    line-height: 1.15;
  }
  .hero-subheading {
    font-size: 18px;
  }
  .hero-chip {
    font-size: 11px;
    padding: 5px 10px;
  }
  /* Price row: keep in row but use compact layout */
  .hero-form-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .offer-timer {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .timer-boxes {
    gap: 4px;
  }
  .time-box {
    min-width: 38px;
    padding: 4px 6px;
  }
  .time-box strong {
    font-size: 14px;
  }
  .price-main .amount {
    font-size: 38px;
  }
  .feature-pill {
    font-size: 13px;
    padding: 6px 10px;
  }
  .hero-features {
    gap: 6px;
  }
  .hero-form-header {
    padding: 45px 16px 16px;
  }
  .hero-quote-form {
    padding: 16px;
    gap: 12px;
  }
  .hero-form-header h3 {
    font-size: 20px;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0) scale(1);
  }
  5% {
    transform: rotate(15deg) scale(1.1);
  }
  10% {
    transform: rotate(-15deg) scale(1.1);
  }
  15% {
    transform: rotate(15deg) scale(1.1);
  }
  20% {
    transform: rotate(-15deg) scale(1.1);
  }
  25% {
    transform: rotate(15deg) scale(1.1);
  }
  30% {
    transform: rotate(-15deg) scale(1.1);
  }
  35% {
    transform: rotate(0) scale(1);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-intro h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.section-intro p {
  color: #4c4d46;
  line-height: 1.7;
}

.section-header {
  text-align: left;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 80px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  flex: 1;
  min-width: 40%;
}

.section-header h2 span {
  display: block;
  color: var(--primary);
}

.section-header p {
  color: var(--secondary);
  line-height: 30px;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

/* Booking Section */
.booking {
  background: var(--white);
}

.booking-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.booking-image-card {
  position: relative;
  background: linear-gradient(135deg, #012b17, #02502b);
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 12% 100%, 0 85%);
  min-height: 420px;
  display: flex;
  flex: 1;
  align-items: stretch;
}

.booking-image-card::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  pointer-events: none;
}

.booking-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-card {
  flex: 1;
  background: var(--white);
  border-radius: 32px;
  padding: 50px;
  border: 1px solid var(--border);
}

.booking-form-card h3 {
  font-size: 28px;
  line-height: 1.4;
  color: var(--secondary);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.booking-offer-subtext {
  color: #5b6353;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 68, 33, 0.12);
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.consent-checkbox input {
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  margin: 0;
}

.alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
  position: relative;
  background-color: #060301;
  color: var(--white);
  overflow: hidden;
  padding-top: 80px;
  background-image: url(../assets/images/footer-bg-fills.png);
  background-size: 100% 90%;
  background-position: 0 185px;
  background-repeat: no-repeat;
}

/* Add background image with 50% transparency */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.footer-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  max-width: 350px;
  z-index: 1;
  transform: rotate(-155deg) translate(-17px, 0px);
}

.footer-ribbon img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: right top;
}

.footer-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: flex;
  justify-content: flex-start;
  column-gap: 60px;
  row-gap: 40px;
  flex-wrap: wrap;
}

.footer-col.brand-col {
  width: 320px;
}

.footer-col.menu-col {
  width: 160px;
}

.footer-logo {
  width: 120px;
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
  margin-top: -8px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-list svg {
  color: var(--white);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.contact-list a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-list a:hover {
  opacity: 0.8;
}

.footer-col h4 {
  color: #FFA40A;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: none;
}

.footer-col.menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col.menu-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-col.menu-col a:hover {
  color: #FFA40A;
}

.footer-big-text {
  font-family: "Oswald", sans-serif;
  font-size: 9vw;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 120px;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -5px;
  background: linear-gradient(180deg, rgba(181, 155, 111, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-bottom {
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.3) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 3;
  padding: 15px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #E0E0E0;
  font-size: 13px;
  margin: 0;
}

.footer-bottom p strong {
  color: var(--white);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.4);
}

.social-links svg {
  width: 14px;
  height: 14px;
}

/* Service Modal */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.service-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.service-modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-modal-close:hover {
  background: var(--tertiary);
  transform: rotate(90deg);
}

.service-modal-close svg {
  color: var(--secondary);
}

.service-modal-close:hover svg {
  color: var(--white);
}

.service-modal-image {
  grid-column: 1;
  position: relative;
  overflow: hidden;
  background: var(--alt-section-bg);
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-body {
  grid-column: 2;
  padding: 40px 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.service-modal-header {
  margin-bottom: 30px;
}

.service-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-modal-header p {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.6;
}

.service-modal-details {
  margin-bottom: 30px;
}

.service-modal-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-modal-details li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
}

.service-modal-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tertiary);
  font-weight: 700;
  font-size: 18px;
}

.service-modal-cta {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.service-modal-cta p {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-modal-cta .btn-primary {
  padding: 15px 30px;
  font-size: 16px;
}

@media (max-width: 1259px) {
  nav {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .hero-video {
    display: none;
  }
}

/* Mobile responsive for services */
@media (max-width: 968px) {
  .header-phone {
    display: none;
  }
  .btn-cta {
    display: none;
  }
  
  .mobile-contact-bar {
    display: flex;
  }
  
  /* Ensure content isn't covered by bottom bar */
  body {
    padding-bottom: 60px;
    font-size: 16px;
    line-height: 1.6;
  }
  .btn-primary {
    font-weight: 600;
    font-size: 14px;
    padding: 12px 30px;
  }
  /* Logo left-aligned on mobile */
  .logo-container {
    flex: 1;
  }
  .nav-right {
    display: none; /* hidden on mobile — use mobile contact bar instead */
  }
  .hero-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--white);
  }
  .hero-content p {
    font-size: 14px;
    color: var(--white);
    max-width: 100%;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; /* Relative to header */
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    gap: 20px;
    z-index: 1000;
    align-items: center;
  }

  .nav-links a {
    font-size: 18px !important;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero h1 br, .hero p br {
    display: none;
  }

  section {
    padding: 50px 16px;
  }

  .section-header {
    flex-direction: column;
    gap: 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-intro h2 {
    font-size: 32px;
  }

  .booking-content {
    flex-direction: column;
    gap: 30px;
  }

  .booking-image-card {
    order: 2;
    min-height: 420px;
    clip-path: polygon(0 0, 95% 0, 100% 12%, 100% 100%, 15% 100%, 0 88%);
  }

  .booking-form-card {
    order: 1;
    padding: 35px;
  }

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

@media (max-width: 480px) {
  .logo {
    height: 32px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .booking-form-card {
    padding: 24px 16px;
  }

  section {
    padding: 40px 16px;
  }
}

@media (max-width: 768px) {
  .footer-col.brand-col { width: 100%; }
  .footer-col.menu-col { width: calc(50% - 10px); }
  .footer-grid { column-gap: 20px; row-gap: 30px; }
  .footer-big-text { font-size: 13vw; letter-spacing: -2px; margin-top: 40px; margin-bottom: 60px; white-space: normal; }
  .footer-bottom { padding-bottom: 80px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
  .scroll-top-btn {
    bottom: 76px; /* Above 60px mobile contact bar + 16px gap */
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--tertiary);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

/* Clients / Social Proof Section */
.clients {
  background: var(--white);
  padding: 40px 0 0;
}

.clients-container {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.clients-heading {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  padding: 0 24px;
}

.clients-heading strong {
  font-weight: 700;
  color: var(--secondary);
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

.clients-marquee-track:hover {
  animation-play-state: paused;
}

.clients-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 222px;
  height: 68px;
}

.clients-logo-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.8);
  opacity: 1;
  transition: all 0.3s ease;
  mix-blend-mode: Luminosity;
}



.clients-logo-item img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee-track {
    animation: none;
  }
  .clients-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 32px 0;
  }

  .clients-logo-item {
    padding: 0 28px;
    width: 142px;
  }

  .clients-logo-item img {
    height: 28px;
    max-width: 110px;
  }
}

/* =============================================
   Stats Section
   ============================================= */
.stats {
  background: var(--white);
  padding: 80px 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-header {
  text-align: center;
  margin-bottom: 56px;
}

.stats-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--secondary);
}

.stats-heading span {
  color: var(--primary);
}

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

.stats-card {
  border: 1.5px solid var(--primary);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--lighter-primary);
}

.stats-number {
  font-size: clamp(42px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  font-family: "Inter", sans-serif;
}

.stats-count {
  display: inline-block;
}

.stats-label {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    padding: 56px 0;
  }
}

/* Problems / Why Hire Wrong Company Section */
.problems {
  background: var(--dark-gray2);
  padding: 72px 0 0;
}

.problems-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.problems-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.problems-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
  color: var(--white);
}

.problems-heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  & span {
    color: var(--primary);
  }
}

.problems-left p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0;
}

/* Right column grid */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.problem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card h3 {
  color: var(--secondary);
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
}

.problem-card p {
  color: var(--light-gray);
  margin: 0;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

/* Bottom CTA */
.problems-cta {
  margin-top: 56px;
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.problems-cta p {
  color: var(--white);
  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.problems-cta strong {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .problems-wrapper {
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .problems-wrapper {
    grid-template-columns: 1fr;
  }

  .problems-left {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .problems-heading {
    flex: 1 1 100%;
  }

  .problems-bucket {
    display: none;
  }

  .problems-left p {
    flex: 1 1 45%;
  }
}

@media (max-width: 540px) {
  .problems {
    padding: 48px 0 0;
  }

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

  .problems-cta p {
    font-size: 17px;
  }
}

/* =============================================
   Services Section
   ============================================= */
.services {
  background: var(--white);
  padding: 80px 0 0;
}

.services-header {
  max-width: 1080px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.services-heading {
  color: var(--secondary);
  margin-bottom: 16px;

  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.services-heading strong {
  color: var(--primary);
  display: block;
}

.services-desc {
  color: var(--light-gray2);
  max-width: 660px;
  margin: 0 auto;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

/* Edge-to-edge scrolling track */
.services-track-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.services-track-wrapper::-webkit-scrollbar {
  display: none;
}

.services-track-wrapper.is-dragging {
  cursor: grabbing;
}

.services-track {
  display: flex;
  gap: 16px;
  padding: 0 16px 40px;
  width: max-content;
  list-style: none;
  margin: 0;
  counter-reset: service-counter;
}

/* Cards */
.service-card {
  position: relative;
  width: 420px;
  height: 579px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  counter-increment: service-counter;
}

/* Warm amber overlay on top of photo */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(129, 82, 12, 0.5);
  z-index: 1;
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.service-number {
  line-height: 1;
  color: var(--white);
  opacity: 0.9;
  flex-shrink: 0;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 56px;
  leading-trim: CAP_HEIGHT;
  letter-spacing: 0%;
}

.service-number::before {
  content: counter(service-counter, decimal-leading-zero);
}

.service-name {
  color: var(--white);
  padding-top: 6px;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 26px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
}

.service-card-bottom {
  /* transform to hide anchor button only */
  transform: translateY(90px);
  /* to reveal anchor button in cubic bezier style */
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: 0.01em;
}

.service-card-bottom p {
  color: var(--white);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 30px;
}

/* CTA button */
.services-cta {
  max-width: 1080px;
  margin-inline: auto;
  padding: 48px 24px 80px;
  text-align: center;
}

.service-card:hover .service-card-bottom {
  transform: translateY(0);
}

.service-card-bottom a,
.services-cta a {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card-bottom a {
  color: var(--white);
}

.service-card-bottom a:hover,
.services-cta a:hover {
  background: var(--tertiary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services {
    padding: 56px 0 0;
  }

  .services-header {
    margin-bottom: 32px;
  }

  .service-card {
    width: 220px;
    height: 330px;
  }

  .service-number {
    font-size: 38px;
  }

  .services-cta {
    padding: 36px 24px 60px;
  }
}

/* =============================================
   Pricing / Includes Section
   ============================================= */
.pricing {
  background: #FFF6E5;
  padding: 80px 0;
}

.pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-heading {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  color: var(--secondary);
  margin-bottom: 16px;

  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  letter-spacing: 0%;
  text-align: center;
}

.pricing-heading strong {
  color: var(--primary);
}

.pricing-subheading {
  color: var(--dark-gray2);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

/* Two-column lists */
.pricing-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-bottom: 60px;
}

.pricing-list-title {
  margin-bottom: 20px;
  padding-bottom: 8px;
  display: inline-block;
  color: var(--the-green);

  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.pricing-list-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background-color: var(--the-green);
  margin-top: 8px;
}

.pricing-list-title--alt {
  color: var(--primary);
}

.pricing-list-title--alt::after {
  background-color: var(--primary);
}

.pricing-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.pricing-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.pricing-desc {
  color: var(--dark-gray);
  font-weight: 400;
  font-style: Italic;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 60px;
}

/* Qualifier sub-section */
.pricing-qualifier {
  text-align: center;
}

.pricing-qualifier-heading {
  font-size: clamp(26px, 3vw, 40px);
  /* color: var(--secondary); */
  margin-bottom: 16px;

  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 54px;
  letter-spacing: 0%;
  text-align: center;
}

.pricing-qualifier-heading strong {
  color: var(--primary);
}

.pricing-qualifier-subheading {
  color: var(--dark-gray2);
  margin-bottom: 32px;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}

.pricing-qualifier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.pricing-qual-card {
  --border-color: rgba(255, 164, 10, 0.5);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-qual-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 18px;
}

.pricing-qual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.pricing-qual-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
}

.pricing-qual-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 12px;
  padding: 12px 0;
}

.pricing-qual-row + .pricing-qual-row {
  border-top: 1px solid var(--border-light);
}

.pricing-qual-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-qual-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
}

.pricing-qual-item svg {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .pricing-lists {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* =============================================
   Trust / Why HRPM Section
   ============================================= */
.trust {
  background: var(--white);
  padding: 80px 0;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.trust-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 980px;
  margin-inline: auto;
}

.trust-heading {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.trust-heading strong {
  color: var(--primary);
}

/* 3-col card grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.trust-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.trust-card h3 {
  color: var(--white);
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
}

.trust-card p {
  color: var(--white);
  margin: 0;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

@media (max-width: 780px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
   Process Section
   ============================================= */
.process-section {
  padding: 96px 0;
}

.process-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}

.process-content {
  position: sticky;
  top: 110px;
}

.process-heading {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 24px;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.process-heading strong {
  color: var(--primary);
}

.process-description {
  margin-bottom: 32px;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(255, 164, 10, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.process-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 164, 10, 0.28);
  background: #ffb52f;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 30px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 28px;
  width: 2px;
  background: rgba(255, 164, 10, 0.55);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}

.process-step-badge {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--secondary);
  box-shadow: 0 8px 18px rgba(255, 164, 10, 0.2);
}

.process-step-card {
  position: relative;
  background: #fdf8ee;
  border: 2px solid var(--primary);
  border-radius: 28px;
  padding: 24px 28px 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.04);
}

.process-step-card::after {
  content: "";
  position: absolute;
  left: calc(50% - 12px);
  bottom: -15px;
  width: 24px;
  height: 24px;
  background: #fdf8ee;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  border-radius: 0 0 5px 0;
}

.process-step:last-child .process-step-card::after {
  display: none;
}

.process-step-label {
  text-transform: uppercase;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 10%;
}

.process-step-label::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--primary);
  margin-top: 4px;
}

.process-step-card h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  font-style: Bold;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
}

.process-step-card p {
  color: var(--dark-gray2);
  margin: 0 0 10px;

  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

.process-step-card p:last-child {
  margin-bottom: 0;
  font-weight: 400;
  font-style: Italic;
  line-height: 22px;
}

@media (max-width: 1080px) {
  .process-inner {
    grid-template-columns: 1fr;
  }

  .process-content {
    position: static;
  }

  .process-description {
    max-width: 60ch;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 72px 0;
  }

  .process-inner {
    gap: 42px;
  }

  .process-heading {
    max-width: none;
  }

  .process-description {
    font-size: 17px;
  }

  .process-steps {
    padding-left: 0;
  }

  .process-steps::before {
    left: 28px;
  }

  .process-step {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
  }

  .process-step-card {
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .process-step-card::after {
    left: 38px;
  }

  .process-step-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 540px) {
  .process-section {
    padding: 60px 0;
  }

  .process-inner {
    padding: 0 18px;
  }

  .process-heading {
    font-size: 34px;
  }

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

  .process-cta {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    text-align: center;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step-badge {
    width: 52px;
    height: 52px;
  }

  .process-step-card::after {
    display: none;
  }

  .process-step-card h3 {
    font-size: 20px;
  }

  .process-step-card p {
    font-size: 15px;
  }
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials-section {
  background: #fff6e5;
  padding: 96px 0 110px;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonials-heading {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 24px;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.testimonials-heading strong {
  color: var(--primary);
  display: block;
}

.testimonials-aggregate {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}

.testimonials-aggregate li {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}

@media (min-width: 768px) {
  .testimonials-aggregate {
    list-style: none;
    flex-direction: row;
    align-items: center;
    padding-left: 0;
  }
  .testimonials-aggregate li {
    padding: 0 16px;
    border-right: 1px solid #00000030;
  }
  .testimonials-aggregate li:first-child {
    padding-left: 0;
  }
  
  .testimonials-aggregate li:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.testimonials-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.testimonials-nav-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 164, 10, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.testimonials-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 164, 10, 0.28);
}

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

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(390px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonial-card {
  min-height: 520px;
  background: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  scroll-snap-align: start;
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  background-image: url("images/review-quote.svg");
  background-size: 80px;
  background-position: left;
  background-repeat: no-repeat;
  background-color: transparent;
  height: 80px;
}

.testimonial-brand-logo {
  width: auto;
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
}

.testimonial-copy {
  flex: 1;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 36px;
  letter-spacing: 0%;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe0a7 0%, #ffbb4c 100%);
  color: var(--dark-gray2);
  font-size: 26px;
  font-weight: 500;
  font-style: Medium;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.testimonial-name,
.testimonial-location {
  margin: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-location {
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.2;
}

.testimonial-rating {
  flex-shrink: 0;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--dark-gray2);
}

.testimonial-rating-muted {
  font-size: 18px;
}

.testimonial-card--video {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #17341e 0%, #f2dca8 100%);
}

.testimonial-video-toggle {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-video-shell {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  isolation: isolate;
}

.testimonial-video-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 248, 234, 0.9) 100%);
  z-index: 1;
}

.testimonial-video-poster,
.testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.testimonial-card--video.is-playing .testimonial-video {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-card--video.is-playing .testimonial-video-poster,
.testimonial-card--video.is-playing .testimonial-video-play {
  opacity: 0;
}

.testimonial-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 2;
}

.testimonial-video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.testimonial-card--video .testimonial-footer {
  position: relative;
  z-index: 2;
  padding: 0 24px 22px;
}

.testimonial-cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1024px) {
  .testimonials-header {
    flex-direction: column;
    align-items: start;
  }

  .testimonials-heading {
    max-width: 16ch;
  }

  .testimonials-track {
    grid-auto-columns: minmax(300px, 74vw);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 72px 0 84px;
  }

  .testimonials-heading {
    max-width: none;
  }

  .testimonials-track {
    grid-auto-columns: minmax(286px, 86vw);
  }

  .testimonial-card {
    min-height: 470px;
    padding: 22px 20px 20px;
  }

  .testimonial-copy {
    font-size: 18px;
  }

  .testimonial-video-shell {
    min-height: 380px;
  }
}

@media (max-width: 540px) {
  .testimonials-inner {
    padding: 0 18px;
  }

  .testimonials-heading {
    font-size: 34px;
  }

  .testimonials-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .testimonials-track {
    grid-auto-columns: 92vw;
  }

  .testimonial-card {
    min-height: 430px;
  }

  .testimonial-copy {
    font-size: 17px;
  }

  .testimonial-footer {
    align-items: end;
  }

  .testimonial-rating {
    font-size: 18px;
  }

  .testimonial-video-shell {
    min-height: 340px;
  }

  .testimonial-video-play {
    width: 68px;
    height: 68px;
  }
}

/* =============================================
   Spring Offers Section
   ============================================= */
.spring-offers-section {
  position: relative;
  padding: 96px 0 110px;
  background: #0f1720;
  overflow: hidden;
}

.spring-offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bg-x.jpg") center center / cover no-repeat;
}

.spring-offers-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 22, 0.58) 0%, rgba(7, 14, 22, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 22, 36, 0.38) 0%, rgba(92, 22, 35, 0.28) 100%);
}

.spring-offers-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.spring-offers-header {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--white);
}

.spring-offers-heading {
  margin-bottom: 12px;
  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.spring-offers-heading strong {
  color: var(--primary);
}

.spring-offers-description {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

.spring-offers-callout {
  margin-bottom: 10px;

  background-color: var(--primary);
  border-radius: 8px;
  padding: 4px 20px;

  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;

  display: inline-block;
}

.spring-offers-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.spring-offer-card {
  background: var(--lighter-primary);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  min-width: 0;
}

.spring-offer-card--large {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
}

.spring-offer-card--bundle {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr);
}

.spring-offer-card--mini {
  min-height: 266px;
}

.spring-offer-copy {
  padding: 21px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.spring-offer-tag {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-right: 16px;
  padding-left: 30px;

  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: CAP_HEIGHT;
  line-height: 1.7;
  letter-spacing: 4%;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  background: linear-gradient(-90deg, #ffd168 0%, #ffb62f 100%);
  color: #4d2b00;
  margin-bottom: 18px;
  margin-left: -30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.spring-offer-tag-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spring-offer-card h3 {
  font-size: clamp(22px, 2.3vw, 26px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.spring-offer-copy p {
  font-size: 16px;
  line-height: 1.55;
  color: #2f2f2f;
  margin-bottom: 10px;
}

.spring-offer-copy p:last-of-type {
  margin-bottom: 18px;
}

.spring-offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--primary);
  color: #151515;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(255, 164, 10, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.spring-offer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 164, 10, 0.3);
}

.spring-offer-media {
  min-height: 100%;
}

.spring-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spring-offer-card--bundle .spring-offer-copy {
  padding-bottom: 18px;
}

.spring-offer-card--bundle .spring-offer-media {
  min-height: 270px;
}

.spring-offer-card--mini h3,
.spring-offer-card--bundle h3 {
  font-size: clamp(22px, 1.9vw, 32px);
}

@media (max-width: 1150px) {
  .spring-offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spring-offer-card--large {
    grid-column: 1 / -1;
  }

  .spring-offer-card--bundle {
    grid-column: 2;
    grid-row: 2 / span 2;
  }
}

@media (max-width: 900px) {
  .spring-offers-section {
    padding: 76px 0 86px;
  }

  .spring-offers-grid {
    grid-template-columns: 1fr;
  }

  .spring-offer-card--large,
  .spring-offer-card--bundle {
    grid-column: auto;
    grid-row: auto;
  }

  .spring-offer-card--large {
    grid-template-columns: 1fr;
  }

  .spring-offer-card--bundle {
    grid-template-rows: auto minmax(220px, 320px);
  }

  .spring-offer-media {
    min-height: 280px;
  }
}

@media (max-width: 540px) {
  .spring-offers-inner {
    padding: 0 18px;
  }

  .spring-offers-heading {
    font-size: 34px;
  }

  .spring-offers-subheading {
    font-size: 16px;
  }

  .spring-offer-copy p {
    font-size: 14px;
  }

  .spring-offer-copy {
    padding: 18px 16px 20px;
  }

  .spring-offer-tag {
    font-size: 12px;
    padding: 7px 12px;
  }

  .spring-offer-card h3 {
    font-size: 26px;
  }

  .spring-offer-price {
    font-size: 58px;
  }

  .spring-offer-currency {
    font-size: 20px;
    margin-top: 10px;
  }

  .spring-offer-button {
    width: 100%;
    font-size: 15px;
    text-align: center;
  }

  .spring-offer-media,
  .spring-offer-card--bundle .spring-offer-media {
    min-height: 220px;
  }
}

@media (min-width: 1150px) {
  .spring-offer-card--large .spring-offer-copy {
    padding-right: 80px;
  }

  .spring-offer-tag-line img {
    margin-right: 30px;
  }
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-section {
  padding: 96px 0 110px;
  background: #ffffff;
}

.faq-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.faq-intro {
  padding-top: 8px;
}

.faq-heading {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 8ch;
}

.faq-heading span {
  color: var(--primary);
}

.faq-subheading {
  color: var(--dark-gray2);
  max-width: 14ch;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #fffdfa;
  box-shadow: -5px 0 0 0 rgba(255, 164, 10, 0.68);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  background: #fffefb;
  box-shadow: -6px 0 0 0 rgba(255, 164, 10, 0.95), 0 10px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 20px 56px 20px 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #181818;
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.8px solid #757575;
  border-bottom: 1.8px solid #757575;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-20%) rotate(-135deg);
  border-color: var(--primary);
}

.faq-answer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.65;
  color: #444444;
  margin: 14px 0 0;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 76px 0 88px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-heading,
  .faq-subheading {
    max-width: none;
  }
}

@media (max-width: 540px) {
  .faq-inner {
    padding: 0 18px;
  }

  .faq-heading {
    font-size: 34px;
  }

  .faq-subheading {
    font-size: 17px;
  }

  .faq-question {
    min-height: 60px;
    padding: 16px 46px 16px 16px;
    font-size: 15px;
  }

  .faq-question::after {
    right: 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* =============================================
   Results Section
   ============================================= */
.results-section {
  padding: 96px 0 110px;
  background: var(--white);
}

.results-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.results-header .label-pre-heading {
  display: block;
  text-align: center;
}

.results-heading {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  font-weight: 500;
  font-style: Medium;
  color: var(--secondary);
}

.results-heading strong {
  color: var(--primary);
}

.results-description {
  max-width: 720px;
  margin: 0 auto;
  color: var(--dark-gray2);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.result-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.result-after {
  z-index: 1;
}

.result-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0); /* crops the right half */
}

.result-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2px;
  background: white;
  z-index: 3;
  transform: translateX(-50%);
}

.result-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  pointer-events: none; /* Let clicks pass through to input */
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 164, 10, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 164, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 164, 10, 0); }
}

.result-slider-handle.pulse {
  animation: pulse-ring 2s infinite;
}

.result-slider-handle svg {
  pointer-events: none;
}

.result-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

.result-badge {
  position: absolute;
  bottom: 12px;
  padding: 6px 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  z-index: 5;
  border-radius: 20px;
  border: 2px solid var(--white);
}

.badge-before {
  left: 12px;
  background: #000000;
}

.badge-after {
  right: 12px;
  background: var(--primary);
  color: #000000;
}

.result-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
}

.result-subtitle {
  font-size: 14px;
  color: var(--dark-gray2);
  margin-bottom: 0;
}

.results-cta {
  text-align: center;
}

.btn-primary-cta {
  display: inline-block;
  background: var(--primary);
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  background: #000000;
  color: var(--primary);
}

@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   Service Area Section
   ============================================= */
.service-area-section {
  padding: 96px 0 110px;
  background: #FFF6E5;
}

.service-area-inner {
  margin: 0 auto;
  padding: 0 24px;
}

.service-area-header {
  max-width: 846px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-area-heading {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 16px;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.service-area-heading strong {
  color: var(--primary);
  display: block;
}

.service-area-description {
  color: var(--dark-gray2);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 236px));
  justify-content: center;
  gap: 24px;
}

.service-area-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-area-card-media {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 24px;
  background: #e8dcc5;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.service-area-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-area-card-title {
  text-align: center;
  margin: 0;

  font-weight: 600;
  font-style: Semi Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.service-area-footer {
  margin-top: 40px;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.service-area-footer p {
  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.service-area-footer p strong {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .service-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .service-area-section {
    padding: 76px 0 88px;
  }

  .service-area-header {
    margin-bottom: 36px;
  }
}

@media (max-width: 540px) {
  .service-area-inner {
    padding: 0 18px;
  }

  .service-area-heading {
    font-size: 34px;
  }

  .service-area-description {
    font-size: 14px;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-area-card-title {
    font-size: 18px;
  }
}

/* =============================================
   Final CTA Section
   ============================================= */
.final-cta-section {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 10px 10px, rgba(0, 0, 0, 0.09) 1.2px, transparent 1.3px) 0 0 / 24px 24px,
    #fbfbfb;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 1470px;
  margin: 0 auto;
  padding-left: max(24px, calc((100vw - 1470px) / 2 + 24px));
  padding-right: 24px;
  display: flex;
  justify-content: flex-end;
}

.final-cta-panel {
  width: min(100%, 836px);
  background: linear-gradient(180deg, #ffffff 0%, #fff9ee 100%);
  padding: 64px 60px 60px;
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.06);
}

.final-cta-copy {
  max-width: 620px;
}

.final-cta-heading {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 12ch;
}

.final-cta-heading span {
  color: var(--primary);
}

.final-cta-description {
  max-width: 33ch;
  font-size: 18px;
  line-height: 1.5;
  color: #2d2d2d;
  margin-bottom: 22px;
}

.final-cta-availability,
.final-cta-meta {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #232323;
  margin-bottom: 14px;
}

.final-cta-meta {
  margin-bottom: 32px;
}

.final-cta-meta span {
  color: #969696;
  margin: 0 8px;
}

.final-cta-box {
  background: linear-gradient(180deg, #ffad14 0%, #ffa40a 100%);
  border-radius: 18px;
  padding: 28px 38px 30px;
  box-shadow: 0 18px 36px rgba(255, 164, 10, 0.28);
}

.final-cta-call-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  color: #272727;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.final-cta-call-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.final-cta-call-icon svg {
  width: 100%;
  height: 100%;
}

.final-cta-phone {
  display: block;
  text-align: center;
  color: #121212;
  text-decoration: none;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.final-cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.final-cta-divider span {
  flex: 1;
  height: 1px;
  background: rgba(98, 66, 0, 0.24);
}

.final-cta-divider strong {
  font-size: 14px;
  font-weight: 700;
  color: rgba(98, 66, 0, 0.72);
  line-height: 1;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff9ef 0%, #fff5e0 100%);
  color: #171717;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85), 0 10px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .final-cta-inner {
    padding-left: 24px;
  }

  .final-cta-panel {
    width: 100%;
    padding: 56px 42px 48px;
  }

  .final-cta-heading {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .final-cta-panel {
    padding: 48px 26px 42px;
  }

  .final-cta-description {
    max-width: none;
    font-size: 17px;
  }

  .final-cta-availability,
  .final-cta-meta {
    font-size: 17px;
  }

  .final-cta-box {
    padding: 24px 22px 24px;
  }
}

@media (max-width: 540px) {
  .final-cta-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .final-cta-panel {
    padding: 42px 18px 34px;
  }

  .final-cta-heading {
    font-size: 34px;
  }

  .final-cta-description,
  .final-cta-availability,
  .final-cta-meta {
    font-size: 15px;
  }

  .final-cta-meta span {
    margin: 0 4px;
  }

  .final-cta-box {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .final-cta-phone {
    font-size: 28px;
  }

  .final-cta-button {
    min-height: 54px;
    font-size: 16px;
  }
}

