:root {
    --primary: #0077B6;
    --secondary: #00A6D6;
    --dark: #0F172A;
    --text: #334155;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
}

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

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

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

.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: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 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-form-section {
    background: var(--dark);
    color: white;
}

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

.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 {
    padding: 55px 0;
    background: #020617;
    color: #CBD5E1;
}

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

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

.footer h4 {
    margin-bottom: 16px;
    color: var(--white);
}

.footer a {
    display: block;
    margin-bottom: 10px;
}

@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;
    }
}
.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 {
  height: 60px;
  width: 60px;
  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;
  text-decoration: none;
  font-weight: 800;

  transition: width .25s ease;
}

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

.support-whatsapp span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity .15s ease;
  padding-right: 20px;
}

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

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

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

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

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

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

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