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

:root {
  --bg: #f5f7fb;
  --bg-dark: #020617;
  --fg: #0f172a;
  --muted: #6b7280;
  --primary: #2563eb;
  --primary-soft: #dbeafe;
  --accent: #10b981;
  --border: #e5e7eb;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.22);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.16);
  --testimonial-bg: #0f2b3d;
  --orange: #f97316;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3,
.hero-ribbon,
.logo-name,
.btn,
.stat-number,
.trust-number,
.testimonials-title,
.testimonials-view {
  font-family: "Bungee", sans-serif;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.55);
}

.logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--muted);
}

.topbar-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
}

.topbar-label {
  color: var(--muted);
}

.topbar-phone {
  font-weight: 600;
  color: var(--primary);
}

/* Hero */

.hero {
  padding: 28px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.hero-ribbon {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-ribbon-main {
  color: #0f172a;
  margin-right: 6px;
}

.hero-ribbon-highlight {
  color: #0f766e;
}

.hero-keywords {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hero-copy h1 {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.5rem);
  line-height: 1.1;
  margin: 4px 0 10px;
}

.hero-subtitle {
  margin: 0 0 14px;
  font-size: 0.98rem;
  color: var(--muted);
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid transparent;
  white-space: nowrap;
}

.badge.primary {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.35);
}

.badge.outline {
  background: #fff;
  color: #111827;
  border-color: var(--border);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.12s ease, color 0.12s ease;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.btn.primary {
  background: linear-gradient(135deg, #111827, #020617);
  color: #f9fafb;
}

.btn.primary.light {
  background: #ffffff;
  color: #020617;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7);
}

.btn.whatsapp {
  background: #059669;
  color: #ecfdf5;
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.45);
}

.btn.whatsapp.light {
  background: #22c55e;
  color: #f0fdf4;
}

.btn.full {
  width: 100%;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
}

.hero-location {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Hero side */

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  max-width: 360px;
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.hero-trust {
  margin-bottom: 10px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-item {
  min-width: 110px;
}

.trust-number {
  display: block;
  font-weight: 400;
  font-size: 1.08rem;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-card-list {
  margin-top: 6px;
}

/* Generic check list */

.check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--fg);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Stats */

.stats {
  padding: 8px 0 24px;
}

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

.stat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.stat-number {
  display: block;
  font-weight: 400;
  font-size: 0.98rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Sections */

.section {
  padding: 18px 0 26px;
}

.section.grey {
  background: #f9fafb;
}

.section.dark {
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
  color: #e5e7eb;
  padding: 28px 0 30px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.section p {
  margin: 0 0 8px;
  font-size: 0.94rem;
  color: var(--muted);
}

.section.dark p {
  color: #cbd5f5;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: flex-start;
}

.two-cols.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.inline-cta {
  margin-top: 8px;
}

.link-cta {
  font-size: 0.86rem;
  font-weight: 600;
}

/* Steps box */

.steps-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 16px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.steps-box h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.steps-list {
  margin: 0 0 12px;
  padding-left: 18px;
  font-size: 0.86rem;
  color: var(--fg);
}

.steps-list li {
  margin-bottom: 4px;
}

/* Testimonials */

.testimonials {
  padding-top: 8px;
}

.testimonials-bg {
  background: var(--testimonial-bg);
  margin-top: 16px;
  padding: 32px 0 40px;
  border-radius: 40px 40px 0 0;
}

.testimonials-inner {
  color: #e5e7eb;
}

.testimonials-title {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.testimonials-subtitle {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 12px;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
  cursor: default;
  font-size: 1.2rem;
  color: #4b5563;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #ffffff;
  color: #111827;
  border-radius: 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.45);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0ea5e9;
  color: #e5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.testimonial-source {
  font-size: 0.72rem;
  color: #6b7280;
}

.testimonial-gicon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2563eb;
  font-size: 0.8rem;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.testimonial-text {
  margin: 0;
  font-size: 0.86rem;
  color: #111827;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.testimonials-view {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff7ed;
  padding-inline: 26px;
}

/* FAQ */

.faq {
  max-width: 780px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 8px 12px;
  margin-bottom: 8px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▾";
  float: right;
  font-size: 0.7rem;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "▴";
}

.faq-item p {
  margin-top: 6px;
  font-size: 0.86rem;
}

/* Closing */

.closing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.closing h2 {
  margin: 0 0 6px;
}

.closing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  background: #020617;
  color: #e5e7eb;
  padding: 10px 0 14px;
  font-size: 0.78rem;
}

.footer a {
  color: #bfdbfe;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-right {
  max-width: 460px;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    justify-content: flex-start;
  }

  .hero-card {
    max-width: none;
  }

  .testimonials-slider {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-nav {
    display: none;
  }

  .testimonial-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-cols,
  .two-cols.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-box {
    margin-top: 4px;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .topbar-contact {
    font-size: 0.76rem;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .stats-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    padding: 14px 14px 16px;
  }

  .testimonial-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}
