/* Premium Light Theme Design System */
:root {
  --hue-fire: 16; /* Clean BBQ warm/fire orange */
  --primary: hsl(var(--hue-fire), 95%, 48%);
  --primary-hover: hsl(var(--hue-fire), 100%, 42%);
  --primary-glow: hsla(var(--hue-fire), 95%, 48%, 0.2);
  
  --bg-light: #faf9f6; /* Warm Alabaster White */
  --bg-panel: rgba(255, 255, 255, 0.9);
  
  --text-pure: #11141a; /* Very dark charcoal */
  --text-main: #2d333f; /* Dark slate text */
  --text-muted: #565f73; /* Modern slate grey */
  
  --accent-gold: #d97706; /* Warm gold */
  --accent-light: #fff7ed; /* Very light warm orange */
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-focus: hsla(var(--hue-fire), 95%, 48%, 0.25);
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

/* Reset and Core Layout */
html {
  scroll-behavior: smooth;
  overflow-x: clip; /* clip does not break position: sticky like hidden does */
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-main);
  overflow-x: clip; /* clip does not break position: sticky like hidden does */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base container setting viewport constraints */
.hero-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-color: var(--bg-light);
}

/* Header Styling */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4.5rem;
  z-index: 20;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-pure);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo-icon {
  width: 30px;
  height: 30px;
  color: var(--primary);
  filter: drop-shadow(0 2px 8px var(--primary-glow));
  animation: float-icon 4s ease-in-out infinite;
}

/* Nav Menu Styling */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-pure);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-mobile {
  display: none; /* Mobile only drawer CTA */
}

/* Header Actions & Toggle styling */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-glass);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  color: var(--text-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  padding: 0.55rem 1.35rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--primary-glow);
  transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--primary-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-pure);
  padding: 0.25rem;
  z-index: 15;
  transition: var(--transition-smooth);
}

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

.menu-toggle:hover {
  color: var(--primary);
  transform: scale(1.05);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--primary-glow);
  animation: pulse-ring 1.8s infinite;
}

/* Hero Section Layout */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* Give more width to the image side */
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

/* Left Content Column */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 4.5rem 3.5rem 4.5rem; /* Spacious padding aligned with navbar */
  background: var(--bg-light);
  z-index: 5;
}

.hero-content-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem; /* Increased gap for better visual breathing room */
  max-width: 720px;
}

/* Trust Tags Styling */
.trust-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-bottom: -0.25rem;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  border: 1px solid rgba(242, 100, 25, 0.12);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: clamp(0.85rem, 1.8vh, 0.95rem);
  font-weight: 700;
  color: var(--text-pure);
  box-shadow: 0 2px 8px rgba(242, 100, 25, 0.03);
  transition: var(--transition-smooth);
}

.trust-tag:hover {
  transform: translateY(-1px);
  background: hsl(30, 100%, 96%);
  border-color: rgba(242, 100, 25, 0.25);
  box-shadow: 0 4px 12px rgba(242, 100, 25, 0.08);
}

.trust-tag-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
}

.trust-tag-stars .star-icon {
  width: 14px;
  height: 14px;
}

.trust-tag-icon {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

/* Title Styling */
.main-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.4vh, 3.6rem); /* Substantially larger title */
  line-height: 1.12;
  color: var(--text-pure);
  letter-spacing: -1.2px;
}

.description-para {
  font-size: clamp(1.05rem, 2vh, 1.25rem); /* Substantially larger description */
  line-height: 1.6;
  color: var(--text-muted);
}

/* Benefits Checklist */
.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-title {
  font-size: clamp(0.95rem, 1.8vh, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem; /* Increased spacing */
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.benefit-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--primary);
  border: 1px solid rgba(242, 100, 25, 0.15);
}

.benefit-icon {
  width: 15px;
  height: 15px;
}

.benefit-text {
  font-size: clamp(0.9rem, 1.8vh, 1.05rem); /* Substantially larger list text */
  line-height: 1.45;
  color: var(--text-main);
  font-weight: 600;
}

/* Special styling for rating item */
.full-width-item {
  grid-column: 1 / -1;
  background: var(--accent-light);
  border: 1px solid rgba(242, 100, 25, 0.12);
}

.full-width-item:hover {
  background: hsl(30, 100%, 96%);
  border-color: rgba(242, 100, 25, 0.25);
}

.rating-stars-wrapper {
  background: none;
  border: none;
  color: var(--accent-gold);
  display: flex;
  gap: 3px;
  width: auto;
  height: auto;
}

.star-icon {
  width: 15px;
  height: 15px;
}

.highlight-text {
  color: var(--text-pure);
  font-weight: 700;
}

/* CTA Block */
.cta-block {
  display: flex;
  flex-direction: column;
  gap: 1.15rem; /* Better breathing room */
  margin-top: 0.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, var(--primary), hsl(var(--hue-fire), 95%, 42%));
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vh, 1.3rem); /* Substantially larger button */
  text-decoration: none;
  padding: 1.1rem 2.6rem;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0 6px 24px var(--primary-glow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(var(--hue-fire), 95%, 48%, 0.45);
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.cta-button:active {
  transform: translateY(1px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

.tagline {
  font-size: clamp(0.85rem, 1.6vh, 0.98rem); /* Substantially larger tagline text */
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 620px;
  border-left: 3px solid var(--primary);
  padding-left: 0.85rem;
}

/* Right Side Image */
.hero-image-side {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* Focus on the right side of the image where the product is */
  opacity: 1; /* Keep full opacity for clarity */
  transition: transform 6s cubic-bezier(0.1, 1, 0.1, 1);
}

.hero-image-side:hover .hero-image {
  transform: scale(1.03);
}

/* Soft mask overlay that fades out quickly to keep the product clear */
.image-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-light) 0%, rgba(250, 249, 246, 0.4) 15%, transparent 45%);
  z-index: 2;
  pointer-events: none;
}

/* --- ANIMATIONS --- */
@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 hsla(var(--hue-fire), 95%, 48%, 0.7); }
  70% { box-shadow: 0 0 0 6px hsla(var(--hue-fire), 95%, 48%, 0); }
  100% { box-shadow: 0 0 0 0 hsla(var(--hue-fire), 95%, 48%, 0); }
}

/* --- HEIGHT RESPONSIVE STYLING (MANDATORY TO PREVENT OVERFLOW IN 100VH) --- */
@media (max-height: 800px) and (min-width: 769px) {
  .header {
    padding: 1rem 3.5rem;
  }
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
  .hero-content-inner {
    gap: 1.25rem;
  }
  .main-title {
    font-size: clamp(2rem, 3.8vh, 2.8rem);
  }
  .description-para {
    font-size: 0.98rem;
  }
  .benefits-list {
    gap: 0.5rem 1.2rem;
  }
  .benefit-item {
    padding: 0.35rem 0.5rem;
  }
  .cta-block {
    margin-top: 0.2rem;
    gap: 0.8rem;
  }
  .cta-button {
    padding: 0.95rem 2.2rem;
    font-size: 1.1rem;
  }
}

@media (max-height: 650px) and (min-width: 769px) {
  .header {
    padding: 0.8rem 2.5rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  .hero-content {
    padding-top: 4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .hero-content-inner {
    gap: 0.85rem;
  }
  .main-title {
    font-size: 1.9rem;
  }
  .description-para {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .benefits-list {
    gap: 0.4rem 0.8rem;
  }
  .benefit-text {
    font-size: 0.85rem;
  }
  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  .tagline {
    font-size: 0.8rem;
  }
}

/* --- MOBILE RESPONSIVE DESIGN (MANDATORY FOR 100VH) --- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    height: 100%;
  }

  /* Overlay image in the background of mobile screen */
  .hero-image-side {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Mask overlay for blending text and image on mobile */
  .image-mask {
    background: linear-gradient(0deg, var(--bg-light) 50%, rgba(250, 249, 246, 0.75) 80%, var(--bg-light) 100%),
                rgba(250, 249, 246, 0.35);
  }

  .hero-content {
    position: relative;
    z-index: 5;
    background: transparent;
    padding: 5rem 1.5rem 1.5rem 1.5rem;
    justify-content: flex-end;
  }

  .hero-content-inner {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    gap: 1.15rem;
  }

  .trust-tags-row {
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.15rem;
  }

  .trust-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
  }

  .main-title {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
    line-height: 1.18;
  }

  .description-para {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .benefits-title {
    font-size: 0.85rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .benefit-item {
    padding: 0.3rem 0.5rem;
  }

  .benefit-text {
    font-size: 0.88rem;
  }

  .cta-block {
    margin-top: 0.3rem;
    gap: 0.8rem;
  }

  .cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    border-radius: 12px;
  }

  .tagline {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .header {
    padding: 1.25rem 1.5rem;
  }
  
  .logo {
    font-size: 1.35rem;
  }

  .nav-cta-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }

  /* Mobile Nav Menu Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.06);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 12;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
    color: var(--text-pure);
    padding: 0.5rem 0;
  }

  .nav-cta-mobile {
    display: inline-flex;
    background: var(--primary);
    color: #ffffff !important;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    font-weight: 800;
    font-family: var(--font-display);
    margin-top: 1rem;
    box-shadow: 0 4px 15px var(--primary-glow);
  }

  .nav-cta-mobile::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
  
  @media (max-width: 480px) {
    .header-tag {
      display: none; /* Hide header tag on super narrow screens to avoid crowding */
    }
  }
}

/* Extra small height query for mobile devices in landscape */
@media (max-height: 520px) {
  .header {
    display: none;
  }
  .hero-content {
    padding: 1rem;
  }
  .hero-content-inner {
    padding: 0.85rem;
    gap: 0.5rem;
  }
  .main-title {
    font-size: 1.3rem;
  }
  .description-para {
    display: none;
  }
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 0.6rem;
  }
  .benefit-icon-wrapper {
    width: 20px;
    height: 20px;
  }
  .benefit-icon {
    width: 11px;
    height: 11px;
  }
  .benefit-text {
    font-size: 0.75rem;
  }
  .cta-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }
  .tagline {
    font-size: 0.72rem;
  }
}

/* Product Overview Section */
.overview-section {
  width: 100%;
  background-color: var(--bg-light); /* Alternate background (Alabaster) */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
  overflow: hidden; /* Safely prevents overflow here without breaking sibling sticky images */
}

.overview-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* Image left, content right */
  width: 100%;
  align-items: center;
}

.overview-image-side {
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  min-width: 0; /* Prevents grid layout column blowout */
}

.overview-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.overview-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(242, 100, 25, 0.08);
}

.overview-content {
  padding: 6.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0; /* Prevents grid layout column blowout */
}

.overview-tag {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.overview-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.overview-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.overview-para {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

/* Tablet Media Query for Overview Section */
@media (max-width: 1024px) {
  .overview-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview-image-side {
    padding: 4.5rem 3rem 2.5rem 3rem;
  }

  .overview-content {
    padding: 0 3rem 4.5rem 3rem;
  }
}

/* Mobile Media Query for Overview Section */
@media (max-width: 768px) {
  .overview-image-side {
    padding: 4.5rem 1.5rem 2.5rem 1.5rem;
  }

  .overview-content {
    padding: 0 1.5rem 4.5rem 1.5rem;
  }

  .overview-title {
    font-size: 2.2rem;
  }

  .overview-para {
    font-size: 1rem;
  }
}

/* Specifications Section */
.specs-section {
  width: 100%;
  background-color: #ffffff; /* Pure white background */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 5;
}

.specs-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* Exactly matches the hero grid column split */
  width: 100%;
  align-items: flex-start;
}

.specs-content {
  padding: 6.5rem 4.5rem; /* Left X padding matches navbar and hero content X padding */
  min-width: 0; /* Prevents grid layout column blowout */
}

.specs-image-side {
  position: sticky;
  top: 7.5rem; /* Clear of fixed header */
  padding: 0 4.5rem; /* Removed vertical padding to ensure the element height is minimal, allowing scroll space */
  margin-top: 6.5rem; /* Matches content start vertical offset */
  min-width: 0; /* Prevents grid layout column blowout */
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vh, 2.75rem);
  color: var(--text-pure);
  letter-spacing: -0.8px;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vh, 1.1rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.specs-table-wrapper {
  background: #faf9f6;
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  margin-bottom: 2rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th {
  background: rgba(0, 0, 0, 0.02);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-pure);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.specs-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: rgba(242, 100, 25, 0.015);
}

.spec-name {
  font-weight: 700;
  color: var(--text-pure);
  width: 35%;
}

.spec-detail {
  color: var(--text-main);
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-charging {
  background: rgba(242, 100, 25, 0.08);
  color: var(--primary);
  border: 1px solid rgba(242, 100, 25, 0.15);
}

.badge-guarantee {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.badge-offer {
  background: rgba(242, 100, 25, 0.1);
  color: var(--primary);
  border: 1px solid rgba(242, 100, 25, 0.25);
  font-weight: 800;
}

.badge-merchant {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-left: 0.25rem;
}

/* Clarification Alert Card */
.specs-clarification-card {
  display: flex;
  gap: 1rem;
  background: rgba(242, 100, 25, 0.03);
  border: 1px dashed rgba(242, 100, 25, 0.2);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
}

.specs-clarification-card .info-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.clarification-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

/* Right side Image Styling */
.specs-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.specs-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(242, 100, 25, 0.08);
}

/* Tablet Media Query for Specifications Section */
@media (max-width: 1024px) {
  .specs-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .specs-content {
    padding: 4.5rem 3rem 2.5rem 3rem;
  }

  .specs-image-side {
    position: static;
    padding: 0 3rem 4.5rem 3rem;
    margin-top: 0;
  }
}

/* Mobile Media Query for Specifications Section */
@media (max-width: 768px) {
  .specs-content {
    padding: 4.5rem 1.5rem 2.5rem 1.5rem;
  }

  .specs-image-side {
    padding: 0 1.5rem 4.5rem 1.5rem;
  }

  .specs-table td, .specs-table th {
    padding: 0.9rem 1.1rem;
    font-size: 0.88rem;
  }

  .spec-name {
    width: 40%;
  }
}

/* Key Features Section */
.features-section {
  width: 100%;
  background-color: #ffffff; /* Pure white background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 6.5rem 4.5rem; /* Consistent padding */
  position: relative;
  z-index: 5;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.features-tag {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.features-section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.features-section-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Features Grid - 3 Columns on Desktop, centering last row elements */
.features-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1025px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .feature-card {
    grid-column: span 2;
  }
  .feature-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .feature-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.feature-card {
  background: var(--bg-light);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(242, 100, 25, 0.06);
  border-color: rgba(242, 100, 25, 0.15);
}

.feature-card-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background-color: #eae7df;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card-image {
  transform: scale(1.06);
}

.feature-card-content {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  flex-grow: 1;
}

.feature-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: rgba(242, 100, 25, 0.08);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-badge {
  color: rgba(242, 100, 25, 0.16);
  transform: scale(1.1);
}

.feature-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-pure);
  margin: 0;
  line-height: 1.25;
}

.feature-card-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Mobile Media Query for Features */
@media (max-width: 768px) {
  .features-section {
    padding: 4.5rem 1.5rem;
  }
  
  .features-container {
    gap: 3rem;
  }
  
  .features-section-title {
    font-size: 2.2rem;
  }
  
  .features-section-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Reset grid spans for mobile */
  .feature-card {
    grid-column: span 1 !important;
  }
}

/* Build Quality Section */
.build-quality-section {
  width: 100%;
  background-color: var(--bg-light); /* Alternate background (Alabaster) */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.build-quality-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* Image left, content right */
  width: 100%;
  align-items: flex-start;
}

.build-quality-image-side {
  position: sticky;
  top: 7.5rem;
  padding: 0 4.5rem;
  margin-top: 6.5rem;
}

.build-quality-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.build-quality-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(242, 100, 25, 0.08);
}

.build-quality-content {
  padding: 6.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.build-quality-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.build-quality-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.build-quality-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.build-quality-item {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-main);
  position: relative;
  padding-left: 2rem;
}

/* Custom list bullet point matching the theme colors */
.build-quality-item::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.build-quality-item .item-title {
  font-weight: 700;
  color: var(--text-pure);
}

/* Mobile Media Query for Build Quality */
@media (max-width: 768px) {
  .build-quality-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .build-quality-image-side {
    position: static;
    padding: 4.5rem 1.5rem 2.5rem 1.5rem;
    margin-top: 0;
  }

  .build-quality-content {
    padding: 0 1.5rem 4.5rem 1.5rem;
  }

  .build-quality-title {
    font-size: 2.2rem;
  }

  .build-quality-subtitle {
    font-size: 1rem;
  }
  
  .build-quality-item {
    font-size: 0.95rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  width: 100%;
  background-color: #ffffff; /* Pure white background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.how-it-works-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* Video left, content right */
  width: 100%;
  align-items: flex-start;
}

.how-it-works-video-side {
  position: sticky;
  top: 7.5rem;
  padding: 0 4.5rem;
  margin-top: 6.5rem;
}

.video-card-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #eae7df;
}

.how-it-works-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.how-it-works-content {
  padding: 6.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.how-it-works-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.how-it-works-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.step-item {
  display: flex;
  gap: 1.75rem;
  position: relative;
  padding-bottom: 2.25rem;
}

/* Connecting timeline line */
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.75rem;
  top: 3.5rem;
  bottom: 0;
  width: 2px;
  background-color: rgba(242, 100, 25, 0.15);
}

.step-number-container {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid rgba(242, 100, 25, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.step-text-container {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.65rem;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-pure);
  margin: 0;
  line-height: 1.2;
  transition: var(--transition-smooth);
}

.step-desc {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* Timeline interaction hover effects */
.step-item:hover .step-number-container {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(242, 100, 25, 0.25);
}

.step-item:hover .step-number {
  color: #ffffff;
}

.step-item:hover .step-title {
  color: var(--primary);
}

/* Mobile Media Query for How It Works */
@media (max-width: 768px) {
  .how-it-works-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-it-works-video-side {
    position: static;
    padding: 4.5rem 1.5rem 2.5rem 1.5rem;
    margin-top: 0;
  }

  .how-it-works-content {
    padding: 0 1.5rem 4.5rem 1.5rem;
  }

  .how-it-works-title {
    font-size: 2.2rem;
  }

  .how-it-works-subtitle {
    font-size: 1rem;
  }

  .step-item {
    gap: 1.25rem;
    padding-bottom: 1.75rem;
  }

  .step-number-container {
    width: 2.75rem;
    height: 2.75rem;
  }

  .step-number {
    font-size: 1rem;
  }

  .step-item:not(:last-child)::after {
    left: 1.38rem;
    top: 2.75rem;
  }

  .step-text-container {
    padding-top: 0.35rem;
  }

  .step-title {
    font-size: 1.15rem;
  }

  .step-desc {
    font-size: 0.9rem;
  }
}

/* How to Use Section */
.how-to-use-section {
  width: 100%;
  padding: 6.5rem 0;
  background-color: var(--bg-light); /* Alternate background (Alabaster) */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.how-to-use-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4.5rem; /* Matches X spacing */
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.how-to-use-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.how-to-use-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.how-to-use-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.how-to-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}


.use-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.use-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(242, 100, 25, 0.06);
  border-color: rgba(242, 100, 25, 0.15);
}

.use-card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0ede6;
  position: relative;
}

.use-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.use-card:hover .use-card-image {
  transform: scale(1.05);
}

.use-card-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.use-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  background: rgba(242, 100, 25, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.use-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-pure);
  margin: 0;
  line-height: 1.25;
}

.use-card-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-main);
  margin: 0;
}

/* Mobile Media Query for How to Use */
@media (max-width: 1024px) {
  .how-to-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .how-to-use-section {
    padding: 4.5rem 0;
  }

  .how-to-use-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .how-to-use-title {
    font-size: 2.2rem;
  }

  .how-to-use-subtitle {
    font-size: 1rem;
  }

  .how-to-use-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .use-card-image-wrapper {
    height: 180px;
  }

  .use-card-content {
    padding: 1.75rem;
  }
}

/* Cleaning Tips Section */
.tips-section {
  width: 100%;
  padding: 6.5rem 0;
  background-color: #ffffff; /* Pure white background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.tips-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4.5rem; /* Matches X spacing */
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.tips-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tips-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.tips-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.tips-content-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: stretch;
}

/* Left Column - Core Philosophy Card */
.tips-philosophy-card {
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.tips-philosophy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 100, 25, 0.06);
  border-color: rgba(242, 100, 25, 0.15);
}

.philosophy-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  background: rgba(242, 100, 25, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-pure);
  margin: 0;
}

.philosophy-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

/* Right Column - Tips Checklist */
.tips-list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tips-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tips-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tips-icon-wrapper {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(242, 100, 25, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: var(--transition-smooth);
}

.tips-item:hover .tips-icon-wrapper {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

.tips-icon-wrapper svg {
  width: 0.85rem;
  height: 0.85rem;
}

.tips-text {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-main);
  font-weight: 500;
}

/* Mobile Media Query for Cleaning Tips */
@media (max-width: 1024px) {
  .tips-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .tips-section {
    padding: 4.5rem 0;
  }

  .tips-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .tips-title {
    font-size: 2.2rem;
  }

  .tips-subtitle {
    font-size: 1rem;
  }

  .tips-philosophy-card {
    padding: 2rem;
  }

  .philosophy-title {
    font-size: 1.4rem;
  }

  .philosophy-text {
    font-size: 0.98rem;
  }

  .tips-checklist {
    gap: 1.25rem;
  }

  .tips-text {
    font-size: 0.96rem;
  }
}

/* Reviews Section */
.reviews-section {
  width: 100%;
  padding: 6.5rem 0;
  background-color: var(--bg-light); /* Alternate background (Alabaster) */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4.5rem; /* Matches X spacing */
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.reviews-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.reviews-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.review-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Orange border-top glowing highlight on card hover */
.review-card::before {
  content: "";
  height: 4px;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  transition: var(--transition-smooth);
  border-radius: 20px 20px 0 0;
}

.review-card:hover::before {
  width: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(242, 100, 25, 0.06);
  border-color: rgba(242, 100, 25, 0.15);
}

.review-top {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.review-avatar-placeholder {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #eae7df;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-pure);
  text-transform: uppercase;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-author {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-pure);
  line-height: 1.2;
}

.review-location {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.review-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
}

.star-rating {
  font-size: 1.1rem;
  color: #ffb800;
  letter-spacing: 2px;
  line-height: 1;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.verified-badge .check-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

/* Mobile Media Query for Reviews */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 4.5rem 0;
  }

  .reviews-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .reviews-title {
    font-size: 2.2rem;
  }

  .reviews-subtitle {
    font-size: 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .review-card {
    padding: 2rem;
  }
}

/* Special Offer Section */
.offer-section {
  width: 100%;
  padding: 6.5rem 0;
  background-color: #ffffff; /* Pure white background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.offer-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 3rem; /* Matches X spacing */
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.offer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.offer-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.offer-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: rgba(242, 100, 25, 0.15);
}

/* Accent borders for special bundles */
.offer-card.popular {
  border: 2.5px solid var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(242, 100, 25, 0.06);
}

.offer-card.popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(242, 100, 25, 0.12);
}

.offer-card.value {
  border: 2.5px solid var(--text-pure);
}

.offer-card.value:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

/* Card Header Badges */
.offer-badge-label {
  width: 100%;
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-pure);
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-badge-label.basic {
  color: var(--text-main);
}

.offer-badge-label.popular {
  background: var(--primary);
  color: #ffffff;
}

.offer-badge-label.value {
  background: var(--text-pure);
  color: #ffffff;
}

/* Bundle Card Image Wrapper */
.offer-img-wrapper {
  height: 220px;
  background: #ffffff; /* Matches white card body */
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.75rem; /* Balanced padding to let the image display larger */
}

.offer-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* Preserves aspect ratio without stretching or cropping */
  transition: transform 0.6s var(--transition-smooth);
}

.offer-card:hover .offer-img {
  transform: scale(1.06);
}

/* Card Content Body */
.offer-card-body {
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.offer-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-pure);
  margin: 0;
  text-align: center;
}

.offer-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.original-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1;
}

.offer-card.popular .current-price {
  color: var(--primary);
}

.price-suffix {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.total-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text-pure);
  font-size: 0.95rem;
}

.discount-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  background: #e0ded7;
  color: var(--text-pure);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.discount-badge.popular {
  background: rgba(242, 100, 25, 0.1);
  color: var(--primary);
}

.discount-badge.value {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-pure);
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
}

.check-bullet {
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}

.offer-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  background: var(--text-pure);
  color: #ffffff;
  margin-top: auto;
}

.offer-btn:hover {
  background: var(--text-main);
}

.offer-btn.popular {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(242, 100, 25, 0.3);
}

.offer-btn.popular:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(242, 100, 25, 0.4);
}

.offer-btn.value {
  background: var(--text-pure);
  color: #ffffff;
}

.offer-btn.value:hover {
  background: #000000;
}

/* Offer Footer Elements */
.offer-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 3rem;
}

.offer-note {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.offer-cta-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(242, 100, 25, 0.06);
  border: 1px dashed rgba(242, 100, 25, 0.25);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto;
}

.live-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  flex-shrink: 0;
  animation: ctaPulse 2s infinite;
}

.offer-warning {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(242, 100, 25, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 100, 25, 0);
  }
}
/* Tablet Media Query for Offers */
@media (max-width: 1200px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .offer-section {
    padding: 4.5rem 0;
  }

  .offer-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .offer-title {
    font-size: 2.2rem;
  }

  .offer-subtitle {
    font-size: 1rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offer-footer {
    padding-top: 2.25rem;
  }

  .offer-cta-bar {
    border-radius: 24px;
    padding: 0.85rem 1.25rem;
  }

  .offer-warning {
    font-size: 0.88rem;
    line-height: 1.4;
  }
}

/* Compatibility Section */
.fit-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: var(--bg-light); /* Alabaster alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.fit-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: center;
}

.fit-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.fit-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.fit-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.fit-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.fit-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.fit-type-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.fit-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  border-color: rgba(242, 100, 25, 0.12);
}

.fit-icon {
  font-size: 1.75rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.fit-type-card:hover .fit-icon {
  background: rgba(242, 100, 25, 0.06);
}

.fit-type-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-pure);
}

.fit-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
}

.fit-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.fit-image-wrapper:hover .fit-img {
  transform: scale(1.03);
}

/* Tablet Media Query for Fit Section */
@media (max-width: 1024px) {
  .fit-section {
    padding: 6.5rem 3rem;
  }

  .fit-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .fit-image-wrapper {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile Media Query for Fit Section */
@media (max-width: 768px) {
  .fit-section {
    padding: 4.5rem 1.5rem;
  }

  .fit-container {
    gap: 3rem;
  }

  .fit-title {
    font-size: 2.2rem;
  }

  .fit-description {
    font-size: 1rem;
  }

  .fit-types-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fit-type-card {
    padding: 1rem 1.25rem;
  }

  .fit-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
  }
}

/* Target Audience Section */
.audience-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: #ffffff; /* Pure white alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.audience-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr; /* Image on left, content on right */
  gap: 5.5rem;
  align-items: center;
}

.audience-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.audience-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.audience-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.audience-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 500;
  margin: 0;
}

.audience-checklist-box {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-pure);
  margin: 0;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text-main);
  font-weight: 500;
}

.list-check {
  color: #10b981;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.list-text {
  color: var(--text-main);
}

.audience-exclusion-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.exclusion-icon {
  font-size: 1rem;
  font-weight: bold;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #eae7df;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exclusion-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.audience-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
}

.audience-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.audience-image-wrapper:hover .audience-img {
  transform: scale(1.03);
}

/* Tablet Media Query for Target Audience Section */
@media (max-width: 1024px) {
  .audience-section {
    padding: 6.5rem 3rem;
  }

  .audience-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .audience-image-wrapper {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    order: 2; /* Put the image below the text on tablet/mobile */
  }

  .audience-content {
    order: 1;
  }
}

/* Mobile Media Query for Target Audience Section */
@media (max-width: 768px) {
  .audience-section {
    padding: 4.5rem 1.5rem;
  }

  .audience-container {
    gap: 3rem;
  }

  .audience-title {
    font-size: 2.2rem;
  }

  .audience-intro {
    font-size: 1.05rem;
  }

  .audience-checklist-box {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .exclusion-text {
    font-size: 0.88rem;
  }
}

/* Comparison Section */
.comparison-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: var(--bg-light); /* Alabaster alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.comparison-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.comparison-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  margin: 0 auto;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.comparison-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.comparison-table-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0; /* Prevents parent flexbox container from stretching to table size */
  background: #ffffff;
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: var(--font-sans);
  min-width: 850px; /* Ensures columns stay properly aligned with space to breathe */
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 1rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-pure);
  font-size: 1.1rem;
}

/* Align first column (feature name) left */
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--text-pure);
}

/* GrillWizz Column Highlight */
.comparison-table .col-highlight {
  background: rgba(242, 100, 25, 0.015);
  font-weight: 700;
}

.comparison-table th.col-highlight {
  color: var(--primary);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: rgba(242, 100, 25, 0.03);
}

.comparison-table tr:last-child td.col-highlight {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background: rgba(242, 100, 25, 0.03);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Badges */
.table-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.table-badge.yes {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.table-badge.no {
  background: rgba(242, 240, 235, 0.7);
  color: var(--text-muted);
  font-weight: 500;
}

.table-badge.no-bad {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.table-badge.medium {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.table-badge.limited {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

/* Footer Note */
.comparison-footer {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding-top: 1rem;
}

.comparison-note {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 500;
  margin: 0;
}

/* Tablet Media Query for Comparison */
@media (max-width: 1024px) {
  .comparison-section {
    padding: 6.5rem 3rem;
  }
}

/* Mobile Media Query for Comparison */
@media (max-width: 768px) {
  .comparison-section {
    padding: 4.5rem 1.5rem;
  }

  .comparison-title {
    font-size: 2.2rem;
  }

  .comparison-note {
    font-size: 1rem;
  }

  .comparison-table-wrapper {
    border-radius: 18px;
    padding: 0.5rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1.1rem 0.75rem;
    font-size: 0.9rem;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 1.25rem;
  }
}

/* Shipping Section */
.shipping-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: #ffffff; /* Pure white alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.shipping-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* Text on left, image on right */
  gap: 5.5rem;
  align-items: center;
}

.shipping-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.shipping-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.shipping-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.shipping-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.shipping-checklist-box {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shipping-checklist-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.3;
  margin: 0;
}

.shipping-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.shipping-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-main);
  font-weight: 600;
}

.shipping-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
}

.shipping-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.shipping-list-text {
  color: var(--text-main);
}

/* Warning Note Box */
.shipping-note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(242, 100, 25, 0.04);
  border: 1px solid rgba(242, 100, 25, 0.1);
  margin-top: 0.25rem;
}

.shipping-note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.shipping-alert-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.shipping-note-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-main);
  margin: 0;
}

/* Compatibility SVG icon style helper */
.icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.fit-type-card:hover .icon-svg {
  color: var(--primary-hover);
  transform: scale(1.1);
}

.shipping-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
}

.shipping-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.shipping-image-wrapper:hover .shipping-img {
  transform: scale(1.03);
}

/* Tablet Media Query for Shipping Section */
@media (max-width: 1024px) {
  .shipping-section {
    padding: 6.5rem 3rem;
  }

  .shipping-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .shipping-image-wrapper {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile Media Query for Shipping Section */
@media (max-width: 768px) {
  .shipping-section {
    padding: 4.5rem 1.5rem;
  }

  .shipping-container {
    gap: 3rem;
  }

  .shipping-title {
    font-size: 2.2rem;
  }

  .shipping-description {
    font-size: 1.05rem;
  }

  .shipping-checklist-box {
    padding: 1.5rem;
    border-radius: 16px;
  }
}

/* Guarantee Section */
.guarantee-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: var(--bg-light); /* Alabaster alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.guarantee-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr; /* Image/badge on left, text on right */
  gap: 5.5rem;
  align-items: center;
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.guarantee-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.guarantee-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 600;
  margin: 0;
}

.guarantee-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.guarantee-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.guarantee-callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.guarantee-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981; /* Green shield color */
}

.guarantee-callout-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-main);
  margin: 0;
}

.guarantee-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.06));
  transition: var(--transition-smooth);
}

.guarantee-image-wrapper:hover .guarantee-img {
  transform: scale(1.04) rotate(1deg);
}

/* Tablet Media Query for Guarantee Section */
@media (max-width: 1024px) {
  .guarantee-section {
    padding: 6.5rem 3rem;
  }

  .guarantee-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .guarantee-image-wrapper {
    order: 2; /* Put the badge below text on smaller screens */
  }

  .guarantee-content {
    order: 1;
  }
}

/* Mobile Media Query for Guarantee Section */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 4.5rem 1.5rem;
  }

  .guarantee-container {
    gap: 3rem;
  }

  .guarantee-title {
    font-size: 2.2rem;
  }

  .guarantee-lead {
    font-size: 1.05rem;
  }

  .guarantee-text {
    font-size: 0.98rem;
  }

  .guarantee-callout {
    padding: 1.25rem;
    border-radius: 16px;
  }
}

/* FAQ Section */
.faq-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: #ffffff; /* Pure white alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  margin: 0 auto;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.faq-item {
  background: var(--bg-light);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(242, 100, 25, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.02);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-pure);
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.faq-question {
  line-height: 1.4;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 2rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  font-family: var(--font-sans);
}

/* Expanded/Active State Styles */
.faq-item.active {
  background: #ffffff;
  border-color: rgba(242, 100, 25, 0.15);
  box-shadow: 0 12px 32px rgba(242, 100, 25, 0.05);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Tablet Media Query for FAQ Section */
@media (max-width: 1024px) {
  .faq-section {
    padding: 6.5rem 3rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Mobile Media Query for FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 4.5rem 1.5rem;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-trigger {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* Security Section */
.security-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: var(--bg-light); /* Alabaster alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.security-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* Text on left, placeholder image on right */
  gap: 5.5rem;
  align-items: center;
}

.security-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.security-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  margin: 0 auto;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.security-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.security-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

/* Warning alert box */
.security-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.15);
  margin-top: 0.25rem;
}

.security-warning-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.security-alert-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b; /* Amber yellow for warning */
}

.security-warning-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-main);
  margin: 0;
}

/* CTA elements */
.security-cta-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 600;
  margin: 0.5rem 0 0;
}

.security-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: fit-content;
  background: var(--primary);
  color: #ffffff;
  padding: 1.1rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(242, 100, 25, 0.25);
  transition: var(--transition-smooth);
}

.security-cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(242, 100, 25, 0.35);
}

.cta-arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition-smooth);
}

.security-cta-btn:hover .cta-arrow-icon {
  transform: translateX(4px);
}

/* Security Image Wrapper and Image */
.security-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
}

.security-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.security-image-wrapper:hover .security-img {
  transform: scale(1.03);
}

/* Tablet Media Query for Security Section */
@media (max-width: 1024px) {
  .security-section {
    padding: 6.5rem 3rem;
  }

  .security-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .security-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile Media Query for Security Section */
@media (max-width: 768px) {
  .security-section {
    padding: 4.5rem 1.5rem;
  }

  .security-container {
    gap: 3rem;
  }

  .security-title {
    font-size: 2.2rem;
  }

  .security-description,
  .security-cta-text {
    font-size: 1.05rem;
  }

  .security-warning-box {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .security-cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Contact Support Section */
.support-section {
  width: 100%;
  padding: 6.5rem 4.5rem; /* Matches X spacing */
  background-color: #ffffff; /* Pure white alternating background */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
}

.support-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr; /* Image on left, text on right */
  gap: 5.5rem;
  align-items: center;
}

/* Image styling matching shipping and security */
.support-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
}

.support-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.support-image-wrapper:hover .support-img {
  transform: scale(1.03);
}

.support-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.support-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  width: fit-content;
  background: rgba(242, 100, 25, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.support-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.support-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

/* Details list box */
.support-checklist-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 24px;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.support-checklist-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin: 0;
}

.support-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.support-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.support-check-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Footer links text */
.support-footer-links {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.support-inline-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(242, 100, 25, 0.15);
  transition: var(--transition-smooth);
  padding-bottom: 2px;
}

.support-inline-link:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-hover);
  background: rgba(242, 100, 25, 0.04);
  border-radius: 4px;
  padding-left: 4.5px;
  padding-right: 4.5px;
  margin-left: -4.5px;
  margin-right: -4.5px;
}

/* Tablet Media Query for Support Section */
@media (max-width: 1024px) {
  .support-section {
    padding: 6.5rem 3rem;
  }

  .support-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .support-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    order: 2; /* Image goes below text content on tablet/mobile */
  }

  .support-content {
    order: 1;
  }
}

/* Mobile Media Query for Support Section */
@media (max-width: 768px) {
  .support-section {
    padding: 4.5rem 1.5rem;
  }

  .support-container {
    gap: 3rem;
  }

  .support-title {
    font-size: 2.2rem;
  }

  .support-description,
  .support-footer-links {
    font-size: 1.05rem;
  }

  .support-checklist-box {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .support-checklist-item {
    font-size: 0.95rem;
  }
}

/* Footer Section */
.footer {
  width: 100%;
  padding: 6.5rem 4.5rem 3.5rem; /* Matches top and sides spacing */
  background-color: #111827; /* Premium Charcoal dark background */
  color: #9ca3af;
  position: relative;
  z-index: 5;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo-icon {
  width: 1.85rem;
  height: 1.85rem;
  color: var(--primary);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #9ca3af;
  margin: 0;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.footer-info-item {
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Footer Middle: Disclaimer */
.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0;
  margin-top: 4rem;
}

.footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
  text-align: justify;
}

/* Footer Bottom: Copyright & Last Updated */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.footer-copy {
  font-size: 0.9rem;
  color: #9ca3af;
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
}

.footer-updated-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-green-badge 2s infinite;
}

/* Glowing green badge animation */
@keyframes pulse-green-badge {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Tablet Media Query for Footer */
@media (max-width: 1024px) {
  .footer {
    padding: 5rem 3rem 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 600px;
  }

  .footer-middle {
    margin-top: 3rem;
  }
}

/* Mobile Media Query for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 4rem 1.5rem 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-middle {
    padding: 2rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    align-items: center;
  }
}

/* Sub-page (Legal / Informational) Styles */
.sub-page-hero {
  padding: 10rem 1.5rem 5rem;
  background: radial-gradient(circle at top right, var(--accent-light) 0%, rgba(250, 249, 246, 0) 50%), var(--bg-light);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}

.sub-page-hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

.sub-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--text-pure);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.sub-page-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.sub-page-body {
  padding: 5rem 1.5rem;
  background-color: #ffffff;
}

.sub-page-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.sub-page-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.sub-page-section {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.sub-page-section:first-of-type {
  margin-top: 0;
}

.sub-page-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  position: relative;
  letter-spacing: -0.5px;
}

.sub-page-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.sub-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .sub-page-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sub-page-hero {
    padding: 7.5rem 1.25rem 3.5rem;
  }
  
  .sub-page-title {
    font-size: 2.25rem;
  }
  
  .sub-page-body {
    padding: 3.5rem 1.25rem;
  }
}

.sub-page-card {
  background: var(--bg-light);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.sub-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.sub-page-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
}

.sub-page-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.sub-page-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.sub-page-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.sub-page-contact-label {
  font-weight: 600;
  color: var(--text-pure);
}

.sub-page-disclosure-box {
  background: var(--accent-light);
  border: 1px dashed var(--primary);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.sub-page-disclosure-box .sub-page-text:last-child {
  margin-bottom: 0;
}
