*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb;
  background: #0b1120;
}

body {
  line-height: 1.5;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.fab-call {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #eff6ff;
}

.fab-whatsapp {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #eff6ff;
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.65);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eff6ff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #e5e7eb;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #e5e7eb;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta .btn-outline {
  font-size: 0.85rem;
  padding-inline: 0.9rem;
  padding-block: 0.45rem;
}

/* Nav toggle (mobile hamburger) - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #eff6ff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding-block: 3.5rem 3.75rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), transparent 60%),
    radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.16), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(129, 140, 248, 0.16), transparent 50%),
    #020617;
  color: #e5e7eb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.hero-subtitle {
  color: #cbd5f5;
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1.8rem;
}

.hero-highlights li {
  font-size: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-form-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
}

.hero-form-card h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
  color: #f9fafb;
}

.form-desc {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.form-group input {
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.6rem 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
}

.form-group input::placeholder {
  color: #6b7280;
}

.form-group input::-moz-placeholder {
  color: #4b5563;
}

.form-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
  outline: none;
}

.error-message {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: #f97373;
}

.info-message {
  margin-top: 0.12rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.form-alt-ctas {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.alt-buttons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.text-link {
  color: #93c5fd;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.divider {
  color: #4b5563;
}

/* Sections */
.section {
  padding-block: 3rem;
  background: #020617;
  color: #e5e7eb;
}

.section:nth-of-type(even) {
  background: #020617;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f9fafb;
}

.section-header p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.92rem;
}

/* Routes */
.routes {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.14), transparent 55%),
    #020617;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.route-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.1rem;
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-left: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.route-card:hover {
  border-left-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.route-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

.route-icon {
  margin-right: 0.35rem;
}

.route-card p {
  margin: 0 0 0.4rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.btn-route {
  align-self: flex-start;
  font-size: 0.85rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #eff6ff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-route:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.route-card .btn-outline {
  align-self: flex-start;
  font-size: 0.8rem;
  padding-inline: 0.9rem;
  padding-block: 0.4rem;
}

/* Fleet */
.fleet {
  background:
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 55%),
    #020617;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.1rem;
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-left: 4px solid #2563eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.fleet-card:hover {
  border-left-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.fleet-card h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.fleet-icon {
  margin-right: 0.35rem;
}

.fleet-card p {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.fleet-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: #cbd5f5;
}

.fleet-card ul li::before {
  content: "• ";
  color: #2563eb;
  font-weight: 700;
}

.btn-fleet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #eff6ff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-fleet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.fleet-card .btn-secondary {
  font-size: 0.8rem;
  padding-inline: 0.9rem;
}

/* Why Us */
.why-us {
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.15), transparent 65%), #020617;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-left: 4px solid #2563eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.why-card:hover {
  border-left-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.why-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
}

.why-icon {
  margin-right: 0.35rem;
}

.why-card p {
  margin: 0;
  font-size: 0.86rem;
  color: #9ca3af;
}

/* Testimonials */
.testimonials {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.14), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(96, 165, 250, 0.12), transparent 55%),
    #020617;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-left: 4px solid #2563eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.testimonial-card:hover {
  border-left-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.quote-mark {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: #2563eb;
  margin-bottom: -0.25rem;
}

.testimonial-quote {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.testimonial-author strong {
  color: #f9fafb;
  font-weight: 700;
}

.testimonial-author span {
  color: #9ca3af;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  color: #eff6ff;
  padding-block: 3rem;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding-block: 0.5rem;
}

.contact-text {
  max-width: 42rem;
}

.contact-text h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.25;
}

.cta-icon {
  margin-right: 0.4rem;
  vertical-align: middle;
}

.contact-text p {
  margin: 0;
  font-size: 1rem;
  color: #dbeafe;
  line-height: 1.5;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #dbeafe;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #eff6ff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-cta-wa:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-buttons .btn-primary {
  background: #eff6ff;
  color: #2563eb;
  box-shadow: none;
}

.contact-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border-color: #93c5fd;
  color: #eff6ff;
  font-weight: 600;
}

/* Legal text blocks */
.legal-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.legal-text h3 {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
  color: #f9fafb;
}

.legal-text p {
  margin: 0.2rem 0 0.4rem;
  color: #9ca3af;
}

.legal-text ul {
  margin: 0.2rem 0 0.8rem 1.1rem;
  padding: 0;
  color: #cbd5f5;
}

.legal-text ul li {
  margin-bottom: 0.15rem;
}

/* Footer */
.site-footer {
  background: #020617;
  color: #9ca3af;
  border-top: 4px solid #2563eb;
  padding-block: 2rem 1rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr;
  gap: 1.8rem;
  margin-bottom: 1.3rem;
}

.footer-col h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e5e7eb;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #9ca3af;
}

.footer-col p {
  margin: 0.15rem 0;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-col a:hover {
  color: #93c5fd;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #a5b4fc;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-bottom .copyright {
  margin: 0;
}

.footer-bottom .dev-credit {
  margin: 0;
  color: #9ca3af;
}

.footer-bottom .dev-credit a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-bottom .dev-credit a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.footer-bottom .sep {
  color: rgba(148, 163, 184, 0.6);
  user-select: none;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-form-card {
    order: -1;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-cta {
    order: 3;
    width: 100%;
  }

  .header-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    margin-top: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  .main-nav a::after {
    display: none;
  }

  .site-header.nav-open {
    backdrop-filter: none;
  }

  .site-header.nav-open .nav-toggle {
    position: relative;
    z-index: 50;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    padding-top: 5.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0;
    border: none;
    background: rgba(2, 6, 23, 0.98);
    z-index: 45;
    overflow-y: auto;
  }

  .site-header.nav-open .main-nav a {
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .site-header.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-block: 2.5rem 3rem;
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px) + 100px);
  }

  .header-inner {
    padding-block: 0.65rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .hero-form-card h2 {
    font-size: 1.15rem;
  }

  .form-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
  }

  .form-group label {
    font-size: 0.9rem;
    color: #f1f5f9;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1.25rem;
  }

  .contact-text h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .contact-text p {
    font-size: 0.9rem;
  }

  .contact-buttons {
    justify-content: center;
  }

  .contact-buttons .btn,
  .contact-buttons .btn-cta-call,
  .contact-buttons .btn-cta-wa {
    flex: 1;
    min-width: 140px;
  }

  .hero-content h1 {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    color: #e2e8f0;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
    color: #94a3b8;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-bottom .sep {
    display: none;
  }
}

