/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0a0a;
  --bg-card:    #141414;
  --bg-raised:  #1a1a1a;
  --bg-hover:   #222222;
  --border:     #2a2a2a;
  --border-mid: #333333;
  --text:       #fafafa;
  --text-muted: #a1a1aa;
  --text-dim:   #71717a;
  --accent:     #e8a020;
  --accent-dim: rgba(232,160,32,.12);
  --white:      #ffffff;
  --green:      #25d366;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.6);
  --transition: .2s ease;
  --font:       'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--alt { background: var(--bg-card); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* Primary: white button, dark text */
.btn--primary {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
}
.btn--primary:hover {
  background: #e4e4e7;
  border-color: #e4e4e7;
  transform: translateY(-1px);
}

/* Outline: subtle border, white text */
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn--outline:hover {
  background: var(--bg-raised);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

/* Accent: amber, used sparingly */
.btn--accent {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: #d4911a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,32,.3);
}

/* WhatsApp */
.btn--wa {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--wa:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}

/* Nav CTA */
.btn--nav {
  background: var(--white);
  color: #0a0a0a;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}
.btn--nav:hover { background: #e4e4e7; }

/* Dark form button */
.btn--form {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
  font-weight: 700;
}
.btn--form:hover { background: #e4e4e7; transform: translateY(-1px); }

/* ── SECTION HEADER ── */
.section__header { text-align: center; margin-bottom: 64px; }

.section__label {
  display: inline-block;
  background: var(--bg-raised);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-mid);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: .8; }

.nav__logo-icon {
  height: 26px;
  width: auto;
  display: block;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--bg);
  padding: 148px 0 112px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,160,32,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-raised);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-mid);
  margin-bottom: 32px;
}
.hero__badge span { color: var(--text); font-weight: 600; }

.hero__title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero__title--accent { color: var(--accent); }

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
  padding: 20px 36px;
  border-right: 1px solid var(--border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.hero__stat span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ── SERVICES ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background var(--transition);
}
.service-card:hover { background: var(--bg-raised); }

.service-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--border-mid); }

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-card--featured:hover { box-shadow: 0 0 0 1px var(--accent), var(--shadow); }

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.pricing-card__currency { font-size: 22px; vertical-align: super; }

.pricing-card__once {
  font-size: 12px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 24px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-card__features li.muted { color: var(--text-dim); opacity: .6; }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--text-dim); flex-shrink: 0; }

.pricing__hosting {
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.pricing__hosting-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing__hosting-inner strong {
  font-size: 16px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.pricing__hosting-inner p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── WHY US ── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__image-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__image-stat {
  background: var(--bg-card);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.why__image-stat:last-child { border-bottom: none; }
.why__image-stat:hover { background: var(--bg-raised); }

.why__image-stat strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.why__image-stat span {
  font-size: 13px;
  color: var(--text-muted);
}
.why__image-stat--accent strong { color: var(--accent); }

.why__points { display: flex; flex-direction: column; gap: 32px; }

.why-point { display: flex; gap: 20px; align-items: flex-start; }

.why-point__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-point h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.why-point p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__copy .section__title { text-align: left; }
.contact__copy .section__label { display: block; text-align: left; }

.contact__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 20px 0 36px;
  line-height: 1.8;
}

.contact__options { display: flex; flex-direction: column; gap: 14px; }

.contact__option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.contact__option:hover { color: var(--text); }

.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact__form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-raised);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--bg-raised); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--text-muted);
  box-shadow: 0 0 0 3px rgba(250,250,250,.06);
}

.form-group textarea { resize: vertical; }

.form__note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand { max-width: 280px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  opacity: 1;
  transition: opacity var(--transition);
}
.footer__logo:hover { opacity: .7; }

.footer__brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer__links { display: flex; gap: 64px; }

.footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer__col strong {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 54px;
  height: 54px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why__grid { grid-template-columns: 1fr; }
  .why__image { display: none; }
  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .services__grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; }
  .hero__stat { padding: 16px 20px; }
  .hero__stats { width: 100%; }
  .footer__links { flex-direction: column; gap: 32px; }
  .pricing__hosting-inner { flex-direction: column; align-items: flex-start; }
  .why__image-block { display: none; }
}
