:root {
  --color-primary: #0059c8;
  --color-primary-dark: #042a64;
  --color-teal: #0e9bcf;
  --color-purple: #6333c8;
  --color-magenta: #d12e78;
  --color-bg: #050814;
  --color-bg-alt: #0b1024;
  --color-surface: #0f1733;
  --color-surface-alt: #111b3a;
  --color-text: #f4f6ff;
  --color-text-soft: #c2c8e5;
  --color-muted: #8e96bf;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 16px 32px rgba(0, 0, 0, 0.4);
  --container-width: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top, #182a55 0, #050814 55%);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: linear-gradient(
    135deg,
    rgba(11, 16, 36, 0.98),
    rgba(15, 23, 51, 0.98)
  );
}
.section-alt h2 {
  margin-bottom: 1rem;
}
.section-alt ul {
  margin: 0 0 1rem 1.2rem;
}
.section-alt li {
  margin-bottom: 0.4rem;
}
.section-alt-light {
  background: var(--color-light);
}
.section h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}
.section-subtitle {
  max-width: 640px;
  color: var(--color-text-soft);
  margin: 0.25rem 0 2.5rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 8, 20, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  position: relative;
  padding-bottom: 0.25rem;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-text);
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-magenta));
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 24px;
  background: 0;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}
.hero {
  padding: 4.5rem 0 4rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: radial-gradient(
    circle at left,
    var(--color-teal),
    var(--color-purple)
  );
  color: #fdfdff;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 1.1rem 0 0.4rem;
}
.hero-subtitle {
  color: var(--color-text-soft);
  max-width: 540px;
  margin: 0.25rem 0 1.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.hero-note {
  font-size: 0.9rem;
  color: var(--color-muted);
}
.hero-card {
  background: radial-gradient(
    circle at top left,
    rgba(99, 51, 200, 0.18),
    rgba(11, 17, 40, 0.98)
  );
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.hero-card p {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  margin: 0 0 1rem;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}
.hero-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-magenta));
}
.card-link {
  font-size: 0.9rem;
  color: var(--color-teal);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-magenta)
  );
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 89, 200, 0.45);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 89, 200, 0.7);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-text-soft);
  background: 0;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-text);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  color: #fff;
}
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.96rem;
  color: var(--color-text-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: var(--color-teal);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.info-card {
  background: radial-gradient(
    circle at top,
    rgba(14, 155, 207, 0.18),
    rgba(11, 16, 36, 0.98)
  );
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.4rem;
}
.info-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}
.info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.page-hero {
  padding: 3.5rem 0 2.2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 89, 200, 0.36),
    rgba(99, 51, 200, 0.4)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}
.page-hero p {
  margin: 0;
  max-width: 640px;
  color: var(--color-text-soft);
}
.callout {
  background: radial-gradient(
    circle at top left,
    rgba(0, 89, 200, 0.3),
    rgba(11, 16, 36, 0.98)
  );
  border-radius: 24px;
  padding: 2rem calc(1.5rem + 1.5vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}
.callout h2 {
  color: #fff;
}
.callout p {
  color: rgba(255, 255, 255, 0.88);
}
.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-start;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-teal);
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-card-featured {
  border-color: rgba(209, 46, 120, 0.9);
  box-shadow: 0 18px 42px rgba(209, 46, 120, 0.4);
  position: relative;
}
.service-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin: 0;
}
.service-card h3 {
  margin: 0.25rem 0;
  font-size: 1.1rem;
}
.service-price {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
  font-weight: 600;
}
.service-hours {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.service-deadline {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: italic;
  margin-top: -0.3rem;
  margin-bottom: 0.8rem;
  display: block;
}
.service-deadline::before {
  content: "⏱ ";
  color: var(--color-teal);
  font-style: normal;
}
.service-desc {
  margin: 0.8rem 0;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}
.service-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  color: var(--color-text-soft);
}
.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--color-teal);
}
.service-benefit {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.service-alt-contact {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0.1rem 0 0;
}
.service-alt-contact a {
  color: var(--color-teal);
}
.service-delivery {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-top: -0.3rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0 0.2rem;
  border-left: 3px solid var(--color-primary);
  padding-left: 0.6rem;
  line-height: 1.45;
}
.service-note {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  background: rgba(99, 51, 200, 0.06);
  border-left: 4px solid var(--color-purple);
  padding: 0.8rem 1rem;
  border-radius: 6px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.step {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 0.9rem 1rem;
  background: 0;
  border: none;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 0.94rem;
}
.faq-icon {
  font-size: 1.1rem;
  color: var(--color-teal);
  margin-left: 0.5rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition:
    max-height 0.2s ease,
    padding-bottom 0.2s ease;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin: 0.35rem 0 1rem;
}
.faq-item.open .faq-answer {
  padding-bottom: 0.8rem;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr);
  gap: 2rem;
}
.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}
.blog-card h2 {
  margin: 0 0 0.5rem;
}
.blog-card p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
}
.contact-list li {
  margin-bottom: 0.7rem;
  font-size: 0.94rem;
}
.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-muted);
}
.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}
.form-group {
  margin-bottom: 0.8rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0.55rem 0.75rem;
  background: rgba(5, 8, 20, 0.9);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.9rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--color-teal);
}
.form-note {
  font-size: 0.76rem;
  color: var(--color-muted);
  margin-top: 0.55rem;
}
.form-feedback {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}
.form-feedback-success {
  color: #1b7f3b;
}
.form-feedback-error {
  color: #c0392b;
}
.site-footer {
  padding: 2.2rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 20, 0.98);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0 1.5rem 0.5rem;
}
.footer-brand {
  margin: 0 0 0.2rem;
  font-weight: 600;
}
.footer-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 360px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
}
.footer-links a {
  color: var(--color-text-soft);
}
.footer-links a:hover {
  color: var(--color-teal);
}
.footer-bottom {
  padding: 0 1.5rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, #25d366, #0e9bcf);
  color: #fff;
  font-size: 0.86rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.lang-switcher {
  font-size: 0.9rem;
  margin-left: 1rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switcher a {
  color: var(--color-muted);
  text-decoration: none;
  margin: 0 2px;
  font-weight: 500;
}
.lang-switcher a:hover {
  color: var(--color-primary);
}
.lang-switcher .active-lang {
  color: var(--color-primary);
  font-weight: 600;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
  .two-columns,
  .grid-3,
  .steps,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    inset: 56px 0 auto 0;
    background: rgba(5, 8, 20, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.16s ease,
      opacity 0.16s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1.2rem;
  }
  .hero {
    padding-top: 3.5rem;
  }
  .promo-banner {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }
  .promo-image {
    border-radius: 14px;
  }
  .callout {
    padding: 1.8rem 1.6rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .callout-actions {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .service-card {
    padding: 1.4rem 1.2rem;
  }
}
.promo-banner {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}
.promo-banner .container {
  text-align: center;
}
.promo-image {
  max-width: 720px;
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.dev-web-callout {
  margin: 3rem auto 0;
  max-width: 900px;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  background: rgba(4, 42, 100, 0.03);
  border: 1px solid rgba(4, 42, 100, 0.1);
}
.dev-web-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.dev-web-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.dev-web-link {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  background: #0059c8;
  color: #fff;
}
.dev-web-link:hover {
  filter: brightness(1.1);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
