:root {
  --brand-blue: #2563eb;
  --brand-cyan: #06b6d4;
  --ink: #0f172a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
}

section {
  scroll-margin-top: 92px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 0.75rem;
  background: #ffffff;
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.nav-link,
.mobile-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover {
  color: var(--brand-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-link {
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
}

.mobile-link:hover {
  background: #eff6ff;
}

.hero-section {
  min-height: 100vh;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 0.9rem;
  padding: 1rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.09));
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(20px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 1rem;
  animation: floatCard 5s ease-in-out infinite;
}

.hero-image-wrap {
  overflow: hidden;
  border-radius: 0.5rem;
}

.hero-image-wrap img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  padding: 0.78rem 1rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
}

.chip-one {
  left: 1.6rem;
  top: 2rem;
}

.chip-two {
  right: 1.25rem;
  top: 45%;
}

.chip-three {
  bottom: 1.75rem;
  left: 2.2rem;
}

.stat-card {
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.stat-card strong::after {
  content: "+";
}

.stat-card:nth-child(4) strong::after {
  content: "%";
}

.stat-card span {
  margin-top: 0.45rem;
  display: block;
  color: #dbeafe;
  font-size: 0.88rem;
  font-weight: 600;
}

.section-white,
.section-blue,
.section-muted {
  padding: 5.5rem 0;
}

.section-white {
  background: #ffffff;
}

.section-muted {
  background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.section-blue {
  background:
    radial-gradient(circle at 10% 15%, rgba(6, 182, 212, 0.28), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 62%, #0891b2 100%);
  color: #ffffff;
}

.section-heading {
  margin: 0 auto 3rem;
  max-width: 760px;
  padding: 0 1rem;
  text-align: center;
}

.section-heading h2 {
  margin-top: 0.75rem;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-blue .section-heading h2 {
  color: #ffffff;
}

.section-heading p {
  margin-top: 1rem;
  color: #64748b;
  line-height: 1.8;
}

.section-blue .section-heading p {
  color: #dbeafe;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.48rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: #bfdbfe;
}

.service-card,
.domain-card,
.pricing-card,
.contact-form,
.testimonial-shell {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.service-card {
  padding: 1.65rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.domain-card:hover,
.pricing-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 28px 85px rgba(37, 99, 235, 0.16);
}

.service-card > i,
.domain-card > i {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 1.35rem;
}

.service-card h3,
.domain-card h3,
.pricing-card h3 {
  margin-top: 1.35rem;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 800;
}

.service-card ul,
.pricing-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
  color: #64748b;
  font-size: 0.95rem;
}

.service-card li,
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.service-card li::before,
.pricing-card li::before {
  margin-top: 0.34rem;
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand-blue);
  content: "";
}

.domain-card {
  padding: 1.35rem;
  color: #0f172a;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.domain-card p {
  margin-top: 0.75rem;
  min-height: 4.5rem;
  color: #64748b;
  line-height: 1.65;
}

.domain-card a,
.pricing-card a {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1d4ed8;
  font-weight: 800;
}

.domain-card a::after,
.pricing-card a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.pricing-card {
  position: relative;
  padding: 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card p {
  margin-top: 0.55rem;
  min-height: 3rem;
  color: #64748b;
}

.pricing-card strong {
  margin-top: 1.15rem;
  display: block;
  color: #0f172a;
  font-size: 1.6rem;
}

.pricing-card.highlighted {
  border-color: rgba(37, 99, 235, 0.5);
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.18);
}

.plan-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: #1d4ed8;
  color: #ffffff;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-pill,
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.5rem;
  background: #ffffff;
  padding: 1rem;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.feature-pill i,
.contact-item i {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.5rem;
  background: #eff6ff;
  color: #1d4ed8;
}

.testimonial-shell {
  overflow: hidden;
  padding: 1.25rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  padding: 1.5rem;
}

.testimonial-card img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  object-fit: cover;
}

.stars {
  color: #f59e0b;
}

.slider-btn {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: #dbeafe;
  transform: translateY(-2px);
}

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #bfdbfe;
  transition: width 0.2s ease, background 0.2s ease;
}

.dot.active {
  width: 1.6rem;
  background: #2563eb;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  text-align: left;
  color: #0f172a;
  font-weight: 800;
}

.faq-button i {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-button i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: #64748b;
  line-height: 1.75;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open .faq-content {
  max-height: 12rem;
  padding-bottom: 1.2rem;
}

.contact-form {
  padding: 1.25rem;
}

.contact-form label {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  padding: 0.9rem 1rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.input-error {
  border-color: #ef4444 !important;
}

.otp-panel {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  padding: 1rem;
}

.otp-panel h3 {
  color: #0f172a;
  font-weight: 800;
}

.otp-panel p {
  margin-top: 0.3rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.otp-button {
  align-self: end;
  border-radius: 0.5rem;
  padding: 0.95rem 1.1rem;
  color: #ffffff;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.otp-button.secondary {
  background: #1d4ed8;
}

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

.otp-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

footer a {
  display: block;
  margin-top: 0.65rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffffff;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
}

.social-link {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 1.25rem;
  z-index: 45;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-whatsapp {
  bottom: 1.25rem;
  background: #22c55e;
  font-size: 1.55rem;
}

.scroll-top {
  bottom: 5.1rem;
  background: #1d4ed8;
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-whatsapp:hover,
.scroll-top:hover {
  transform: translateY(-4px);
}

.otp-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.55);
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.otp-popup.hidden {
  display: none;
}

.otp-popup-card {
  position: relative;
  width: min(100%, 420px);
  border-radius: 0.5rem;
  background: #ffffff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.otp-popup-close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  color: #64748b;
}

.otp-popup-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 1.8rem;
}

.otp-popup-card h2 {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 800;
}

.otp-popup-card p {
  margin-top: 0.7rem;
  color: #64748b;
  line-height: 1.7;
}

.otp-popup-ok {
  margin-top: 1.3rem;
  border-radius: 0.5rem;
  background: #1d4ed8;
  padding: 0.85rem 1.6rem;
  color: #ffffff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (min-width: 640px) {
  .testimonial-card {
    grid-template-columns: auto 1fr;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-image-wrap img {
    min-height: 320px;
  }

  .floating-chip {
    font-size: 0.72rem;
    padding: 0.62rem 0.75rem;
  }

  .chip-two {
    right: 0.75rem;
  }

  .section-white,
  .section-blue,
  .section-muted {
    padding: 4.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
