:root {
  --bg: #0a0f1d;
  --bg-alt: #11182b;
  --surface: #161f36;
  --surface-2: #1b2643;
  --text: #e9eefb;
  --muted: #b2bde0;
  --accent: #4e8dff;
  --accent-2: #8b5cf6;
  --success: #22c55e;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
}

html[data-theme="light"] {
  --bg: #f6f9ff;
  --bg-alt: #eaf0ff;
  --surface: #ffffff;
  --surface-2: #f3f6ff;
  --text: #131a2f;
  --muted: #4d5a82;
  --accent: #2563eb;
  --accent-2: #7c3aed;
  --success: #16a34a;
  --border: rgba(19, 26, 47, 0.12);
  --shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: radial-gradient(circle at 80% 0%, rgba(78, 141, 255, 0.16), transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.18), transparent 35%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
}

.section-head {
  margin-bottom: 2rem;
  text-align: center;
}

.section-head.left {
  text-align: left;
}

#about .section-head {
  text-align: left;
  max-width: 760px;
}

.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-family: Poppins, sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  margin: 0.8rem 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(10, 15, 29, 0.76);
  border-bottom: 1px solid var(--border);
}

html[data-theme="light"] .header {
  background: rgba(246, 249, 255, 0.86);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.logo span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.62rem;
  opacity: 0.8;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--text);
  background: var(--surface-2);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content p {
  color: var(--muted);
}

.hero-tag {
  color: var(--accent);
  font-weight: 600;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 12px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(78, 141, 255, 0.35);
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
}

.btn-whatsapp {
  margin-top: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-metrics div {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(130deg, rgba(78, 141, 255, 0.18), rgba(139, 92, 246, 0.2));
}

.glass {
  backdrop-filter: blur(12px);
  background: rgba(12, 18, 33, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  padding: 1.2rem;
  border-radius: 14px;
}

.hero-card ul {
  list-style: none;
  margin-top: 0.7rem;
}

.hero-card li {
  margin: 0.38rem 0;
  color: var(--muted);
}

.hero-card i {
  color: var(--success);
  margin-right: 0.4rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 7s ease-in-out infinite;
}

.orb-1 {
  width: 110px;
  height: 110px;
  top: 16%;
  left: 12%;
  background: radial-gradient(circle at 30% 30%, #7ab5ff, #2563eb);
}

.orb-2 {
  width: 92px;
  height: 92px;
  top: 50%;
  right: 12%;
  background: radial-gradient(circle at 30% 30%, #b794ff, #7c3aed);
  animation-delay: 1.2s;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.about-grid,
.service-grid,
.portfolio-grid,
.testimonial-grid,
.team-grid,
.pricing-grid,
.blog-grid,
.footer-grid,
.contact-grid,
.careers-grid {
  display: grid;
  gap: 1rem;
}

.icon-list,
.job-list,
.pricing-card ul,
.footer ul,
.contact-info {
  list-style: none;
}

.icon-list li,
.job-list li,
.pricing-card li,
.contact-info li {
  margin: 0.45rem 0;
  color: var(--muted);
}

.icon-list i,
.contact-info i {
  color: var(--accent);
  margin-right: 0.45rem;
}

.about-panel {
  height: 100%;
}
.about-shell {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.about-story {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(78, 141, 255, 0.14), rgba(139, 92, 246, 0.14)), var(--surface);
}

.about-story::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.26), transparent 65%);
}

.about-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-story h3 {
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  max-width: 22ch;
}

.about-story > p:last-of-type {
  max-width: 64ch;
  color: var(--muted);
}

.about-metrics {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-metrics div {
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.about-metrics strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.about-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-panel h3 {
  margin-bottom: 0.55rem;
}

.about-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.about-panel p {
  color: var(--muted);
}

.service-card i {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.service-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
}

.service-link:hover {
  color: var(--text);
}

.service-card,
.project-card,
.card,
.tech-badges span,
.faq-item,
.pricing-card,
.blog-grid .card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.project-card:hover,
.card:hover,
.tech-badges span:hover,
.faq-item:hover,
.pricing-card:hover,
.blog-grid .card:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 141, 255, 0.5);
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.tech-badges span {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 600;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-image {
  height: 180px;
}

.project-one {
  background: linear-gradient(120deg, #0f172a, #1d4ed8 45%, #60a5fa);
}

.project-two {
  background: linear-gradient(120deg, #312e81, #7c3aed 45%, #a78bfa);
}

.project-three {
  background: linear-gradient(120deg, #14532d, #059669 45%, #34d399);
}

.project-body {
  padding: 1rem;
}

/* ── Best Seller Product ── */
.product-spotlight {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(78, 141, 255, 0.35);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.product-spotlight-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.product-icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(78, 141, 255, 0.35);
}

.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.product-tagline {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.product-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.5;
}

.product-benefits li i {
  color: #34d399;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.product-metrics {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product-metrics div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-metrics strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.product-metrics span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .product-spotlight-inner {
    flex-direction: column;
  }
  .product-metrics {
    gap: 1.2rem;
  }
}

.process-steps {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.social-row {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--muted);
}

.social-row a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.pricing-card .price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-card.featured {
  border-color: rgba(78, 141, 255, 0.5);
  position: relative;
}

.chip {
  position: absolute;
  top: -12px;
  right: 14px;
  font-size: 0.72rem;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.blog-grid .card a {
  color: var(--accent);
  font-weight: 600;
}

.insights-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.insights-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
  overflow: hidden;
  scroll-behavior: smooth;
}

.insight-card {
  min-height: 210px;
}

.insight-card a {
  color: var(--accent);
  font-weight: 600;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider-btn:hover {
  border-color: rgba(78, 141, 255, 0.5);
}

.insights-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.insights-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.insights-dots button.active {
  background: var(--accent);
}

.insights-view-all {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.8rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  padding: 0.75rem;
  font: inherit;
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.map-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 300px;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
  padding-top: 2.2rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
}

.footer ul {
  margin-top: 0.8rem;
}

.footer li {
  margin: 0.4rem 0;
}

.footer-bottom {
  margin-top: 1.8rem;
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  color: #fff;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.5);
  z-index: 1200;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-animate="fade-in"] {
  transform: none;
}

.reveal[data-animate="fade-in"].is-visible {
  opacity: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 4%;
    left: 4%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0.35rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--surface-2);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .insights-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 768px) {
  .hero-grid,
  .careers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-shell {
    grid-template-columns: 1.15fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .testimonial-grid,
  .team-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
  }

  .contact-grid .map-box {
    grid-column: span 2;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-grid .map-box {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
