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

:root {
  --green: #92d050;
  --green-dark: #7ab842;
  --green-light: #a8e06a;
  --blue: #053D70;
  --blue-dark: #032a4f;
  --blue-light: #0a5a9e;
  --text: #666666;
  --text-dark: #333333;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #eef1f5;
  --border: #e0e4ea;
  --shadow-sm: 0 2px 8px rgba(5,61,112,0.06);
  --shadow-md: 0 4px 20px rgba(5,61,112,0.1);
  --shadow-lg: 0 8px 40px rgba(5,61,112,0.14);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-green {
  background: var(--green);
  color: var(--blue);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(146,208,80,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5,61,112,0.3);
}
.btn-cta {
  background: #053D70;
  color: white;
}
.btn-cta:hover {
  background: #032a4f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,61,112,0.4);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

h1, h2, h3, h4, h5 {
  color: var(--blue);
  font-weight: 800;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text);
  max-width: 620px;
  line-height: 1.7;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-left a, .topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.topbar-left a:hover { color: var(--green); }
.topbar-left svg { flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.topbar-right a:hover svg { fill: var(--green); stroke: var(--green); }
.topbar-right a:hover { transform: translateY(-1px); }

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  height: 52px;
  width: auto;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}
.logo-text span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--green-dark); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
}
.nav-phone i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--blue);
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(146,208,80,0.08) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.hero-content { color: var(--white); }
.hero h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span {
  color: var(--green);
}
.hero h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  aspect-ratio: 16/10;
  background: var(--blue-dark);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,61,112,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-video-overlay:hover { background: rgba(5,61,112,0.15); }
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 24px;
  box-shadow: 0 4px 30px rgba(146,208,80,0.5);
  transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero-badge i {
  color: var(--green);
  font-size: 16px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.trust-item i {
  font-size: 22px;
  color: var(--green);
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: var(--blue);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-md);
}
.about-text p {
  margin-bottom: 20px;
  font-size: 15px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: var(--transition);
}
.about-feature:hover {
  background: #edf7e0;
  transform: translateY(-2px);
}
.about-feature i {
  font-size: 20px;
  color: var(--green);
  margin-top: 2px;
}
.about-feature strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 2px;
}
.about-feature span {
  font-size: 13px;
  line-height: 1.5;
}

/* ========== SALE SECTION ========== */
.sale {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.sale::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(146,208,80,0.05);
}
.sale .section-label { color: var(--green); }
.sale .section-title { color: var(--white); }
.sale .section-subtitle { color: rgba(255,255,255,0.7); }

.sale-banner {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 48px;
}
.sale-products-wrap {
  position: relative;
  z-index: 2;
}
.sale-products {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.sale-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
.sale-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.sale-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e53e3e;
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
}
.sale-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
}
.sale-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.4s ease;
}
.sale-card:hover .sale-card-img img {
  transform: scale(1.04);
}
.sale-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sale-card-body h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--blue);
}
.sale-card-body .card-desc {
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.55;
}
.price-table-wrap {
  margin-bottom: 16px;
  flex: 1;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.price-table thead tr {
  background: var(--blue);
  color: white;
}
.price-table thead th {
  padding: 6px 8px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3px;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.price-table tbody tr:last-child {
  border-bottom: none;
}
.price-table tbody tr:nth-child(even) {
  background: var(--off-white);
}
.price-table td {
  padding: 5px 8px;
  vertical-align: middle;
}
.price-table .sz {
  font-weight: 600;
  color: var(--blue);
  width: 30%;
}
.price-table .pr-orig {
  color: #aaa;
  text-decoration: line-through;
  width: 35%;
  font-size: 12px;
}
.price-table .pr-sale {
  font-weight: 800;
  color: #c0392b;
  width: 35%;
  font-size: 13px;
}
.sale-card .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  font-size: 13px;
  margin-top: auto;
}
/* ========== CAROUSEL CONTROLS ========== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(5,61,112,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  color: var(--blue);
}
.carousel-arrow:hover {
  background: var(--green);
  color: var(--blue);
  box-shadow: 0 6px 20px rgba(146,208,80,0.4);
}
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-arrow svg { pointer-events: none; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--green);
  transform: scale(1.2);
}

/* ========== BRANDS ========== */
.brands {
  padding: 80px 0;
  background: var(--off-white);
}
.brands-header {
  text-align: center;
  margin-bottom: 48px;
}
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-name {
  font-size: 16px;
  font-weight: 700;
  color: #c8cdd4;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  cursor: default;
}
.brand-name:hover {
  color: #053D70;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(146, 208, 80, 0.18), transparent 28%),
    radial-gradient(circle at right center, rgba(5, 61, 112, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 61, 112, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 61, 112, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
  pointer-events: none;
}
.reviews .container {
  position: relative;
  z-index: 1;
}
.reviews-header {
  text-align: center;
  margin-bottom: 44px;
}
.reviews-note {
  font-size: 16px;
  color: #5f7184;
  margin: 0 auto 22px;
  max-width: 660px;
}
.reviews-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #64788e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.reviews-meta-pill i {
  font-size: 15px;
  color: #4285f4;
}
.reviews-meta-pill-soft {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(5, 61, 112, 0.08);
  box-shadow: 0 10px 24px rgba(5, 61, 112, 0.08);
  color: var(--blue);
}
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.reviews-rating .stars i { color: #f5a623; font-size: 20px; }
.reviews-rating span { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.reviews-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
  border-radius: 2%;
}
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.reviews-carousel-wrap {
  position: relative;
  padding: 0 34px;
  gap: 28px;
}
.review-card {
  flex: 0 0 calc((100% - 56px) / 3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(209, 222, 236, 0.9);
  border-radius: 24px;
  padding: 24px;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 18px 40px rgba(5, 61, 112, 0.08);
  min-height: 100%;
  scroll-snap-align: start;
}
.review-card:hover {
  border-color: rgba(146, 208, 80, 0.9);
  box-shadow: 0 24px 48px rgba(5, 61, 112, 0.14);
  transform: translateY(-6px);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.review-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.review-card-badge i {
  color: #4285f4;
}
.review-card-time {
  color: #728295;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.review-card-stars i { color: #f5a623; font-size: 14px; }
.review-card-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 0.7;
  color: rgba(5, 61, 112, 0.12);
  margin-bottom: 4px;
}
.review-card-copy {
  margin-bottom: 18px;
}
.review-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #42586f;
  margin-bottom: 0;
  font-style: italic;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.review-card.is-expanded .review-card-text {
  display: block;
  -webkit-line-clamp: unset;
}
.review-card-toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.review-card-toggle:hover {
  color: var(--blue-light);
}
.review-card-toggle:focus-visible {
  outline: 2px solid rgba(2, 121, 255, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(5, 61, 112, 0.08);
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eff4fb 0%, #dde7f4 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(5, 61, 112, 0.08);
}
.review-avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.review-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card-author strong {
  display: block;
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 3px;
}
.review-card-author strong a {
  color: inherit;
}
.review-card-author strong a:hover {
  color: var(--blue-light);
}
.review-card-author span {
  font-size: 12px;
  color: #6f8194;
  font-weight: 600;
}
.review-source {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  color: rgba(66, 133, 244, 0.08);
  pointer-events: none;
}
.review-card-empty {
  flex-basis: min(640px, 100%);
  margin: 0 auto;
}
.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.reviews-footer .btn {
  box-shadow: 0 16px 30px rgba(5, 61, 112, 0.16);
}
.reviews-dots .carousel-dot {
  background: rgba(5, 61, 112, 0.14);
}
.reviews-dots .carousel-dot.active {
  background: var(--blue);
}
.reviews-arrow {
  top: calc(50% - 18px);
}

/* ========== LOCATIONS ========== */
.locations {
  padding: 100px 0;
  background: var(--off-white);
}
.locations-header {
  text-align: center;
  margin-bottom: 48px;
}
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.location-map {
  min-height: 380px;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.location-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h4 {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}
.location-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.location-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.location-ctas .btn { padding: 10px 22px; font-size: 13px; }
.location-pflugerville {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ========== AREAS WE SERVE ========== */
.areas-serve { padding: 60px 0 0; }
.areas-serve-inner { text-align: center; }
.areas-serve .section-label { color: var(--green-dark); }
.areas-serve .section-title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.areas-serve p { font-size: 15px; color: var(--text); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.areas-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); font-size: 14px; font-weight: 500; color: var(--text-dark); transition: var(--transition); }
.area-tag:hover { border-color: var(--green); background: #edf7e0; }
.area-tag svg { flex-shrink: 0; }

/* ========== MATTRESS TYPES ========== */
.types {
  padding: 100px 0;
}
.types-header {
  text-align: center;
  margin-bottom: 48px;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.type-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.type-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.type-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f0f8e4, #e2f2cf);
  border: 1px solid rgba(146,208,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.type-card:hover .type-icon {
  background: linear-gradient(145deg, #e2f2cf, #d4edba);
  border-color: rgba(146,208,80,0.4);
  transform: scale(1.05);
}
.type-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.type-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

/* ========== SIZES ========== */
.sizes {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.sizes::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(146,208,80,0.06);
}
.sizes-header {
  text-align: center;
  margin-bottom: 48px;
}
.sizes .section-label { color: var(--green); }
.sizes .section-title { color: var(--white); }
.sizes .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.size-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 16px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.size-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--green);
  transform: translateY(-6px);
}
.size-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 110px;
  margin-bottom: 20px;
}
.size-visual svg {
  transition: var(--transition);
}
.size-card:hover .size-visual svg {
  transform: translateY(-4px);
}
.size-card h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 6px;
}
.size-card .size-dims {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.size-card .size-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--green);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question i {
  font-size: 14px;
  color: var(--green);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0;
  background: var(--blue-dark);
}
.cta-section .section-label {
  color: #92d050;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 32px;
}
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.cta-left p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}
.cta-form {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-form h3 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 10px;
}
.cta-form h3 + div {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #4d627d;
}
#cta #crmWebToEntityForm.zcwf_lblTopBottom {
  width: 100%;
  padding: 0;
  margin: 0;
  color: var(--text-dark);
  text-align: left;
}
#cta .cta-form .crmWebToEntityForm * {
  box-sizing: border-box;
  direction: ltr;
}
.cta-form .wf_customMessageBox {
  font-family: 'Inter', sans-serif;
  color: #132c14;
  background: #f5faf5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  max-width: none;
  width: 100%;
  word-break: break-word;
  z-index: 11000;
  border-radius: 6px;
  border: 1px solid #a9d3ab;
  min-width: 100px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.cta-form .wf_customCircle {
  position: relative;
  background-color: #12aa67;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  flex: none;
  margin-right: 7px;
}
.cta-form .wf_customCheckMark {
  position: absolute;
  transform: rotate(45deg) translate(-50%, -50%);
  left: 6px;
  top: 9px;
  height: 8px;
  width: 3px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
#cta .cta-form #webform6552347000013890127 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
  width: 100%;
}
#cta .cta-form .zcwf_row {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#cta .cta-form .zcwf_row.zcwf_half {
  flex: 0 0 calc(50% - 6px);
  width: calc(50% - 6px);
}
#cta .cta-form .zcwf_row.zcwf_full,
#cta .cta-form .zcwf_row.zcwf_actions {
  flex: 0 0 100%;
  width: 100%;
}
#cta .cta-form .zcwf_col_lab,
#cta .cta-form .zcwf_col_fld {
  display: block;
  width: 100%;
  float: none;
  padding: 0;
  margin: 0;
}
.cta-form .zcwf_col_lab {
  min-height: 20px;
  line-height: 1;
}
.cta-form .zcwf_col_lab label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.cta-form .zcwf_col_lab .req {
  color: #e53e3e;
}
#cta .cta-form .zcwf_row_language .zcwf_col_lab {
  display: flex;
  align-items: center;
  gap: 6px;
}
#cta .cta-form .zcwf_row_language .zcwf_col_lab label {
  margin: 0;
}
#cta .cta-form .zcwf_col_fld input[type=text],
#cta .cta-form .zcwf_col_fld input[type=password],
#cta .cta-form .zcwf_col_fld textarea,
#cta .cta-form .zcwf_col_fld_slt {
  display: block;
  width: 100%;
  max-width: none;
  padding: 9px 13px;
  border-radius: 12px;
  border: 1px solid #c9d6e5;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
  color: #16324f;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 1px 2px rgba(5,61,112,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
  outline: none;
}
.cta-form .zcwf_col_fld input[type=text],
.cta-form .zcwf_col_fld input[type=password],
.cta-form .zcwf_col_fld_slt {
  min-height: 42px;
}
.cta-form .zcwf_col_fld textarea {
  min-height: 92px;
  resize: vertical;
}
.cta-form .zcwf_col_fld input[type=text]:hover,
.cta-form .zcwf_col_fld input[type=password]:hover,
.cta-form .zcwf_col_fld textarea:hover,
.cta-form .zcwf_col_fld_slt:hover {
  border-color: #b7c9de;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}
.cta-form .zcwf_col_fld input[type=text]:focus,
.cta-form .zcwf_col_fld input[type=password]:focus,
.cta-form .zcwf_col_fld textarea:focus,
.cta-form .zcwf_col_fld_slt:focus {
  border-color: #4e98ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2,121,255,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
.cta-form .zcwf_col_fld textarea:focus {
  transform: translateY(-1px);
}
.cta-form .zcwf_col_fld_slt {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.25 5.5 7 9.25l3.75-3.75' stroke='%23053D70' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.cta-form .zcwf_col_help {
  margin-top: 0;
  font-size: 12px;
  line-height: 1;
  min-height: 0;
}
.cta-form .field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: #d92d20;
}
#cta .cta-form .zcwf_col_fld input[aria-invalid="true"],
#cta .cta-form .zcwf_col_fld textarea[aria-invalid="true"],
#cta .cta-form .zcwf_col_fld select[aria-invalid="true"] {
  border-color: #f97066;
  background: #fff7f6;
  box-shadow: 0 0 0 4px rgba(217,45,32,0.12);
}
#cta .cta-form .zcwf_row_language .zcwf_col_help {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  min-height: 0;
}
.cta-form .zcwf_help_icon {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #c7d6ea;
  color: #4e98ff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(5,61,112,0.08);
}
.cta-form .zcwf_tooltip_over {
  position: relative;
}
#cta .cta-form .zcwf_row_language .zcwf_tooltip_over {
  position: absolute;
  top: calc(100% + 6px);
  left: -4px;
  z-index: 5;
}
.cta-form .zcwf_tooltip_ctn {
  position: absolute;
  top: 3px;
  left: 24px;
  background: #dedede;
  color: #313949;
  padding: 3px 6px;
  border-radius: 4px;
  min-width: 100px;
  max-width: 150px;
  font-size: 12px;
  z-index: 100;
  word-break: break-word;
}
.cta-form .zcwf_privacy {
  padding: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
  border: 1px solid #cfdbeb;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.cta-form .zcwf_privacy_item {
  display: flex;
  align-items: flex-start;
}
.cta-form .zcwf_privacy_item + .zcwf_privacy_item {
  margin-top: 10px;
}
.cta-form .dIB {
  display: inline-block;
}
.cta-form .vaT {
  vertical-align: top;
}
.cta-form .w100_per {
  width: 100%;
}
.cta-form .displayPurpose {
  display: inline-block;
}
.cta-form .zcwf_privacy_txt {
  width: calc(100% - 32px);
  margin-left: 7px;
  font-size: 12px;
  line-height: 1.55;
  color: #4d627d;
}
.cta-form .zcwf_privacy_txt a {
  color: #0279ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-form input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  accent-color: #0279ff;
}
.cta-form .privacy-error {
  font-size: 12px;
  color: red;
  padding-left: 24px;
  padding-top: 6px;
  display: none;
}
.cta-form .wfrm_fld_dpNn,
.cta-form [hidden] {
  display: none !important;
}
#cta .cta-form .zcwf_actions .zcwf_col_fld {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2px;
}
.cta-form .zcwf_button {
  font-size: 14px;
  font-weight: 700;
  color: #313949;
  border: 1px solid #c0c6cc;
  padding: 11px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
  box-shadow: 0 1px 2px rgba(5,61,112,0.06);
}
.cta-form .formsubmit.zcwf_button {
  color: #fff !important;
  background: linear-gradient(0deg, #0279ff 0%, #00a3f3 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(2,121,255,0.28);
}
.cta-form .formsubmit.zcwf_button:hover {
  background: linear-gradient(0deg, #026de6 0%, #0095df 100%);
  transform: translateY(-1px);
}
.cta-form input[type=reset].zcwf_button:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e9f1fa 100%);
  border-color: #b9cadd;
}
.cta-form .cBoth:after,
.cta-form .zcwf_row:after,
.cta-form .zcwf_col_fld:after {
  content: '';
  display: block;
  clear: both;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  width: fit-content;
}
.footer-social a:not(:has(.footer-social-label)) {
  padding: 9px 13px;
}
.footer-social a i,
.footer-social a svg {
  font-size: 15px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-social-label {
  font-size: 13px;
  font-weight: 500;
}
.footer-social a:hover {
  background: var(--green);
  color: var(--blue);
  border-color: var(--green);
  transform: translateY(-2px);
}
.footer h5 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer ul a:hover { color: var(--green); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-item i {
  color: var(--green);
  margin-top: 3px;
  font-size: 14px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-video { max-width: 600px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .sale-card { flex: 0 0 calc((100% - 24px) / 2); }
  .reviews-carousel-wrap { padding: 0 28px; }
  .review-card { flex-basis: calc((100% - 28px) / 2); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .sizes-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar .container { height: 72px; }
  .logo { flex: 1 1 auto; min-width: 0; }
  .logo img {
    height: auto;
    max-height: 44px;
    max-width: 100%;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid { padding: 50px 0; gap: 40px; }
  .sale-card { flex: 0 0 90%; }
  .carousel-arrow.prev { left: -12px; }
  .carousel-arrow.next { right: -12px; }
  .reviews { padding: 78px 0; }
  .reviews-header { margin-bottom: 34px; }
  .reviews-note { font-size: 15px; margin-bottom: 18px; }
  .reviews-meta { gap: 10px; }
  .reviews-meta-pill {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }
  .reviews-carousel-wrap { padding: 0; }
  .reviews-grid { max-width: 500px; margin: 0 auto; padding-bottom: 12px; }
  .review-card { flex-basis: 100%; }
  .review-card { padding: 24px; border-radius: 20px; }
  .review-card-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .review-card-time { white-space: normal; }
  .review-card-text { font-size: 14px; }
  .reviews-arrow { display: none; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }
  .cta-layout { grid-template-columns: 1fr; }
  #cta .cta-form #webform6552347000013890127 { row-gap: 10px; }
  #cta .cta-form .zcwf_row.zcwf_half {
    flex-basis: 100%;
    width: 100%;
  }
  #cta .cta-form .zcwf_actions .zcwf_col_fld {
    flex-wrap: wrap;
    gap: 10px;
  }
  #cta .cta-form .zcwf_button {
    width: auto;
  }
  
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
