
:root {
  --primary: #1597d3;
  --primary-dark: #0d5fa8;
  --secondary: #18b9d4;
  --accent: #f7941d;
  --accent-dark: #e97812;
  --dark: #24364a;
  --dark-soft: #2f465e;
  --text: #2d3b4f;
  --muted: #6f7d8f;
  --light: #f3f8fc;
  --white: #ffffff;
  --success: #7fbd32;
  --danger: #dc3545;
  --border: #e4edf4;
  --shadow: 0 18px 45px rgba(21, 151, 211, 0.15);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

.topbar {
  background: linear-gradient(90deg, #24364a, #1597d3);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  padding: 9px 0;
}

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

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

header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230,235,245,.9);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--dark);
  font-size: 22px;
  letter-spacing: -.4px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(21,151,211,.28);
  font-weight: 900;
}

nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #2c3852;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: .22s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 16px 35px rgba(247,148,29,.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(247,148,29,.36);
}

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

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

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(24,185,212,.34), transparent 34%), linear-gradient(135deg, #24364a 0%, #1597d3 52%, #18b9d4 100%);
  color: var(--white);
}

.hero {
  padding: 92px 0 76px;
}

.page-hero {
  padding: 72px 0;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

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

.page-hero .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.page-hero h1 {
  max-width: 880px;
}

.hero p,
.page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 19px;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.badge {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.badge strong {
  display: block;
  font-size: 18px;
  color: var(--white);
}

.badge span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.server-visual {
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.98), rgba(231,247,252,.96));
  color: var(--dark);
  padding: 28px;
  min-height: 410px;
  position: relative;
  overflow: hidden;
}

.server-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(24,185,212,.18);
  top: -80px;
  right: -90px;
}

.server-row {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid #e9eef6;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(19,44,83,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.server-row .dots {
  display: flex;
  gap: 6px;
}

.server-row .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(127,189,50,.12);
}

.live-panel {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
  padding: 22px;
}

.signal {
  height: 64px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 16px;
}

.signal span {
  width: 8px;
  background: linear-gradient(var(--accent), var(--secondary));
  border-radius: 99px;
  animation: wave 1.2s ease-in-out infinite alternate;
}

.signal span:nth-child(2n) { animation-delay: .15s; }
.signal span:nth-child(3n) { animation-delay: .28s; }
.signal span:nth-child(4n) { animation-delay: .42s; }

@keyframes wave {
  from { height: 15px; }
  to { height: 62px; }
}

section {
  padding: 88px 0;
}

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

.section-kicker {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 900;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -.9px;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(22,42,78,.06);
  transition: .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(21,151,211,.13), rgba(247,148,29,.13));
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--dark);
  font-size: 21px;
  margin-bottom: 10px;
}

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

.feature-list {
  display: grid;
  gap: 10px;
  color: #34415c;
  font-size: 15px;
}

.feature-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  margin-right: 8px;
}

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

.domain-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.domain-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.domain-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  background: #fff;
}

.domain-ext {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.domain-ext span {
  color: var(--primary);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid rgba(247,148,29,.55);
  box-shadow: var(--shadow);
}

.ribbon {
  position: absolute;
  top: 18px;
  right: -42px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 48px;
  transform: rotate(35deg);
}

.price {
  margin: 16px 0 18px;
}

.price small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.price strong {
  display: block;
  color: var(--dark);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -1px;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.pricing-card .btn {
  margin-top: auto;
}

.service-panel {
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, #24364a, #1597d3 62%, #18b9d4);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.service-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -120px;
  bottom: -180px;
  background: rgba(255,255,255,.18);
}

.service-panel h2,
.service-panel h3 {
  color: #fff;
}

.service-panel p {
  color: rgba(255,255,255,.82);
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.mini-feature {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px;
}

.mini-feature strong {
  display: block;
  margin-bottom: 6px;
}

.tabs-like {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.pill {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
}

.values {
  background: var(--dark);
  color: rgba(255,255,255,.78);
}

.values h2,
.values h3 {
  color: #fff;
}

.values .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.76);
}

.values .card p,
.values .feature-list {
  color: rgba(255,255,255,.72);
}

.comparison {
  background: linear-gradient(135deg, #f3f8fc, #e6f5fb);
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.info-box h3 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 12px;
}

.info-box p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hosting-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hosting-table th,
.hosting-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

.hosting-table th {
  background: var(--dark);
  color: #fff;
}

.hosting-table tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
}

.process-card {
  position: relative;
}

.process-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.client {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-weight: 900;
  color: var(--dark);
}

.contact {
  background: linear-gradient(135deg, #24364a, #0d5fa8 58%, #1597d3);
  color: #fff;
}

.contact h2 {
  color: #fff;
}

.contact p {
  color: rgba(255,255,255,.78);
}

.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 32px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.88);
}

footer {
  background: #24364a;
  color: rgba(255,255,255,.72);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 38px;
}

footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 17px;
}

footer li {
  margin: 9px 0;
}

footer a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #7fbd32;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 16px 36px rgba(127,189,50,.35);
  z-index: 60;
}

.cookie {
  position: fixed;
  left: 22px;
  bottom: 22px;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 59;
  font-size: 14px;
  color: var(--muted);
}

.cookie strong {
  color: var(--dark);
}

.cookie button {
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.notice {
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff7ed;
  color: #7c3f00;
  border: 1px solid rgba(247,148,29,.28);
  margin-top: 18px;
}

@media (max-width: 1020px) {
  nav ul {
    display: none;
  }
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mini-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badges {
    grid-template-columns: 1fr;
  }
  section {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .topbar .container,
  .nav,
  .copyright {
    align-items: flex-start;
  }
  .nav {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
  }
  .hero {
    padding: 66px 0 54px;
  }
  .page-hero {
    padding: 54px 0;
  }
  .hero-actions,
  .domain-form {
    grid-template-columns: 1fr;
    display: grid;
  }
  .mini-features {
    grid-template-columns: 1fr;
  }
  .service-panel,
  .contact-card,
  .info-box {
    padding: 24px;
  }
  .cookie {
    left: 12px;
    right: 12px;
    bottom: 92px;
  }
  .hosting-table {
    display: block;
    overflow-x: auto;
  }
}
