/* ========================================
   Fixcampus — Styles
   ======================================== */

@font-face {
  font-family: 'Circular';
  src: url('fonts/lineto-circular-book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular';
  src: url('fonts/lineto-circular-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular';
  src: url('fonts/lineto-circular-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular';
  src: url('fonts/lineto-circular-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --accent: #5A71B4;
  --accent-hover: #4a5f9e;
  --accent-light: #eef1f8;
  --orange: #5A71B4;

  --font-body: 'Circular', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Circular', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   Typography
   ======================================== */

.section__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.3s var(--ease-out);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 42px;
  width: auto;
}

.nav__center {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__center a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__center a:hover {
  color: var(--gray-900);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav__whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.nav__whatsapp:hover {
  background: #25d366;
  color: var(--white);
  transform: scale(1.1);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 20px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 1.5rem 2rem;
  z-index: 99;
  border-bottom: 1px solid var(--gray-200);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

/* ========================================
   Hero
   ======================================== */

.hero {
  margin-top: 64px;
  padding: 1rem 1rem 0;
}

/* Hero Video */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Gradient Overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 10, 30, 0.75) 0%, rgba(15, 25, 50, 0.6) 40%, rgba(10, 15, 35, 0.45) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.hero__wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
  width: 100%;
}

.hero__content {
  padding: 2rem 0;
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero__badge svg {
  color: #34c759;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__accent {
  color: var(--orange);
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* Hero Card */
.hero__card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.hero__card-sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 4.5rem;
}

/* Device Search */
.device-search {
  position: relative;
}

.device-search__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.device-search__icon {
  position: absolute;
  left: 0.875rem;
  color: var(--gray-400);
  pointer-events: none;
}

.device-search__input-wrap input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 2.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.device-search__input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.device-search__input-wrap input::placeholder {
  color: var(--gray-400);
}

.device-search__spinner {
  position: absolute;
  right: 0.875rem;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

.device-search__spinner.is-loading {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.device-search__results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  max-height: 280px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

.device-search__results.is-open {
  display: block;
}

.device-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.875rem;
  cursor: pointer;
  transition: background 0.15s;
}

.device-result:first-child {
  border-radius: 12px 12px 0 0;
}

.device-result:last-child {
  border-radius: 0 0 12px 12px;
}

.device-result:hover,
.device-result.is-active {
  background: var(--gray-50);
}

.device-result__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--gray-50);
  flex-shrink: 0;
}

.device-result__info {
  flex: 1;
  min-width: 0;
}

.device-result__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device-result__brand {
  font-size: 0.6875rem;
  color: var(--gray-400);
}

.device-result__type {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Selected Device Card */
.device-selected {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
}

.device-selected__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  flex-shrink: 0;
}

.device-selected__info {
  flex: 1;
  min-width: 0;
}

.device-selected__info strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.device-selected__info span {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.device-selected__clear {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: all 0.15s;
}

.device-selected__clear:hover {
  background: var(--gray-50);
  color: var(--gray-700);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  margin-top: 0.25rem;
}

.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
}

.btn--primary {
  background: var(--gray-900);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

/* Hero Card Rating */
.hero__card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.hero__google-g {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero__card-stars {
  display: flex;
  gap: 1px;
}

.hero__rating-text {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.hero__rating-text strong {
  color: var(--gray-700);
  font-weight: 700;
}

/* Hero Bottom Bar */
.hero__bottom-bar {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  text-align: center;
}

.hero__bottom-bar span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* ========================================
   Brands Strip
   ======================================== */

.brands {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.brands__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.brands__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  font-weight: 600;
}

.brands__track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands__logos {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: scroll-brands 25s linear infinite;
}

.brands__logos:hover {
  animation-play-state: paused;
}

.brand-logo {
  color: var(--gray-300);
  height: 22px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.3s;
}

.brand-logo svg {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.brand-logo:hover {
  color: var(--gray-500);
}

@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   Stats
   ======================================== */

.stats {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  display: block;
}

/* ========================================
   Services
   ======================================== */

.services {
  padding: 6rem 0;
}

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

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

/* Shimmer glow on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(90, 113, 180, 0.1),
    transparent 40%
  );
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(90, 113, 180, 0.1);
  border-color: rgba(90, 113, 180, 0.3);
}

.service-card--featured {
  background: var(--gray-900);
  border-color: var(--gray-800);
  color: var(--white);
}

.service-card--featured::before {
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
}

.service-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(90, 113, 180, 0.15);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 4px 16px rgba(90, 113, 180, 0.2);
  background: var(--accent-light);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.service-card--featured:hover .service-card__icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover .service-card__title {
  transform: translateX(4px);
}

.service-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.service-card--featured .service-card__text {
  color: var(--gray-400);
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__list li {
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding-left: 1rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.service-card:hover .service-card__list li {
  transform: translateX(6px);
}

.service-card:hover .service-card__list li:nth-child(1) { transition-delay: 0s; }
.service-card:hover .service-card__list li:nth-child(2) { transition-delay: 0.04s; }
.service-card:hover .service-card__list li:nth-child(3) { transition-delay: 0.08s; }
.service-card:hover .service-card__list li:nth-child(4) { transition-delay: 0.12s; }

.service-card--featured .service-card__list li {
  color: var(--gray-400);
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(1);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}

.service-card:hover .service-card__list li::before {
  transform: translateY(-50%) scale(1.5);
  background: var(--accent-hover);
}

/* ========================================
   About
   ======================================== */

.about {
  padding: 6rem 0;
  background: var(--gray-50);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.value {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.value__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.value strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.value p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.about__cta {
  display: inline-flex;
  text-decoration: none;
}

/* About Visual */
.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.about__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about__float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0,0,0,0.04);
}

.about__float-stars {
  display: flex;
  gap: 1px;
}

.about__float-card strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about__float-card span {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.about__float-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(90, 113, 180, 0.35);
}

.about__float-badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.about__float-badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ========================================
   Same Day Section
   ======================================== */

.sameday {
  position: relative;
  padding: 6rem 0 0;
  background: var(--gray-900);
  overflow: hidden;
}

.sameday__spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    600px circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(90, 113, 180, 0.12) 0%,
    rgba(90, 113, 180, 0.04) 30%,
    transparent 70%
  );
}

.sameday:hover .sameday__spotlight {
  opacity: 1;
}

.sameday__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(90,113,180,0.2), transparent),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(90,113,180,0.1), transparent);
  pointer-events: none;
}

.sameday__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.sameday__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.sameday__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90,113,180,0.15);
  color: #8da0d4;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.sameday__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.sameday__title-line {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
}

.sameday__title-accent {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  background: linear-gradient(135deg, #8da0d4, #c5d0ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sameday__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* Steps — horizontal cards */
.sameday__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sameday__step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}

.sameday__step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.sameday__step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sameday__step-connector {
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 1.5rem;
  height: 1px;
  background: rgba(255,255,255,0.1);
  top: 50%;
}

.sameday__step:last-child .sameday__step-connector {
  display: none;
}

.sameday__step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s var(--ease-out);
}

.sameday__step:hover .sameday__step-icon {
  transform: scale(1.1);
}

/* Lottie-style SVG path animations */
.sameday__lottie {
  overflow: visible;
}

.lottie-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: lottie-draw 1.2s ease-out forwards;
}

.lottie-delay-1 { animation-delay: 0s; }
.lottie-delay-2 { animation-delay: 0.25s; }
.lottie-delay-3 { animation-delay: 0.45s; }
.lottie-delay-4 { animation-delay: 0.55s; }
.lottie-delay-5 { animation-delay: 0.65s; }

@keyframes lottie-draw {
  to { stroke-dashoffset: 0; }
}

/* Steam wisps on coffee icon */
.lottie-steam {
  stroke-width: 1;
  animation: lottie-steam 2.5s ease-in-out infinite;
}

.lottie-steam-1 { animation-delay: 0.8s; }
.lottie-steam-2 { animation-delay: 1.4s; }

@keyframes lottie-steam {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 0.6; }
  60%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-6px); }
}

/* Spinning gear on wrench icon */
.lottie-gear {
  animation: lottie-gear-spin 3s linear infinite;
  animation-delay: 1s;
  transform-origin: 17px 7px;
}

@keyframes lottie-gear-spin {
  0%   { opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { opacity: 0; transform: rotate(360deg); }
}

/* Pulse ring on checkmark icon */
.sameday__step-icon--3 .lottie-path.lottie-delay-1 {
  animation: lottie-draw 1.2s ease-out forwards, lottie-pulse 2.5s ease-in-out 1.5s infinite;
}

@keyframes lottie-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: 0.8; }
}

.sameday__step-icon--1 {
  background: rgba(90,113,180,0.15);
  color: #8da0d4;
}

.sameday__step-icon--2 {
  background: rgba(251,191,36,0.12);
  color: #fbbf24;
}

.sameday__step-icon--3 {
  background: rgba(52,199,89,0.12);
  color: #34c759;
}

.sameday__step-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.sameday__step-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* CTA */
.sameday__cta {
  text-align: center;
  margin-bottom: 4rem;
}

.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--gray-900);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Photo Gallery Strip */
.sameday__gallery {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  padding-bottom: 6rem;
}

.sameday__gallery-track {
  display: flex;
  gap: 1.25rem;
  animation: gallery-scroll 30s linear infinite;
  width: max-content;
}

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

.sameday__gallery-img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.sameday__gallery-img:hover {
  transform: scale(1.04);
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-320px * 5 - 1.25rem * 5)); }
}

/* ========================================
   Reviews
   ======================================== */

.reviews {
  padding: 6rem 0;
  background: var(--gray-50);
}

/* Google Score Banner */
.reviews__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.reviews__banner-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.reviews__google-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 12px;
  flex-shrink: 0;
}

.reviews__banner-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviews__banner-score {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.reviews__banner-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.reviews__banner-stars {
  display: flex;
  gap: 2px;
}

.reviews__banner-count {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.reviews__banner-count strong {
  color: var(--gray-600);
}

/* Rating Distribution Bars */
.reviews__banner-bars {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 180px;
}

.reviews__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
}

.reviews__bar span {
  width: 12px;
  text-align: center;
}

.reviews__bar-track {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.reviews__bar-fill {
  height: 100%;
  background: #fbbf24;
  border-radius: 3px;
  transition: width 0.6s var(--ease-out);
}

/* Review Cards Grid */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.35s var(--ease-out);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.review-card__date {
  display: block;
  font-size: 0.6875rem;
  color: var(--gray-400);
  margin-top: 1px;
}

.review-card__google {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

.review-card__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.625rem;
}

.review-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* Grid transition */
.reviews__grid {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Pagination */
.reviews__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.reviews__page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  font-family: inherit;
}

.reviews__page-btn:hover:not(.is-disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.reviews__page-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.reviews__page-arrow {
  width: 36px;
  height: 36px;
}

.reviews__page-arrow.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* CTA Link */
.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: var(--accent-light);
  transition: all 0.3s var(--ease-out);
}

.reviews__link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* ========================================
   Contact
   ======================================== */

.contact {
  padding: 6rem 0;
  background: var(--gray-50);
}

.contact__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.contact__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* Quick action bar */
.contact__actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact__action {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contact__action::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 16px;
}

.contact__action:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact__action:hover::before {
  opacity: 1;
}

.contact__action--wa::before { background: linear-gradient(135deg, rgba(37,211,102,0.06), transparent); }
.contact__action--phone::before { background: linear-gradient(135deg, rgba(90,113,180,0.06), transparent); }
.contact__action--email::before { background: linear-gradient(135deg, rgba(251,191,36,0.06), transparent); }
.contact__action--map::before { background: linear-gradient(135deg, rgba(234,67,53,0.06), transparent); }

.contact__action--wa svg { color: #25d366; }
.contact__action--phone svg { color: var(--accent); }
.contact__action--email svg { color: #f59e0b; }
.contact__action--map svg { color: #EA4335; }

.contact__action svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: var(--gray-50);
}

.contact__action--wa svg { background: rgba(37,211,102,0.1); }
.contact__action--phone svg { background: var(--accent-light); }
.contact__action--email svg { background: rgba(251,191,36,0.08); }
.contact__action--map svg { background: rgba(234,67,53,0.08); }

.contact__action strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.contact__action span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 1px;
}

/* Main grid */
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Form card */
.contact__form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cform__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cform__group--full {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.cform__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cform__input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.cform__input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(90, 113, 180, 0.1);
}

.cform__input::placeholder {
  color: var(--gray-300);
}

.cform__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.cform__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Repair-specific fields */
.cform__repair-fields {
  animation: cform-slide-in 0.35s var(--ease-out);
}

@keyframes cform-slide-in {
  from { opacity: 0; transform: translateY(-8px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 300px; }
}

.cform__group--full.device-search {
  position: relative;
}

.cform__device-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  z-index: 20;
  max-height: 240px;
  overflow-y: auto;
  display: none;
}

.cform__device-results.is-open {
  display: block;
}

.cform__device-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--accent-light);
  border: 1.5px solid rgba(90,113,180,0.2);
  border-radius: 12px;
  margin-top: 0.5rem;
}

.cform__device-info strong {
  font-size: 0.875rem;
  color: var(--gray-900);
}

.cform__device-info span {
  font-size: 0.75rem;
  color: var(--accent);
  margin-left: 0.5rem;
}

.cform__device-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}

.cform__device-clear:hover {
  background: rgba(0,0,0,0.05);
  color: var(--gray-700);
}

/* Submit button */
.cform__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 0.5rem;
}

.cform__submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 113, 180, 0.3);
}

.cform__submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Success state */
.cform__success {
  text-align: center;
  padding: 3rem 1rem;
  animation: cform-success-in 0.5s var(--ease-out);
}

.cform__success-icon {
  margin-bottom: 1rem;
}

.cform__success strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.cform__success p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

@keyframes cform-success-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Sidebar */
.contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Location card */
.contact__location {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 1.5rem;
}

.contact__location-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.contact__location-header strong {
  font-size: 0.9375rem;
}

.contact__location-addr {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact__map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.contact__map-wrap iframe {
  display: block;
}

/* Hours */
.contact__hours {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
}

.hours__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hours__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours__icon {
  color: var(--accent);
}

.contact__hours-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.hours__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.hours__badge--open {
  background: rgba(52, 199, 89, 0.1);
  color: #22c55e;
}

.hours__badge--open::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: badge-pulse 2s ease-in-out infinite;
}

.hours__badge--closed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.hours__badge--closed::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  transition: background 0.2s ease;
}

.hours-row:hover {
  background: var(--gray-50);
}

.hours-row.is-today {
  background: var(--accent-light);
}

.hours-row__day {
  width: 24px;
  font-weight: 700;
  color: var(--gray-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hours-row.is-today .hours-row__day {
  color: var(--accent);
}

.hours-row__bar {
  flex: 1;
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hours-row.is-today .hours-row__bar {
  background: rgba(90, 113, 180, 0.15);
}

.hours-row.is-today .hours-row__bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress, 0%);
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.hours-row__time {
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  font-size: 0.8125rem;
}

.hours-row--closed .hours-row__time {
  color: var(--gray-400);
  font-weight: 500;
}

.hours-row--closed .hours-row__bar {
  background: var(--gray-100);
  opacity: 0.5;
}

.contact__route-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gray-900);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  width: 100%;
  justify-content: center;
}

.contact__route-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 113, 180, 0.3);
}

/* ========================================
   Footer
   ======================================== */

/* WhatsApp Floating Widget */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.875rem 1.25rem 0.875rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s var(--ease-out);
  animation: wa-widget-in 0.6s var(--ease-out) 1s both;
}

.wa-widget:hover {
  background: #1ebe5a;
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 3px 8px rgba(0,0,0,0.12);
}

.wa-widget__icon {
  flex-shrink: 0;
  animation: wa-icon-bounce 2s ease-in-out 2s 3;
}

.wa-widget__label {
  white-space: nowrap;
}

@keyframes wa-widget-in {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wa-icon-bounce {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-12deg); }
  30% { transform: rotate(10deg); }
  45% { transform: rotate(-8deg); }
  60% { transform: rotate(0deg); }
}

@media (max-width: 480px) {
  .wa-widget__label { display: none; }
  .wa-widget {
    width: 56px;
    height: 56px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-100);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--gray-500);
  transition: all 0.2s;
  background: var(--gray-50);
}

.footer__social a:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.footer__credit {
  margin-top: 0 !important;
  font-size: 0.75rem !important;
  color: var(--gray-300) !important;
}

.footer__credit a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer__credit a:hover {
  color: var(--gray-600);
}

/* ========================================
   Responsive
   ======================================== */

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

  .hero__inner {
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    padding: 3rem 2rem 0;
  }
}

@media (max-width: 768px) {
  .nav__center,
  .nav__right {
    display: none;
  }

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

  .sameday__step-connector {
    display: none;
  }

  .sameday__step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    padding: 1.25rem;
    gap: 0 1rem;
  }

  .sameday__step-icon {
    grid-row: 1 / 3;
    margin: 0;
    width: 52px;
    height: 52px;
  }

  .sameday__step-num {
    left: 1.25rem;
    transform: none;
  }

  .sameday__gallery-img {
    width: 240px;
    height: 170px;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 0.5rem 0.5rem 0;
  }

  .hero__wrapper {
    border-radius: 12px;
  }

  .hero__bg,
  .hero__bg::before {
    border-radius: 12px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem 0;
  }

  .hero__card {
    max-width: 100%;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .brand-logo {
    height: 18px;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 1.5rem;
  }

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

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

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

  .about__img {
    height: 360px;
  }

  .about__float-card {
    right: 12px;
    bottom: -16px;
  }

  .about__float-badge {
    right: 12px;
    top: 16px;
  }

  .reviews__banner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .reviews__banner-left {
    flex-direction: column;
    gap: 0.75rem;
  }

  .reviews__banner-bars {
    min-width: unset;
    width: 100%;
    max-width: 240px;
  }

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

  .contact__actions {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__badge {
    font-size: 0.75rem;
  }
}

/* ========================================
   Scroll Animations
   ======================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
