:root {
  --primary: #0077b6;
  --secondary: #00a6d6;
  --dark: #0f172a;
  --text: #334155;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 62px;
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 700;
  color: var(--dark);
}

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

.btn {
  display: inline-block;
  padding: 14px 24px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  background: #005f91;
  border-color: #005f91;
}

.btn-small {
  padding: 10px 18px;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

.hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 166, 214, 0.18), transparent 35%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-grid,
.page-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 119, 182, 0.08);
  color: var(--primary);
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  margin-bottom: 24px;
  color: var(--dark);
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 19px;
}

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

.hero-visual {
  position: relative;
  min-height: 460px;
}

.dashboard-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.main-dashboard {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.dashboard-card span {
  color: var(--primary);
  font-weight: 800;
}

.dashboard-card h3 {
  margin: 12px 0 28px;
  color: var(--dark);
  font-size: 28px;
}

.chart-line {
  position: relative;
  height: 120px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.16), rgba(0, 166, 214, 0.04));
}

.chart-line::after {
  content: "";
  position: absolute;
  top: 60%;
  left: -20%;
  width: 140%;
  height: 4px;
  background: var(--primary);
  transform: rotate(-8deg);
  box-shadow: 0 -35px 0 rgba(0, 119, 182, 0.35);
}

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

.stats div {
  padding: 16px;
  border-radius: 14px;
  background: var(--light);
}

.stats strong {
  display: block;
  color: var(--dark);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 119, 182, 0.25);
  animation: float 4s ease-in-out infinite;
}

.card-one {
  top: 0;
  left: 40px;
}

.card-two {
  top: 95px;
  right: -25px;
  animation-delay: 0.5s;
}

.card-three {
  bottom: -10px;
  left: 60px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.section {
  padding: 85px 0;
}

.light,
.alt-section {
  background: var(--light);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title h1,
.section-title h2 {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 38px;
  letter-spacing: -0.5px;
}

.section-title p {
  font-size: 18px;
}

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

.card,
.feature-item,
.faq-item,
.process-step {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.card {
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
}

.card h3,
.feature-item h3,
.page-box h3 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 24px;
}

.card p {
  margin-bottom: 22px;
}

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

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.features div {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.features h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.steps,
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center;
}

.steps div {
  padding: 26px 10px;
  border-radius: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 119, 182, 0.22);
}

.steps span {
  font-size: 15px;
  font-weight: 700;
}

.process-step .number {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.page-hero {
  padding: 85px 0;
  background: linear-gradient(135deg, #062033 0%, #0077b6 100%);
  color: white;
}

.page-hero .badge {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.page-hero h1 {
  color: white;
}

.page-box {
  padding: 34px;
  border-radius: 24px;
  background: white;
  color: var(--dark);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.page-box ul {
  padding-left: 20px;
}

.page-box li {
  margin-bottom: 12px;
}

.page-box p {
  margin-bottom: 14px;
}

.product-image {
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.product-image img {
  display: block;
  width: 100%;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

.cta-band {
  padding: 60px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.cta-band .btn {
  margin-top: 18px;
  border-color: white;
  background: white;
  color: var(--primary);
}

.contact,
.contact-form-section {
  background: var(--dark);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.contact h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.contact-info {
  margin-top: 28px;
}

.contact-info p {
  margin-bottom: 12px;
}

.form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form button {
  width: 100%;
}

/* Footer */
.footer {
  background: #020617;
  color: #cbd5e1;
  padding: 60px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand img,
.footer img {
  height: 58px;
  background: white;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-grid > div:nth-child(2) a {
  display: block;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.social-links a {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid #334155;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0;
  transition: 0.25s ease;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
}

/* Floating support */
.support-widget {
  position: fixed;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.support-whatsapp,
.support-teamviewer {
  height: 60px;
  width: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  text-decoration: none;
  font-weight: 800;
  transition: width 0.25s ease;
}

.support-whatsapp {
  background: #25d366;
}

.support-teamviewer {
  background: #ed1c24;
  text-transform: uppercase;
}

.support-whatsapp::before {
  content: "💬";
  width: 60px;
  min-width: 60px;
  text-align: center;
  font-size: 24px;
}

.support-teamviewer::before {
  content: "?";
  width: 60px;
  min-width: 60px;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 60px;
}

.support-whatsapp span,
.support-teamviewer span {
  white-space: nowrap;
  opacity: 0;
  padding-right: 24px;
  transition: opacity 0.15s ease;
}

.support-whatsapp:hover,
.support-teamviewer:hover {
  width: 240px;
}

.support-whatsapp:hover span,
.support-teamviewer:hover span {
  opacity: 1;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .page-grid,
  .contact-grid,
  .cards,
  .features,
  .steps,
  .process-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .logo img {
    height: 48px;
  }

  .footer {
    padding-bottom: 80px;
  }

  .support-widget {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
