:root {
  --navy: #0b0d17;
  --navy-light: #12152a;
  --purple: #6366f1;
  --purple-dark: #4f46e5;
  --purple-light: #818cf8;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary-custom {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,.4);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  transition: all .2s;
  cursor: pointer;
}
.btn-outline-dark:hover {
  background: var(--purple);
  color: #fff;
}

.section-tag {
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── NAVBAR ── */
.navbar-custom {
  background: rgba(11,13,23,.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar-custom .navbar-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.navbar-custom .navbar-brand span { color: var(--purple-light); }
.navbar-custom .nav-link {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color .2s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active,
.navbar-custom .nav-link.active:hover {
  color: #fff;
}
.navbar-custom .nav-link.active { font-weight: 600; }
.navbar-custom .btn-nav {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.navbar-custom .btn-nav:hover { color: #fff; opacity: .9; }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  width: min(320px, 88vw);
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 8px 0 40px rgba(0,0,0,.45);
}
.mobile-drawer .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.drawer-brand span { color: var(--purple-light); }
.mobile-drawer .offcanvas-body {
  padding: 12px 0 24px;
}
.drawer-nav-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.drawer-nav-link {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  font-weight: 500;
  transition: background .2s, color .2s, padding-left .2s;
}
.drawer-nav-link:hover,
.drawer-nav-link.active {
  color: #fff;
  background: rgba(99,102,241,.12);
  padding-left: 28px;
}
.drawer-nav-link.active { font-weight: 600; }
.drawer-footer {
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px !important;
  font-size: 15px;
}
.offcanvas-backdrop.show { opacity: .65; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(99,102,241,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,92,246,.1) 0%, transparent 40%),
    linear-gradient(rgba(99,102,241,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-block;
  background: rgba(99,102,241,.15);
  color: var(--purple-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(99,102,241,.3);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-desc {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-btns a { flex: 0 0 auto; width: auto; }
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -10px;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.social-proof-text { color: rgba(255,255,255,.8); font-size: 13px; }
.social-proof-text strong { color: #fff; display: block; }
.stars { color: #fbbf24; font-size: 12px; }

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-visual img.main-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  object-fit: contain;
  background: #fff;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  animation: float-badge 6s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.float-card .icon.green { background: rgba(34,197,94,.2); color: #4ade80; }
.float-card .icon.purple { background: rgba(168,85,247,.2); color: #c084fc; }
.float-card .icon.blue { background: rgba(59,130,246,.2); color: #60a5fa; }
.float-card .icon.orange { background: rgba(249,115,22,.2); color: #fb923c; }
.float-card .icon.teal { background: rgba(20,184,166,.2); color: #2dd4bf; }
.fc-1 { top: 5%; left: -5%; animation-duration: 7s; animation-delay: 0s; }
.fc-2 { top: 25%; right: -8%; animation-duration: 8s; animation-delay: -1.5s; }
.fc-3 { bottom: 35%; left: -10%; animation-duration: 6.5s; animation-delay: -3s; }
.fc-4 { bottom: 15%; right: -5%; animation-duration: 7.5s; animation-delay: -2s; }
.fc-5 { top: 55%; right: 5%; animation-duration: 8.5s; animation-delay: -4s; }

/* ── STATS BAR ── */
.stats-bar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  padding: 28px 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stat-item {
  text-align: center;
  padding: 8px;
}
.stat-item i {
  font-size: 28px;
  color: var(--purple);
  margin-bottom: 8px;
  display: block;
}
.stat-item .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
}
.stat-item .label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── ABOUT ── */
.about-section { padding: 80px 0; background: #fff; }
.about-photo-wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.about-photo-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.about-signature {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-dark);
  margin-top: 12px;
  text-align: center;
}
.about-role {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.about-profile-card {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  transition: transform .2s;
}
.about-profile-card:hover {
  transform: translateY(-4px);
}
.about-profile-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.about-cta-btn {
  width: 100%;
  justify-content: center;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}
.check-item i { color: var(--purple); font-size: 16px; flex-shrink: 0; }
.badge-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  margin-bottom: 12px;
}
.badge-card.it-house {
  text-align: center;
  padding: 20px;
}
.badge-card.it-house .logo-text {
  font-weight: 800;
  font-size: 16px;
  color: var(--purple);
}

/* ── SERVICES ── */
.services-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,.12);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-icon.green { background: #dcfce7; color: #16a34a; }
.service-icon.pink { background: #fce7f3; color: #db2777; }
.service-icon.blue { background: #dbeafe; color: #2563eb; }
.service-icon.orange { background: #ffedd5; color: #ea580c; }
.service-icon.purple { background: #ede9fe; color: #7c3aed; }
.service-icon.teal { background: #ccfbf1; color: #0d9488; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card li i { font-size: 12px; }
.service-card-link {
  display: block;
  color: inherit;
  height: 100%;
}
.service-card-link:hover { color: inherit; }
.service-card-link:hover .service-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,.12);
  border-color: var(--purple-light);
}
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
}

/* ── PRICING ── */
.pricing-section { padding: 80px 0; background: #fff; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  position: relative;
  transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border: 2px solid var(--purple);
  box-shadow: 0 12px 40px rgba(99,102,241,.15);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
}
.discount-badge {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pricing-card.popular .discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin-bottom: 0;
}
.pricing-card .price-old {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pricing-card .price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.pricing-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card li i { color: var(--purple); }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-note i { color: var(--purple); margin: 0 4px; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.testimonial-videos { margin-top: 8px; }
.testimonial-video {
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}
.testimonial-video.landscape {
  aspect-ratio: 16 / 9;
}
.testimonial-video.portrait {
  aspect-ratio: 9 / 16;
  max-width: 260px;
  margin: 0 auto;
}
.testimonial-video video,
.testimonial-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
  border: 0;
  background: #000;
}
.testimonial-video iframe { aspect-ratio: 16 / 9; }
.testimonial-video.portrait iframe { aspect-ratio: 9 / 16; }
.video-label {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
@media (max-width: 767px) {
  .testimonial-videos .col-6 { flex: 0 0 50%; max-width: 50%; }
  .testimonial-video.portrait { max-width: 100%; }
}

/* ── DARK STATS ── */
.dark-stats {
  background: var(--navy);
  padding: 48px 0;
}
.dark-stats .stat-item i { color: var(--purple-light); }
.dark-stats .stat-item .num { color: #fff; }
.dark-stats .stat-item .label { color: rgba(255,255,255,.6); }

/* ── CTA ── */
.cta-section {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(99,102,241,.12) 0%, transparent 60%);
}
.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-section p {
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-plane {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  color: rgba(99,102,241,.2);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-footer h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
}
.site-footer a:hover { color: #fff; }
.footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--purple-light); }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  margin-right: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.footer-social a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.footer-contact i {
  color: var(--purple-light);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99,102,241,.4);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .float-card { display: none; }
  .pricing-card.popular { transform: none; }
  .cta-plane { display: none; }
  .check-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
  .container,
  .container-fluid,
  .navbar-custom > .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .hero { padding-top: 100px; min-height: auto; }
  .stats-bar { margin-top: -30px; }
  .stat-item { margin-bottom: 16px; }
}
