:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #22c55e;
  --dark: #0f172a;
  --dark-2: #111827;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --warning: #f59e0b;
  --shadow: 0 18px 50px rgba(15, 23, 42, .10);
  --radius: 22px;
}

* {
  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%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-padding {
  padding: 92px 0;
}

.bg-soft {
  background: var(--soft);
}

.topbar {
  background: var(--dark);
  color: #dbeafe;
  font-size: 14px;
  padding: 10px 0;
}

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

.topbar i {
  color: var(--secondary);
  margin-right: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

.logo strong {
  display: block;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

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

.main-nav a {
  transition: .2s;
}

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

.btn-nav {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--dark);
  font-size: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, .12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #eff6ff;
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.section-title h2,
.why h2,
.cta h2,
.contact h2 {
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  margin: 22px 0;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  box-shadow: 0 14px 30px rgba(37,99,235,.26);
}

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

.btn-light {
  color: var(--primary-dark);
  background: var(--white);
}

.btn-plan {
  width: 100%;
  color: var(--primary-dark);
  background: #eff6ff;
}

.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
}

.hero-badges i {
  color: var(--secondary);
}

.hero-card {
  position: relative;
}

.server-card {
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.server-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .13);
  margin-right: 9px;
}

.panel-preview {
  min-height: 270px;
  border-radius: 24px;
  background: var(--dark);
  padding: 18px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  overflow: hidden;
}

.panel-sidebar {
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.panel-sidebar span {
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
}

.panel-body {
  padding: 8px 0;
}

.panel-line {
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin-bottom: 14px;
}

.w-90 { width: 90%; }
.w-70 { width: 70%; }

.panel-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.panel-stats div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.08);
}

.panel-stats strong,
.panel-stats small {
  display: block;
}

.panel-stats strong {
  color: var(--white);
}

.panel-stats small {
  color: #cbd5e1;
}

.server-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.server-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 700;
}

.server-list i {
  color: var(--secondary);
}

.trust {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-grid div {
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--dark);
  font-size: 34px;
  line-height: 1;
}

.trust-grid span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 6px;
}

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

.section-title h2,
.why h2,
.contact h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0;
}

.section-title p,
.why p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.plan-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.plan-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.plan-header h3 {
  color: var(--dark);
  font-size: 28px;
}

.plan-header p {
  color: var(--muted);
  margin-top: 4px;
}

.price {
  color: var(--dark);
  font-size: 48px;
  font-weight: 900;
  margin: 22px 0;
}

.price small {
  font-size: 20px;
  margin-right: 4px;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 26px;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-card i {
  color: var(--secondary);
}

.custom-plan {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.custom-plan h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.custom-plan p {
  color: #cbd5e1;
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.feature-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 42px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.check-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--dark);
  font-weight: 800;
}

.check-list i {
  color: var(--secondary);
}

.why-box {
  padding: 32px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.why-box h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.why-box ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.why-box li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #e2e8f0;
  font-weight: 700;
}

.why-box i {
  color: #93c5fd;
}

.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary), #0f172a);
  color: var(--white);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 10px;
}

.cta p {
  color: #dbeafe;
  font-size: 18px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  transition: .2s;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-items {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-items a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--dark);
  font-weight: 800;
}

.contact-items i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--primary);
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--dark);
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--dark);
  outline: none;
  margin-bottom: 16px;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 60px 0 22px;
}

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

.footer-logo strong {
  color: var(--white);
}

.footer p {
  margin-top: 16px;
}

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

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

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

.small {
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .35);
}

@media (max-width: 992px) {
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.popular {
    transform: none;
  }

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

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

  .cta-box,
  .custom-plan {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-padding {
    padding: 66px 0;
  }

  .topbar-content {
    justify-content: center;
    text-align: center;
  }

  .nav-wrapper {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .logo strong {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 38px;
  }

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

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

  .panel-preview {
    grid-template-columns: 1fr;
  }

  .panel-sidebar {
    display: none;
  }

  .plans-grid,
  .features-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .feature-card,
  .contact-form,
  .why-box,
  .custom-plan {
    padding: 22px;
  }

  .footer-bottom {
    display: block;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    font-size: 27px;
  }
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-img {
  display: block;
  max-width: 230px;
  height: auto;
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-width: 150px;
  }
}
