/* ============================================
   Doctor Motor — Mecánica a domicilio 24/7
   ============================================ */

:root {
  --red: #EC3D40;
  --red-dark: #C92E31;
  --dark: #201D1D;
  --gray: #534E4E;
  --gray-light: #6E6868;
  --cream: #EDE6D8;
  --white: #FFFFFF;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-red: 0 10px 30px -8px rgba(236, 61, 64, 0.35);
  --shadow-soft: 0 10px 30px -12px rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

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

section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 16px;
}

.section-head h2 span { color: var(--red); }

.section-head p {
  color: var(--cream);
  font-size: 16px;
}

.bg-alt { background: var(--gray); }
.bg-red { background: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-light);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 12px 0;
}

.nav-logo img { height: 130px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 195px 0 90px;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(236,61,64,0.22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(83,78,78,0.45), transparent 50%),
    rgba(32,29,29,0.72);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236,61,64,0.12);
  border: 1px solid rgba(236,61,64,0.4);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--red); }

.hero p.lead {
  color: var(--cream);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--cream);
  font-weight: 600;
}
.hero-badges .badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
}

/* Phone mockup */
.phone-mockup {
  background: var(--gray);
  border: 8px solid #100f0f;
  border-radius: 36px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  max-width: 340px;
  margin: 0 auto;
}
.phone-topbar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 600;
}
.phone-greeting { font-family: var(--font-display); font-size: 20px; margin-bottom: 4px; }
.phone-sub { color: var(--cream); font-size: 12px; margin-bottom: 18px; }

.loyalty-card {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 18px;
}
.loyalty-card .label {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 6px; font-weight: 700;
}
.loyalty-card .points { font-family: var(--font-display); font-size: 30px; }
.loyalty-card .sub { font-size: 12px; opacity: 0.85; }
.loyalty-stats { display: flex; gap: 18px; margin-top: 12px; font-size: 12px; opacity: 0.9; }

.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.quick-actions .qa {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
}
.quick-actions .qa .ico { font-size: 18px; margin-bottom: 6px; }

.appt-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.appt-card .label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.appt-card .title { font-family: var(--font-display); font-size: 17px; }
.appt-card .status {
  display: inline-block;
  background: rgba(236,61,64,0.18);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 6px 0;
}
.appt-card .meta { font-size: 12px; color: var(--cream); }

/* WhatsApp chat mockup */
.phone-whatsapp { padding: 0; overflow: hidden; }

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1f2c34;
  padding: 14px 16px;
}
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-info { flex-grow: 1; }
.wa-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--white); }
.wa-status { font-size: 11px; color: #8696a0; }
.wa-icons { display: flex; gap: 12px; font-size: 15px; color: #aebac1; }

.wa-chat {
  background: #0b141a;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 360px;
}
.wa-bubble {
  max-width: 82%;
  padding: 8px 10px 4px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.wa-bubble p { margin: 0 0 4px; color: var(--white); }
.wa-bubble.incoming { background: #1f2c34; align-self: flex-start; border-top-left-radius: 0; }
.wa-bubble.outgoing { background: #005c4b; align-self: flex-end; border-top-right-radius: 0; }
.wa-time { display: block; text-align: right; font-size: 10px; color: #8696a0; }
.wa-check { color: #53bdeb; margin-left: 2px; }

.wa-input {
  background: #1f2c34;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #8696a0;
}

/* ---------- Feature / Value / Team cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(236,61,64,0.4); }

.card .icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(236,61,64,0.14);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--cream); font-size: 14.5px; }

.card-center { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 10px;
}
.step .num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: var(--shadow-red);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--cream); font-size: 14px; }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-tags { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tag-estandar { background: rgba(255,255,255,0.1); color: var(--cream); }
.tag-express { background: rgba(236,61,64,0.16); color: var(--red); }
.tag-premium { background: var(--red); color: var(--white); }
.duration { color: var(--cream); font-size: 13px; font-weight: 600; }

.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card .desc { color: var(--cream); font-size: 14.5px; margin-bottom: 18px; }

.service-quick { text-align: center; }
.service-quick .service-tags { justify-content: center; }

.includes-label {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--red); margin-bottom: 12px;
}
.includes-list { margin-bottom: 20px; flex-grow: 1; }
.includes-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--white); margin-bottom: 10px;
}
.includes-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.includes-list li.warning::before { content: "⚠"; }
.includes-list li.warning { color: var(--cream); font-size: 13px; }

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price { font-family: var(--font-display); font-size: 30px; color: var(--white); }
.price small { font-size: 14px; color: var(--cream); font-weight: 600; }

/* ---------- Pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.price-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  padding: 16px 14px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.price-table td {
  padding: 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}
.price-table .svc-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.price-table .svc-desc { color: var(--cream); font-size: 13px; max-width: 340px; }
.price-table .price-cell { font-family: var(--font-display); font-size: 20px; white-space: nowrap; }
.table-wrap { overflow-x: auto; }

/* ---------- Package cards ---------- */
.package-card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 2px solid rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card.popular { border-color: var(--red); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 999px;
}
.package-card h3 { font-size: 22px; margin-bottom: 10px; }
.package-card .desc { color: var(--cream); font-size: 14px; margin-bottom: 18px; min-height: 40px; }
.price-old { color: var(--cream); text-decoration: line-through; font-size: 14px; }
.price-new { font-family: var(--font-display); font-size: 38px; color: var(--white); }
.price-new span { font-size: 16px; color: var(--cream); }
.savings {
  display: inline-block;
  background: rgba(236,61,64,0.16);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 10px 0 18px;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--gray);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
}
.faq-question .plus { color: var(--red); font-size: 22px; transition: transform 0.25s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--cream);
  font-size: 14.5px;
}
.faq-answer div { padding: 0 24px 20px; }
.faq-item.open .faq-answer { max-height: 220px; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 46px; color: var(--red); }
.stat .label { color: var(--cream); font-size: 14px; margin-top: 6px; }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-band p { margin-bottom: 30px; font-size: 16px; opacity: 0.95; }

/* ---------- App section ---------- */
.app-section .grid-2 { align-items: center; gap: 60px; }
.app-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; margin-bottom: 16px;
}
.app-features li::before {
  content: "✓";
  width: 26px; height: 26px;
  background: rgba(236,61,64,0.16);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.store-buttons { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
}
.store-btn:hover { border-color: var(--red); }

/* ---------- Footer ---------- */
.footer {
  background: var(--white);
  padding: 70px 0 26px;
  color: var(--gray);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo img { height: 46px; margin-bottom: 16px; }
.footer p.tagline { font-size: 14px; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.social-links a:hover { background: var(--red); }

.footer h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 12px; font-size: 14px; }
.footer ul li a { color: var(--dark); }
.footer ul li a:hover { color: var(--red); }
.footer .social-links a {
  background: rgba(32,29,29,0.06);
  color: var(--dark);
}
.footer .social-links a:hover { background: var(--red); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(32,29,29,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom a:hover { color: var(--red); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 900;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(236,61,64,0.14), transparent 45%),
    var(--dark);
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; }
.page-hero p { color: var(--cream); max-width: 620px; margin: 0 auto; font-size: 16px; }
.page-hero .container { position: relative; z-index: 2; }

.page-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(236,61,64,0.22), transparent 45%),
    rgba(32,29,29,0.72);
  z-index: 1;
}

/* ---------- About page specifics ---------- */
.history-block { max-width: 820px; margin: 0 auto 60px; }
.history-block p { color: var(--cream); margin-bottom: 18px; font-size: 15.5px; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 60px; }
.mv-card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 34px;
  border-left: 4px solid var(--red);
}
.mv-card h3 { font-size: 20px; margin-bottom: 12px; }
.mv-card p { color: var(--cream); font-size: 14.5px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-form-card, .contact-info-card, .app-promo-card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.06);
}
.app-promo-card { border: 2px solid var(--red); margin-bottom: 28px; }
.app-promo-card .badge-recommended {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.app-promo-card.whatsapp-promo { border-color: #25D366; }
.app-promo-card.whatsapp-promo .badge-wa { background: #25D366; }
.app-promo-card.soon-promo { border-color: var(--gray-light); margin-top: 28px; margin-bottom: 0; }
.app-promo-card.soon-promo .badge-soon { background: var(--gray-light); }
.app-promo-card h3 { font-size: 19px; margin-bottom: 10px; }
.app-promo-card p { color: var(--cream); font-size: 14px; margin-bottom: 18px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.form-group label .req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(237,230,216,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item .ico {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(236,61,64,0.14);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--cream); font-size: 14.5px; }

.whatsapp-card {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.35);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 10px;
}
.whatsapp-card h4 { font-size: 16px; margin-bottom: 8px; text-transform: none; }
.whatsapp-card p { color: var(--cream); font-size: 14px; margin-bottom: 16px; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1eb857; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .grid-2, .contact-grid, .mv-grid, .app-section .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .steps-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-cta .btn-primary.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 64px; }
  .hero { padding-top: 130px; }
  .page-hero { padding-top: 125px; }
}

@media (max-width: 620px) {
  section { padding: 64px 0; }
  .grid-3, .grid-4, .steps-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .price-table td { border: none; padding: 6px 0; }
}
