h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  color: var(--text);
  line-height: 1.75;
}

.section {
  padding: 100px 0;
}

:root {
  --primary: #1769ff;
  --primary-dark: #0b4ed8;
  --navy: #0b1f44;
  --text: #51617a;
  --muted: #7a8aa3;
  --bg: #f7fbff;
  --card: #ffffff;
  --border: #e3ecf8;
  --shadow: 0 20px 50px rgba(11, 31, 68, 0.08);
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
}

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

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  background: rgba(255, 255, 255, 0.88);
  border-right: 1px solid var(--border);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  backdrop-filter: blur(20px);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 20px;
}

.brand small {
  color: var(--text);
  font-weight: 500;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary), #5b8cff);
  box-shadow: 0 12px 25px rgba(23, 105, 255, 0.25);
}

.side-nav {
  display: grid;
  gap: 10px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #3d5170;
  font-weight: 600;
  transition: 0.25s ease;
}

.side-nav a:hover,
.side-nav a.active {
  background: #edf5ff;
  color: var(--primary);
}

.side-nav svg,
.service-card svg,
.trust-row svg {
  width: 20px;
  height: 20px;
}

.sidebar-card {
  margin-top: auto;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.sidebar-card svg {
  color: var(--primary);
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.sidebar-card p {
  color: var(--text);
  margin-bottom: 18px;
}

.main {
  margin-left: 280px;
  padding: 50px 60px;
  max-width: 1800px;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding-top: 30px;
}

.badge {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.hero p,
.page-hero p {
  max-width: 680px;
  font-size: 20px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--text);
  font-weight: 600;
}

.trust-row svg {
  color: var(--primary);
}

.card,
.service-card,
.cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23,105,255,0.04),
    transparent
  );
  opacity: 0;
  transition: 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.hero-visual {
  height: 420px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.dashboard-top {
  width: 180px;
  height: 18px;
  background: #eaf2ff;
  border-radius: 999px;
  margin-bottom: 34px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.dashboard-grid div {
  height: 90px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff, #edf5ff);
  border: 1px solid var(--border);
}

.dashboard-large {
  height: 190px;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf5ff, #ffffff);
  border: 1px solid var(--border);
}

.section {
  padding: 60px 0;
}

.section-heading,
.page-hero {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading span {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 12px 0;
}

.section-heading p {
  color: var(--text);
}

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

.big-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 34px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(11,31,68,0.10);
}

.service-card svg {
  color: var(--primary);
  background: #edf5ff;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text);
  margin-bottom: 20px;
}

.service-card a {
  color: var(--primary);
  font-weight: 800;
}

.page-hero {
  padding: 70px 0 35px;
}

.cta-card {
  margin-top: 40px;
  padding: 42px;
  text-align: center;
}

.cta-card h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta-card p {
  color: var(--text);
  margin-bottom: 24px;
}

.mobile-header {
  display: none;
}

@media (max-width: 980px) {
  .sidebar {
    transform: translateX(-100%);
    transition: 0.3s ease;
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .mobile-header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 30;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }

  .menu-btn {
    border: 1px solid var(--border);
    background: white;
    border-radius: 12px;
    padding: 10px;
    color: var(--primary);
  }

  .main {
    margin-left: 0;
    padding: 28px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 30px;
  }

  .cards-grid,
  .big-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 320px;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 42px;
}

.feature-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.feature-pill svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card.recommended {
  border: 2px solid var(--primary);
}

.pricing-card span {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #edf5ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pricing-card strong {
  display: block;
  font-size: 42px;
  margin-bottom: 14px;
  color: var(--primary);
}

.pricing-card p,
.note-card p,
.process-card p {
  color: var(--text);
}

.note-card {
  margin-top: 32px;
  background: #edf5ff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  font-weight: 600;
}

.process-list {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.process-card {
  display: flex;
  gap: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.process-card span {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #edf5ff;
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    flex-direction: column;
  }
}

.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.about-card h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.about-card p {
  color: var(--text);
  font-size: 18px;
  max-width: 900px;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-card svg {
  width: 54px;
  height: 54px;
  color: var(--primary);
  background: #edf5ff;
  padding: 14px;
  border-radius: 18px;
  margin-bottom: 22px;
}

.contact-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 28px;
  }
}

.site-footer {
  margin-top: 80px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 50px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 16px;
}

.footer-grid p {
  color: var(--text);
  max-width: 400px;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  transition: 0.25s ease;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 32px;
  }

}

.premium-dashboard {
  height: 430px;
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.dash-sidebar {
  background: #f0f6ff;
  border-radius: 24px;
  padding: 22px 14px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.dash-sidebar span {
  height: 42px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
}

.dash-content {
  padding: 10px 0 10px 22px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dash-header h3 {
  font-size: 22px;
}

.dash-header span {
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stats-row div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.stats-row strong {
  display: block;
  font-size: 24px;
  color: var(--primary);
}

.stats-row small {
  color: var(--muted);
  font-weight: 600;
}

.activity-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.activity-card h4 {
  margin-bottom: 14px;
}

.activity-card p {
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.activity-card p:last-child {
  border-bottom: none;
}

@media (max-width: 980px) {
  .premium-dashboard {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-content {
    padding: 0;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35);
  z-index: 50;
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 980px) {
  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

.metrics-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.metric-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
}

.metric-card h3 {
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-card strong {
  font-size: 18px;
}

.metric-card svg {
  width: 46px;
  height: 46px;
  color: var(--primary);
  background: #edf5ff;
  padding: 10px;
  border-radius: 14px;
}

@media (max-width: 980px) {

  .metrics-section {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

}

body::before {
  content: "";
  position: fixed;
  top: -300px;
  right: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(23,105,255,0.04);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  bottom: -250px;
  left: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(23,105,255,0.03);
  pointer-events: none;
  z-index: -1;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary);
  color: white;
}

.service-card,
.metric-card,
.pricing-card,
.process-card,
.contact-card,
.about-card,
.cta-card,
.note-card {
  backdrop-filter: blur(16px);
}

.service-card h3,
.metric-card strong,
.pricing-card h3,
.process-card h3,
.contact-card h3 {
  position: relative;
  z-index: 1;
}

.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.page-hero {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .main {
    padding: 24px 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}