:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: #050507;
  color: #f3f4f6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top, rgba(0, 71, 196, 0.2), transparent 40%),
    radial-gradient(circle at bottom right, rgba(208, 1, 27, 0.16), transparent 30%),
    #050507;
  overflow-x: hidden;
  min-height: 100vh;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal.hidden {
  display: none;
  opacity: 0;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: rgba(10, 12, 18, 0.98);
  border: 1px solid rgba(79, 156, 255, 0.25);
  border-radius: 28px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(79, 156, 255, 0.15);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #4f9cff;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 28px;
}

.modal-message {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
}

.modal-message span {
  color: #4f9cff;
  font-weight: 700;
}

.modal-info p {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-weight: 600;
}

.modal-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(79, 156, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 11, 20, 0.94), rgba(4, 6, 10, 0.98));
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 71, 196, 0.14), inset 0 1px 0 rgba(79, 156, 255, 0.12);
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  line-height: 1.05;
  background: linear-gradient(135deg, #7cbfff, #ff86c0);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-tagline,
.brand-subtext {
  margin: 4px 0 0;
}

.phone-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 65, 196, 0.16);
}

.phone-link strong {
  color: #7ecbff;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d0011b, #ff1f3a);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(208, 1, 27, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(208, 1, 27, 0.3);
  }
  50% {
    box-shadow: 0 4px 24px rgba(208, 1, 27, 0.5);
  }
}

main {
  margin-top: 32px;
  display: grid;
  gap: 40px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.96), rgba(7, 8, 12, 0.95));
  border: 1px solid rgba(79, 156, 255, 0.16);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(79, 156, 255, 0.25), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(255, 31, 78, 0.18), transparent 14%);
  opacity: 0.9;
  animation: glowSpot 12s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 28%;
  left: -30%;
  width: 65%;
  height: 160px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  transform: rotate(20deg);
  pointer-events: none;
  animation: shimmerLine 4.5s ease-in-out infinite;
}

.hero-copy {
  max-width: 600px;
  animation: fadeInUp 0.8s ease both;
}

.hero-image {
  animation: fadeIn 1s ease both 0.3s;
  display: grid;
  gap: 24px;
  width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.varta-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 25, 50, 0.98), rgba(14, 31, 60, 0.96));
  border: 1px solid rgba(79, 156, 255, 0.22);
  box-shadow: 0 28px 60px rgba(0, 54, 130, 0.22);
  overflow: hidden;
}

.varta-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(79, 156, 255, 0.18);
  filter: blur(18px);
}

.varta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #8cd2ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.varta-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.05;
  color: #ffffff;
}

.varta-card p {
  margin: 0 0 22px;
  color: #d3e6ff;
  line-height: 1.75;
}

.varta-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.varta-stats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c3dbff;
  font-size: 0.95rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: #4f9cff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.95s ease both;
}

.hero p {
  max-width: 100%;
  line-height: 1.78;
  margin: 22px 0 0;
  color: #dce6f5;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0041c4, #0066ff);
  box-shadow: 0 18px 36px rgba(0, 65, 196, 0.25);
  animation: pulseBtn 4s ease-in-out infinite;
}

.btn-secondary {
  color: #e8f1ff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #0f9d58, #17b86b);
  border: 1px solid rgba(15, 157, 88, 0.45);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #12a962, #29d488);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBtn {
  0%, 100% {
    box-shadow: 0 16px 30px rgba(0, 65, 196, 0.22);
  }
  50% {
    box-shadow: 0 22px 42px rgba(0, 102, 255, 0.28);
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes glowSpot {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.65;
    transform: translate(-46%, -54%) scale(1.05);
  }
}

@keyframes shimmerLine {
  from {
    transform: translateX(-130%) rotate(20deg);
  }
  to {
    transform: translateX(130%) rotate(20deg);
  }
}

.services, .location, .finder, .contact {
  padding: 28px;
  border-radius: 32px;
  background: rgba(12, 15, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 28px;
}

.service-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: riseUp 0.75s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0, 38, 96, 0.14);
  border-color: rgba(79, 156, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.service-card:nth-child(1) { animation-delay: 0.14s; }
.service-card:nth-child(2) { animation-delay: 0.19s; }
.service-card:nth-child(3) { animation-delay: 0.24s; }
.service-card:nth-child(4) { animation-delay: 0.29s; }
.service-card:nth-child(5) { animation-delay: 0.34s; }

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: #fff;
}

.service-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.map-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.6fr;
  align-items: start;
  margin-top: 26px;
}

.map-copy p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #cbd5e1;
  line-height: 1.75;
}

.location-top {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(79, 156, 255, 0.2);
}

.location-top h3 {
  margin: 0 0 12px;
  color: #4f9cff;
  font-size: 1.15rem;
  font-weight: 600;
}

.location-top p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.location-list li {
  position: relative;
  padding-left: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-list strong {
  color: #4f9cff;
}

.map-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.map-copy li {
  position: relative;
  padding-left: 24px;
  color: #e2e8f0;
}

.map-copy li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4f9cff;
}

.map-frame {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 156, 255, 0.2);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.finder-panel {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.finder-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.finder-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.finder-panel label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #a2cfff;
}

.finder-panel select,
.finder-panel input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(79, 156, 255, 0.22);
  background: rgba(79, 156, 255, 0.06);
  color: #ffffff;
  padding: 14px 18px;
  font: inherit;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.finder-panel select:hover,
.finder-panel select:focus,
.finder-panel input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(79, 156, 255, 0.12);
  border-color: rgba(79, 156, 255, 0.4);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 156, 255, 0.1);
}

.finder-panel select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f9cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 42px;
  cursor: pointer;
}

.finder-panel select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(79, 156, 255, 0.03);
}

.finder-panel select option {
  background: #0a0c12;
  color: #ffffff;
  padding: 12px;
}

.finder-panel select option:checked {
  background: linear-gradient(#0041c4, #0041c4);
  background-color: #0041c4 !important;
  color: #fff !important;
}

.finder-panel button {
  width: fit-content;
}

.finder-result {
  margin: 0;
  color: #d9e2ec;
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.35fr 0.95fr;
  margin-top: 24px;
  align-items: start;
  justify-items: center;
}

.contact-left {
  display: grid;
  gap: 22px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.contact-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  width: 100%;
  text-align: left;
}

.contact-info ul {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.contact-info li {
  position: relative;
  padding-left: 20px;
}

.contact-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4f9cff;
}

.testimonials {
  background: rgba(0, 71, 196, 0.05);
  padding: 50px 28px;
  border-radius: 20px;
  margin: 50px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  padding: 24px;
  background: rgba(10, 12, 18, 0.8);
  border: 1px solid rgba(79, 156, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(10, 12, 18, 0.95);
  border-color: rgba(79, 156, 255, 0.3);
  transform: translateY(-4px);
}

.testimonial-card.star-founder,
.testimonial-card.star-team {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.15), rgba(208, 1, 27, 0.08));
  border-color: rgba(79, 156, 255, 0.25);
}

.testimonial-card.star-founder:hover,
.testimonial-card.star-team:hover {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.2), rgba(208, 1, 27, 0.12));
  border-color: rgba(79, 156, 255, 0.4);
}

.testimonial-card.add-review {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.12), rgba(79, 156, 255, 0.06));
  border: 2px dashed rgba(79, 156, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  min-height: 200px;
}

.testimonial-card.add-review:hover {
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.15), rgba(79, 156, 255, 0.08));
  border-color: rgba(79, 156, 255, 0.5);
}

.testimonial-card.add-review .testimonial-header {
  width: 100%;
}

.testimonial-card.add-review .testimonial-name {
  color: #4f9cff;
  font-weight: 700;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.testimonial-rating {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-name {
  font-weight: 600;
  color: #4f9cff;
  font-size: 0.95rem;
}

.testimonial-text {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
  font-size: 0.95rem;
}

.testimonial-date {
  color: #64748b;
  font-size: 0.85rem;
}

.testimonial-card.add-review .testimonial-date {
  margin-top: 8px;
  width: 100%;
}

.warranty-faq {
  padding: 50px 28px;
  margin: 50px 0;
}

.warranty-info {
  margin-bottom: 50px;
}

.warranty-info h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.warranty-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(79, 156, 255, 0.1), rgba(208, 1, 27, 0.05));
  border: 1px solid rgba(79, 156, 255, 0.2);
  border-radius: 16px;
  text-align: center;
}

.warranty-card h4 {
  font-size: 1.1rem;
  color: #4f9cff;
  margin: 0 0 12px;
  font-weight: 600;
}

.warranty-duration {
  font-size: 2.2rem;
  color: #d0011b;
  font-weight: 800;
  margin: 12px 0;
}

.warranty-details {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 12px 0;
  line-height: 1.5;
}

.warranty-terms {
  color: #a2cfff;
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(79, 156, 255, 0.15);
}

.faq-section h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(79, 156, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: rgba(79, 156, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(79, 156, 255, 0.12);
}

.faq-toggle {
  color: #4f9cff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
  padding: 20px 24px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section {
  margin-top: 50px;
  padding: 40px 28px;
  border-top: 1px solid rgba(79, 156, 255, 0.2);
  background: rgba(10, 12, 18, 0.5);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-col {
  display: grid;
  gap: 14px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #4f9cff;
  font-weight: 600;
}

.footer-col p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-phone,
.footer-whatsapp {
  padding: 12px;
  border-radius: 12px;
  background: rgba(79, 156, 255, 0.08);
  border: 1px solid rgba(79, 156, 255, 0.15);
}

.footer-phone a,
.footer-whatsapp a {
  color: #4f9cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-phone a:hover,
.footer-whatsapp a:hover {
  color: #a2cfff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-col li {
  color: #cbd5e1;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.footer-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4f9cff;
}

.footer-certified {
  padding-top: 12px;
  border-top: 1px solid rgba(79, 156, 255, 0.15);
  color: #a2cfff;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(79, 156, 255, 0.15);
  text-align: center;
  color: #a2cfff;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom p {
  margin: 8px 0;
}
