[data-lang] {
  cursor: pointer;
}

:root {
  --landing-bg: #f3f7ff;
  --landing-surface: #ffffff;
  --landing-surface-alt: #ecf6ff;
  --landing-text: #051631;
  --landing-text-muted: #5b6680;
  --landing-border: rgba(5, 22, 49, 0.12);
  --landing-radius: 22px;
  --landing-accent: #0a7bff;
  --landing-accent-dark: #06349a;
  --landing-accent-alt: #00c26f;
  --landing-soft: #dff0ff;
  --landing-soft-alt: #dbfff1;
  --landing-shadow: 0 25px 65px -35px rgba(10, 123, 255, 0.35);
  --landing-shadow-soft: 0 12px 30px rgba(5, 22, 49, 0.08);
  --bs-primary: var(--landing-accent);
  --bs-primary-rgb: 10, 123, 255;
  --bs-link-color: var(--landing-accent);
  --bs-link-hover-color: #005dd1;
}

[data-theme="dark"] {
  --landing-bg: #030a1a;
  --landing-surface: #0f1c33;
  --landing-surface-alt: #0b1424;
  --landing-text: #f8fafc;
  --landing-text-muted: #c9d3f5;
  --landing-border: rgba(248, 250, 252, 0.12);
  --landing-soft: rgba(10, 123, 255, 0.2);
  --landing-soft-alt: rgba(0, 194, 111, 0.15);
}

html,
body {
  font-family: var(--ui-font-base);
  background: var(--landing-bg);
  color: var(--landing-text);
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(10, 123, 255, 0.2),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 194, 111, 0.25),
      transparent 60%
    );
  pointer-events: none;
  opacity: 0.65;
  z-index: -1;
}

body.has-fixed-navbar {
  padding-top: var(--navbar-offset, 76px);
}

.container-wide {
  max-width: 1400px;
}

@media (min-width: 1600px) {
  .container-wide {
    max-width: 1520px;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 1.05rem;
  }
  p {
    font-size: 1.05rem;
  }
  .text-secondary {
    font-size: 1.02rem;
  }
  .lead,
  .section-head p,
  .hero-section p {
    font-size: 1.2rem;
  }
  h1,
  .display-5,
  .hero-title {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.6rem;
  }
  h3 {
    font-size: 2rem;
  }
}

.anchor-target {
  scroll-margin-top: calc(var(--navbar-offset, 72px) + 24px);
}

.navbar-landing {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(5, 22, 49, 0.08);
  box-shadow: 0 18px 55px -40px rgba(10, 123, 255, 0.5);
  backdrop-filter: blur(18px);
  padding: 0.65rem 0;
}

.navbar-landing .navbar-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--landing-text);
}

.brand-accent {
  color: var(--landing-accent);
}

.navbar-landing .nav-link {
  color: rgba(5, 22, 49, 0.78);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  transition: all 0.25s ease;
}

.navbar-landing .nav-link:hover,
.navbar-landing .nav-link:focus,
.navbar-landing .nav-link.active {
  color: var(--landing-accent);
  background: rgba(10, 123, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(10, 123, 255, 0.3);
}

.navbar-landing .navbar-toggler {
  border: 1px solid rgba(5, 22, 49, 0.25);
  border-radius: 12px;
}

.navbar-landing .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(10, 123, 255, 0.25);
}

.btn.btn-modern {
  background: linear-gradient(
    135deg,
    var(--landing-accent),
    var(--landing-accent-dark)
  );
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 15px 30px rgba(10, 123, 255, 0.35);
}

.btn.btn-modern:hover {
  background: linear-gradient(135deg, var(--landing-accent-dark), #042369);
  color: #fff;
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(5, 22, 49, 0.16);
  color: var(--landing-text);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost:hover {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
  background: rgba(10, 123, 255, 0.08);
}

.btn-outline-primary {
  border-radius: 999px;
  border-color: rgba(24, 24, 24, 0.1);
  color: var(--landing-text);
  font-weight: 600;
}

.btn-outline-primary:hover {
  border-color: var(--landing-accent);
  background: rgba(10, 123, 255, 0.08);
  color: var(--landing-accent);
}

.hero-section {
  min-height: calc(100vh - var(--navbar-offset, 76px));
  background: linear-gradient(135deg, #f3f8ff, #e6fbff 60%, #e9fff6);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='300' height='240' viewBox='0 0 300 240' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q80 0 160 40T320 40' stroke='%23c9e0ff' stroke-width='1' fill='none'/%3E%3C/svg%3E")
    repeat;
  opacity: 0.25;
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 123, 255, 0.15);
  color: var(--landing-accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  color: #031432;
}

.hero-section p {
  color: rgba(5, 22, 49, 0.68);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat-card {
  background: var(--landing-surface);
  border-radius: var(--landing-radius);
  border: 1px solid rgba(28, 25, 23, 0.08);
  padding: 1rem 1.25rem;
  box-shadow: var(--landing-shadow-soft);
}

.hero-stat-card span {
  display: block;
}

.hero-stat-card .value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
}

.hero-stat-card .label {
  font-size: 0.85rem;
  color: var(--landing-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-collage {
  position: relative;
  padding-left: 2rem;
}

.hero-collage .main-shot {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--landing-shadow);
  border: 1px solid rgba(24, 24, 24, 0.08);
  object-fit: cover;
}

.hero-collage .collage-card {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  background: #fff;
  border-radius: 22px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--landing-shadow);
  max-width: 260px;
}

.hero-collage .collage-card strong {
  font-size: 0.95rem;
  color: var(--landing-accent);
}

.hero-collage .collage-mini {
  position: absolute;
  right: 0.5rem;
  bottom: -1.5rem;
  background: #fff;
  border-radius: 20px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--landing-shadow);
  border: 1px solid rgba(24, 24, 24, 0.06);
  max-width: 280px;
}

.hero-collage .collage-mini img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-collage .collage-mini p {
  font-size: 0.85rem;
  color: var(--landing-text);
  margin-bottom: 0;
  line-height: 1.3;
}

.hero-media {
  position: relative;
  background: var(--landing-surface);
  border-radius: 30px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 35px 85px rgba(255, 157, 22, 0.15);
  padding: 1rem;
}

.hero-image-wrapper {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.05);
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.floating-badge {
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  border: 1px solid rgba(10, 123, 255, 0.3);
  color: var(--landing-accent);
  background: #eef5ff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.section-padding {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-head p {
  color: var(--landing-text-muted);
}

#features .mini-feature-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--landing-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--landing-shadow-soft);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#features .mini-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--landing-shadow);
}

#features .mini-feature-card .feature-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 123, 255, 0.12);
  color: var(--landing-accent);
  font-size: 1.4rem;
}

.feature-detail-card {
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--landing-border);
  padding: 2.5rem;
  box-shadow: var(--landing-shadow-soft);
}

.feature-detail-card .badge {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.feature-detail-card li {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  color: var(--landing-text-muted);
}

.feature-detail-card li i {
  color: var(--landing-accent);
}

.feature-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--landing-shadow);
  border: 1px solid rgba(28, 25, 23, 0.06);
}

.feature-image-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.why-best-section {
  background: linear-gradient(135deg, #0a7bff, #4c4bff 45%, #00c26f);
  position: relative;
  color: #f8fbff;
  border-radius: 38px;
  overflow: hidden;
  margin: 0;
  padding: 4rem 0;
  box-shadow: 0 25px 60px -35px rgba(6, 52, 154, 0.45);
}

.why-best-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.4),
    transparent 55%
  );
  pointer-events: none;
}

.why-best-section .section-head,
.why-best-section .section-head h2,
.why-best-section .section-head p {
  color: #f8fbff;
}

.why-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--landing-border);
  border-radius: 24px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--landing-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--landing-shadow);
}

.why-card h5 {
  color: #1f1f29;
}

.why-card p {
  color: var(--landing-text-muted);
}

.why-card .icon-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: var(--landing-soft);
  color: var(--landing-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.benefit-card {
  border-radius: 20px;
  border: 1px solid rgba(24, 24, 24, 0.08);
  padding: 1.75rem;
  background: #fff;
  height: 100%;
  box-shadow: var(--landing-shadow-soft);
}

.benefit-card h6 {
  font-weight: 700;
}

.bg-accent-soft {
  background: rgba(10, 123, 255, 0.15) !important;
}

.pricing-section {
  background: linear-gradient(180deg, #eff5ff, #e3f6ff 60%, #eafbf6);
  position: relative;
}

.pricing-benefits-card {
  background: #fff;
  color: var(--landing-text);
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: var(--landing-shadow-soft);
}

.pricing-benefits-card h5 {
  color: var(--landing-text);
}

.pricing-benefits-card li {
  color: var(--landing-text-muted);
}

.pricing-head,
.pricing-head h2,
.pricing-head p {
  color: #1f1f29 !important;
}

.pricing-head .hero-pill {
  background: rgba(10, 123, 255, 0.15);
  color: var(--landing-accent);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.6),
    transparent 55%
  );
}

.pricing-slider {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--landing-shadow-soft);
}

.pricing-slider label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--landing-text-muted);
}

.pricing-slider input[type="range"] {
  width: 100%;
  accent-color: var(--landing-accent);
}

.plan-card {
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.08);
  padding: 2rem;
  position: relative;
  box-shadow: var(--landing-shadow-soft);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--landing-shadow);
}

.plan-card.featured {
  border: 2px solid var(--landing-accent);
  box-shadow: var(--landing-shadow);
}

.plan-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d1824;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.plan-card li {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--landing-text-muted);
}

.plan-card li i {
  color: var(--landing-accent);
}

.testimonial-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.05);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--landing-shadow-soft);
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--landing-text-muted);
}

.cta-banner {
  border-radius: 26px;
  background: linear-gradient(135deg, #0a7bff, #00c26f);
  color: #fff;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner .btn {
  flex-shrink: 0;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-gallery .primary-media {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 100%;
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: var(--landing-shadow);
}

.about-gallery .primary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery .primary-media .badge-tile {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(6px);
}

.about-gallery .primary-media .badge-tile small {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-gallery .secondary-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-gallery .secondary-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.08);
  padding: 1.5rem;
  box-shadow: var(--landing-shadow-soft);
}

.about-gallery .secondary-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.about-gallery .stat-chip {
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.1);
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.about-highlight {
  border-radius: 24px;
  background: linear-gradient(135deg, #eef5ff, #fbfeff);
  padding: 2.5rem;
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: var(--landing-shadow-soft);
}

.about-highlight .metric {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-highlight .metric .value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d1824;
}

.about-highlight .metric .label {
  color: var(--landing-text-muted);
  font-size: 0.9rem;
}

.contact-card,
.contact-form-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: var(--landing-shadow-soft);
  padding: 2.25rem;
}

.contact-form-card input,
.contact-form-card textarea {
  border: 1px solid rgba(24, 24, 24, 0.1);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--landing-accent);
  box-shadow: 0 0 0 3px rgba(10, 123, 255, 0.18);
}

.contact-card .contact-chip {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  background: rgba(10, 123, 255, 0.12);
  color: var(--landing-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-card .contact-option {
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(24, 24, 24, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.contact-card .contact-option small {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-text-muted);
}

.contact-card .service-tag {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: rgba(10, 123, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-card .response-card {
  border-radius: 20px;
  background: linear-gradient(135deg, #041026, #0b2748);
  color: #fff;
  padding: 1.25rem;
  box-shadow: var(--landing-shadow);
}

.footer {
  background: #041026;
  color: #c4cede;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h6 {
  color: #f4f9ff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer .footer-links li {
  margin-bottom: 0.35rem;
}

.footer .footer-links li:last-child {
  margin-bottom: 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: #fff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
  opacity: 1;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a7bff, #00c26f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--landing-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 15px 30px rgba(10, 123, 255, 0.35);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

#langButtonsMobile button[data-lang] {
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.1);
  background: transparent;
  color: var(--landing-text);
  padding: 0.35rem 0.9rem;
  transition: all 0.25s ease;
}

#langButtonsMobile button[data-lang]:hover {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(10, 123, 255, 0.3);
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-media {
    margin-top: 2rem;
  }

  .hero-collage {
    padding-left: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero-collage .collage-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    width: min(420px, 100%);
  }

  .hero-collage .collage-mini {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 0;
    width: min(420px, 100%);
  }

  .cta-banner {
    text-align: center;
    justify-content: center;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .plan-card,
  .feature-detail-card,
  .contact-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .hero-collage .collage-card,
  .hero-collage .collage-mini {
    width: 100%;
    max-width: none;
  }

  .hero-collage .collage-card {
    padding: 1.15rem 1.25rem;
    text-align: left;
  }

  .hero-collage .collage-mini {
    flex-direction: column;
    text-align: left;
    gap: 0.75rem;
    padding: 1.2rem;
  }

  .hero-collage .collage-mini img {
    width: 100%;
    height: auto;
    border-radius: 18px;
  }
}
