/*
Theme Name: Alexa's New Cleaning Solutions LLC |Premium Commercial & Residential Cleaning in Philadelphia, PA
Theme URI: https://produx.cloud
Author: Produx Cloud
Author URI: https://produx.cloud
Description: We Don't Just Clean, We Elevate Your Space. Alexa's New Cleaning Solutions LLC offers premium commercial & residential cleaning in Philadelphia, PA. Trusted staff, eco-friendly products, 100% satisfaction guaranteed. Call (267) 776-3300 for a free estimate.
Version: 1.0.147
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alexa
Tags: cleaning, business, responsive, professional
Copyright: 2026 Produx Cloud

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

:root {
  --navy: #122330;
  --navy-dark: #0d1a24;
  --navy-darker: #091118;
  --red: #912917;
  --red-hover: #a83320;
  --yellow: #D7AA5B;
  --yellow-bright: #E6CA93;
  --white: #FFFFFF;
  --gray-50: #F7F4EE;
  --gray-100: #f1ede6;
  --gray-200: #D9D5CC;
  --gray-300: #c4c0b8;
  --gray-400: #94908a;
  --gray-500: #6b6862;
  --gray-600: #4A4A48;
  --gray-700: #4A4A48;
  --gray-800: #2a2a28;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
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; }
.text-yellow { color: var(--yellow-bright); }

.promo-bar {
  background: var(--yellow-bright);
  color: #000;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}
.promo-bar a { color: #000; font-weight: 700; text-decoration: underline; white-space: nowrap; }
.promo-bar strong { color: var(--red); }
.promo-bar { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.navbar__logo img { height: 48px; width: auto; }
.navbar__menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar__link:hover { color: var(--navy); background: var(--gray-100); }
.navbar__link--active {
  color: var(--navy) !important;
  background: var(--yellow) !important;
  font-weight: 600;
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.navbar__phone:hover { color: var(--navy); }
.navbar__cta {
  padding: 8px 22px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar__cta:hover { background: var(--yellow-bright); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.navbar__burger span {
  width: 22px; height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.2s;
}
.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 53, 0.75);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 100px 24px 80px;
  box-sizing: border-box;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,0,0,0.3); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--navy); }
.btn--yellow { background: var(--yellow-bright); color: #000; border-color: var(--yellow-bright); }
.btn--yellow:hover { background: #e6ad00; }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

.trust-bar {
  padding: 28px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-bar__logos {
  display: flex;
  gap: 32px;
  align-items: center;
}
.trust-bar__logos img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.trust-bar__logos img:hover { opacity: 1; filter: grayscale(0); }
.trust-bar__badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.trust-badge {
  padding: 6px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.checks-bar {
  padding: 14px 0;
  background: var(--red);
  color: var(--white);
}
.checks-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.checks-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature-grid__text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}
.feature-grid__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.feature-grid__img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.feature-grid__img > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.feature-grid__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
}
.feature-grid__badge-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.feature-grid__badge-text {
  font-size: 0.7rem;
  opacity: 0.8;
}

.section__badge {
  display: inline-block;
  background: rgba(139,0,0,0.08);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.cta-overlay {
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-overlay__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay__dim {
  position: absolute;
  inset: 0;
  background: rgba(30,58,95,0.88);
}
.cta-overlay__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-overlay h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-overlay p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 28px;
}
.cta-overlay__highlight {
  display: inline-block;
  background: var(--red);
  padding: 2px 12px;
  border-radius: 8px;
}
.cta-overlay__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.testimonial-card__stars {
  color: #facc15;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-card__author {
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__author strong {
  font-size: 0.92rem;
  color: var(--navy);
}
.testimonial-card__author span {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.testimonial-card__location {
  font-size: 0.78rem !important;
  color: var(--red) !important;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,0,0,0.06);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,58,95,0.25); }

.stats-section {
  padding: 50px 0;
  background: var(--navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--yellow-bright);
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-layout__text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-layout__img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-layout__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.promise-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--red) 0%, #6b0000 100%);
  color: var(--white);
}
.promise-section__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.promise-section__icon {
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 0 auto 24px;
  color: var(--yellow-bright);
}
.promise-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.promise-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(30,58,95,0.08);
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--red);
}
.faq-item summary:hover { background: var(--gray-50); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section { padding: 80px 0; }
.section--alt { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }

.section__header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section__header--light .section__title { color: var(--white); }
.section__header--light .section__subtitle { color: rgba(255,255,255,0.6); }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: transparent;
}
.service-card__img {
  height: 200px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 24px; }
.service-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card__body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.5;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature { text-align: center; }
.feature__icon {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow-bright);
}
.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.step__number {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 18px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
}
.area-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow-bright);
}
.area-card ul { display: flex; flex-direction: column; gap: 8px; }
.area-card a {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  transition: all 0.2s;
}
.area-card a:hover { color: var(--red); text-decoration: underline; }

.cta-section {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 53, 0.82);
  z-index: 1;
}
.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb {
  padding: 14px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.82rem;
  color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.service-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}
.service-page__intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin-bottom: 32px;
}
.service-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
}
.service-page__cta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--red);
  font-weight: 800;
}
.check-list a { color: var(--navy); font-weight: 600; }
.check-list a:hover { text-decoration: underline; }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
}
.tag--link { transition: all 0.2s; }
.tag--link:hover { border-color: var(--navy); color: var(--navy); background: rgba(30,58,95,0.05); }

.section--contact-hero {
  padding: 50px 0 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darker) 100%);
  color: var(--white);
}
.section--contact-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.section--contact-hero p { font-size: 1rem; opacity: 0.75; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--gray-800);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group textarea { resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px;
}
.contact-info__card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-info__value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-info__value:hover { text-decoration: underline; }
.contact-info__card p { font-size: 0.88rem; color: var(--gray-600); }

.cta-banner { padding: 60px 0; background: var(--red); color: var(--white); }
.cta-banner__inner { text-align: center; }
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-banner p { font-size: 1rem; opacity: 0.85; margin-bottom: 24px; }
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid--sm { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 26px 22px;
  transition: all 0.2s;
}
.card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(30,58,95,0.1); transform: translateY(-2px); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 12px; }
.card--sm { padding: 18px 16px; text-align: center; }
.card--sm h3 { margin-bottom: 0; font-size: 0.92rem; }

.footer {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 20px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo-img { max-width: 160px; margin-bottom: 14px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.6; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 0.88rem; transition: all 0.2s; }
.footer__col a:hover { color: var(--yellow-bright); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.4;
}

.hero-premium-gif {
  margin-bottom: 32px;
}
.hero-premium-gif img {
  max-width: min(500px, 80%);
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(215,170,91,0.5));
}

.time-back-section {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.seals-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.seal-item {
  opacity: 0;
  transform: scale(0.8) rotateY(180deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.seal-item.visible {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}
.seal-item:hover {
  transform: scale(1.1) rotateZ(5deg);
}
.seal-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: all 0.4s ease;
}
.seal-item:hover img {
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25)) brightness(1.05);
}
.time-back-subtitle {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  margin-top: 10px;
}
.time-back-subtitle span {
  color: var(--yellow);
}

@media (max-width: 968px) {
  .navbar__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 200;
    gap: 0;
  }
  .navbar__menu.active { right: 0; }
  .navbar__menu li { border-bottom: 1px solid var(--gray-100); }
  .navbar__link { display: block; padding: 14px 0; border-radius: 0; }
  .navbar__burger { display: flex; z-index: 201; }
  .navbar__right { gap: 8px; }
  .navbar__phone { font-size: 0; gap: 0; padding: 8px; }
  .navbar__phone svg { width: 20px; height: 20px; }
  .navbar__cta { font-size: 0.8rem; padding: 8px 14px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .time-back-section { padding: 60px 0; }
  .seals-wrapper { gap: 20px; }
  .seal-item img { width: 120px; height: 120px; }
  .time-back-subtitle { font-size: 1.2rem; padding: 0 20px; }
  .cta-overlay h2 { font-size: 1.5rem; }
  .cta-overlay p { font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .promo-bar { font-size: 0.75rem; white-space: normal; padding: 6px 12px; }
  .navbar__inner { height: 56px; gap: 12px; }
  .navbar__logo img { height: 38px; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 1.6rem; }
  .hero__content { padding: 80px 20px 50px; }
  .hero__sub { font-size: 0.9rem; max-width: 100%; }
  .hero-premium-gif { margin-bottom: 20px; }
  .hero-premium-gif img { max-width: 65%; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .trust-bar { padding: 16px 0; }
  .trust-bar .container { flex-direction: column; gap: 8px; }
  .trust-bar__badges { justify-content: center; gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 4px 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout__img img { height: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-overlay { padding: 50px 0; }
  .cta-overlay__actions { flex-direction: column; align-items: center; }
  .cta-overlay__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .feature-grid__badge { display: none; }
  .feature-grid__actions { flex-direction: column; }
  .feature-grid__actions .btn { width: 100%; justify-content: center; }
  .checks-bar__inner { gap: 8px 16px; }
  .checks-bar__item { font-size: 0.78rem; }
  .section { padding: 50px 0; }
  .section__header { margin-bottom: 32px; }
  .section__title { font-size: 1.4rem; }
  .tag { font-size: 0.75rem; padding: 4px 10px; }
  .faq-item summary { padding: 14px 16px; font-size: 0.9rem; }
  .faq-item p { padding: 0 16px 16px; font-size: 0.85rem; }
  .seals-wrapper { gap: 12px; }
  .seal-item img { width: 80px; height: 80px; }
  .time-back-subtitle { font-size: 1rem; padding: 0 16px; }
  .time-back-section { padding: 40px 0; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .service-page__cta { flex-direction: column; }
  .service-page__cta .btn { width: 100%; justify-content: center; }
}
