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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: #0f172a;
  background-color: #0b1120;
}

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

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

button {
  font-family: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 0.85rem;
  background: radial-gradient(circle at 10% 0%, #38bdf8, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5f0ff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

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

.logo-title {
  font-weight: 600;
  font-size: 0.98rem;
  color: #e5f0ff;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #4f46e5);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    color 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(to right, #38bdf8, #4f46e5);
  color: #e5f0ff;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.45);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5f0ff;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #e5f0ff;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover,
.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.9);
}

.btn-full {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
}

.burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.26), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(79, 70, 229, 0.35), transparent 60%),
    linear-gradient(to bottom, #020617, #020617 40%, #020617);
  color: #e5f0ff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #7dd3fc;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.hero-subtitle {
  color: #cbd5f5;
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.hero-bullets li {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.65);
}

.hero-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 52%),
    radial-gradient(circle at 100% 0, rgba(79, 70, 229, 0.32), transparent 60%),
    rgba(15, 23, 42, 0.96);
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow:
    0 22px 45px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f97316;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.1);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin: 0.8rem 0 0.4rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin: 0 0 1.3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stats div {
  border-radius: 0.9rem;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.7rem 0.7rem 0.8rem;
}

.stat-number {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.stat-label {
  display: block;
  font-size: 0.76rem;
  color: #9ca3af;
}

.section {
  padding: 3.5rem 0;
  background: linear-gradient(to bottom, #020617, #020617);
  color: #e5e7eb;
}

.section-alt {
  background: radial-gradient(circle at 50% 0%, #0b1120, #020617 60%);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
}

.section-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

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

.card {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.1),
      transparent 52%
    ),
    rgba(15, 23, 42, 0.96);
  padding: 1.4rem 1.3rem 1.3rem;
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.card-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.3rem;
}

.card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.96);
  padding: 1.2rem 1.1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.step-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.step-card p {
  margin: 0;
  font-size: 0.86rem;
  color: #cbd5f5;
}

.broker-highlights {
  margin-top: 1.6rem;
}

.broker-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.broker-highlights li {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #cbd5f5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.highlight-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #ffffff;
  color: #111827;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.highlight-image-wrap {
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.highlight-image {
  max-height: 260px;
  object-fit: contain;
}

.highlight-body {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.highlight-brand {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.highlight-name {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-highlight {
  background: #7c3aed;
  color: #f9fafb;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-highlight:hover {
  background: #6d28d9;
}

.product-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.96);
  padding: 1.1rem 1.1rem 1.2rem;
}

.product-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.product-card p {
  margin: 0;
  font-size: 0.87rem;
  color: #cbd5f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-info .section-subtitle {
  margin-bottom: 1.3rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
}

.contact-list a {
  color: #e5f0ff;
}

.contact-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.contact-form {
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
}

.form-row {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

.form-field label {
  font-size: 0.8rem;
  color: #cbd5f5;
}

input,
select,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
  background-color: rgba(15, 23, 42, 1);
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  min-height: 1.2em;
  color: #9ca3af;
}

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 1.4rem 0;
  color: #6b7280;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 40;
  animation: pulse 2s infinite;
}

.whatsapp-icon {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

  .hero-card {
    max-width: 420px;
  }

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

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

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-cta {
    display: flex;
  }

  .site-header.nav-open .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    width: 100%;
    padding-top: 0.4rem;
  }

  .site-header.nav-open .header-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

  .form-row {
    flex-direction: column;
  }
}


