:root {
  --color-primary: #1e3a5f;
  --color-primary-dark: #0f2440;
  --color-primary-light: #2a5a8f;
  --color-secondary: #0a1628;
  --color-accent: #e63946;
  --color-accent-dark: #c1121f;
  --color-blue: #2563eb;
  --color-blue-light: #3b82f6;
  --color-blue-dark: #1d4ed8;
  --color-success: #059669;
  --color-warning: #d97706;
  --color-error: #dc2626;
  --color-white: #ffffff;
  --color-off-white: #f8fafc;
  --color-light: #f1f5f9;
  --color-gray-100: #e2e8f0;
  --color-gray-200: #cbd5e1;
  --color-gray-300: #94a3b8;
  --color-gray-400: #64748b;
  --color-gray-500: #475569;
  --color-gray-600: #334155;
  --color-text: #1e293b;
  --color-text-light: #475569;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1da851;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-blue-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--light {
  background-color: var(--color-off-white);
}

.section--dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.section--dark .section-header p {
  color: var(--color-gray-200);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.section--dark .section-label {
  color: var(--color-blue-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}

.btn--whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  padding: 12px 26px;
}

.btn--outline:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn--white:hover {
  background-color: var(--color-off-white);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-secondary);
  height: var(--header-height);
  transition: box-shadow var(--transition-base);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo {
  height: 44px;
  width: auto;
  max-height: 44px;
}

.header__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  display: none;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.header__nav a {
  padding: 8px 16px;
  color: var(--color-gray-200);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta {
  display: none;
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-secondary);
  z-index: 999;
  padding: 96px 24px 40px;
  transition: right var(--transition-slow);
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: var(--color-gray-200);
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -0.5%); }
  100% { transform: scale(1.04) translate(0.5%, -1%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(10, 22, 40, 0.5) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}

.hero__content h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__content p {
  color: var(--color-gray-200);
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stars {
  display: flex;
  gap: 2px;
  color: #facc15;
}

.hero__rating-text {
  color: var(--color-gray-200);
  font-size: 0.875rem;
}

/* ===== CARDS ===== */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-100);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-blue);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.card__link:hover {
  gap: 10px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* ===== ABOUT / SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.split__content h2 {
  margin-bottom: 20px;
}

.split__content p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  padding: 20px;
  background-color: var(--color-light);
  border-radius: var(--radius-md);
}

.stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  position: relative;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: #facc15;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* ===== WHY CHOOSE US ===== */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-light);
}

.feature-item__icon svg {
  width: 20px;
  height: 20px;
}

.feature-item h4 {
  color: var(--color-white);
  margin-bottom: 6px;
  font-size: 1.0625rem;
}

.feature-item p {
  color: var(--color-gray-300);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  background-color: var(--color-white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  transition: background-color var(--transition-fast);
}

.faq-item__question:hover {
  background-color: var(--color-off-white);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  transition: transform var(--transition-base);
  color: var(--color-blue);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-dark) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 2rem;
}

.cta-banner p {
  color: var(--color-gray-200);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-privacy {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 12px;
  line-height: 1.5;
}

.form-message {
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  display: none;
  font-weight: 500;
}

.form-message--success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}

.form-message--error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  background-color: var(--color-off-white);
  border-bottom: 1px solid var(--color-gray-100);
  margin-top: var(--header-height);
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__list li:not(:last-child)::after {
  content: '/';
  color: var(--color-gray-300);
}

.breadcrumb__list a {
  color: var(--color-text-light);
}

.breadcrumb__list a:hover {
  color: var(--color-blue);
}

.breadcrumb__list li:last-child {
  color: var(--color-text);
  font-weight: 500;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background-color: var(--color-secondary);
  padding: 60px 0;
  margin-top: var(--header-height);
}

.page-header--with-breadcrumb {
  margin-top: 0;
}

.page-header h1 {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--color-gray-200);
  font-size: 1.125rem;
  max-width: 640px;
  line-height: 1.7;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--color-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info__value {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.contact-info__value a {
  color: var(--color-text);
}

.contact-info__value a:hover {
  color: var(--color-blue);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-secondary);
  color: var(--color-gray-300);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-gray-300);
}

.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--color-gray-300);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  align-items: flex-start;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  color: var(--color-blue-light);
}

.footer__contact-item a {
  color: var(--color-gray-300);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer__bottom a {
  color: var(--color-gray-300);
}

.footer__bottom a:hover {
  color: var(--color-white);
}

.footer__legal {
  display: flex;
  gap: 16px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__number {
  counter-increment: step;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ===== OPENING HOURS ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-gray-100);
}

.hours-table td {
  padding: 12px 0;
  font-size: 0.9375rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== SERVICE PAGE ===== */
.service-sidebar {
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.service-sidebar h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.service-sidebar .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.service-sidebar .btn:last-child {
  margin-bottom: 0;
}

.content-body h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-body p {
  line-height: 1.75;
  color: var(--color-text-light);
}

.content-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-body ul li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ===== LEGAL PAGES ===== */
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.legal-content p {
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ===== FAQ PAGE ===== */
.faq-group {
  margin-bottom: 40px;
}

.faq-group h3 {
  margin-bottom: 20px;
  font-size: 1.375rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-blue);
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

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

  .hero__content h1 { font-size: 3rem; }
  h1 { font-size: 2.75rem; }

  .features-list { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }

  .header__name { display: block; }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__burger { display: none; }

  .hero__content h1 { font-size: 3.25rem; }
  h1 { font-size: 3rem; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
  }
}

@media (min-width: 1280px) {
  .container { padding: 0 32px; }
}
