:root{
  --bg:#0b0c10;
  --panel:#0f1118;
  --card:#121522;
  --text:#e9ecf1;
  --muted:#a9b0bf;
  --line:rgba(255,255,255,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --r:18px;
  --grad: linear-gradient(90deg, #7c3aed, #2563eb);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

.bg{position:fixed; inset:0; z-index:-2; overflow:hidden}
.blob{
  position:absolute; filter: blur(50px); opacity:.55;
  width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #7c3aed, transparent 60%),
              radial-gradient(circle at 70% 70%, #2563eb, transparent 60%);
  animation: float 12s ease-in-out infinite;
}
.b1{left:-120px; top:-120px}
.b2{right:-140px; bottom:-140px; animation-delay:-3s}
.grid{
  position:absolute; inset:-2px;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity:.08;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 65%);
}

@keyframes float{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(20px, -20px, 0) scale(1.06)}
}

.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,12,16,.55);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-logo{
  height:45px;
  width:auto;
  filter: drop-shadow(0 4px 12px rgba(124,58,237,.4));
  transition: transform .3s ease, filter .3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}
.brand-logo:hover{
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 20px rgba(124,58,237,.6));
}
.brand__mark{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(124,58,237,.25);
  font-weight:800;
}
.brand__text{font-weight:700; letter-spacing:.2px}

@keyframes logoFloat{
  0%, 100%{transform: translateY(0)}
  50%{transform: translateY(-5px)}
}

.menu{
  display:flex; align-items:center; gap:18px;
}
.menu a{
  color:var(--muted);
  font-weight:600;
  padding:8px 10px;
  border-radius:12px;
}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.05)}
.pill{
  background: var(--grad) !important;
  color:white !important;
  box-shadow: 0 14px 34px rgba(37,99,235,.18);
}
.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.burger span{
  display:block; width:18px; height:2px; background:var(--text);
  margin:4px auto; border-radius:2px;
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:34px;
  padding:52px 0 24px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--muted);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
}
h1{
  margin:16px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.grad{
  background: var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 1.06rem;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 0}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform: translateY(-2px); background:rgba(255,255,255,.06)}
.btn.primary{
  border:0; color:white; background: var(--grad);
  box-shadow: 0 18px 40px rgba(124,58,237,.18);
}
.btn.ghost{background: transparent}
.meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.chip{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:650;
  font-size:.95rem;
}

.logo-showcase{
  position:relative;
  display:grid;
  place-items:center;
  padding:0;
}
.hero-logo{
  width:100%;
  max-width:600px;
  height:auto;
  position:relative;
  z-index:2;
  filter: drop-shadow(0 20px 60px rgba(124,58,237,.5));
  animation: logoHero 4s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
  transition: transform .5s ease;
  mix-blend-mode: screen;
  opacity: 0.95;
}
.hero-logo:hover{
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 30px 80px rgba(124,58,237,.8)) drop-shadow(0 0 40px rgba(37,99,235,.6));
  opacity: 1;
}
.logo-glow{
  position:absolute;
  inset:-50px;
  background: radial-gradient(circle at center, rgba(124,58,237,.4), rgba(37,99,235,.3), transparent 70%);
  filter: blur(60px);
  animation: glowPulse 3s ease-in-out infinite;
  z-index:1;
}

@keyframes logoHero{
  0%, 100%{transform: translateY(0) rotate(0deg)}
  25%{transform: translateY(-15px) rotate(-2deg)}
  50%{transform: translateY(-20px) rotate(0deg)}
  75%{transform: translateY(-15px) rotate(2deg)}
}

@keyframes logoGlow{
  0%{opacity:.6; transform: scale(.9)}
  100%{opacity:1; transform: scale(1.1)}
}

@keyframes glowPulse{
  0%, 100%{opacity:.5; transform: scale(1)}
  50%{opacity:.8; transform: scale(1.2)}
}

.preview-carousel{
  position:relative;
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.preview-slides{
  position:relative;
  width:100%;
  aspect-ratio: 3/2;
}
.preview-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity 1s ease-in-out;
}
.preview-slide.active{
  opacity:1;
  z-index:1;
}
.preview-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.preview-label{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:16px;
  background: linear-gradient(to top, rgba(11,12,16,.95), transparent);
  color:var(--text);
  font-weight:700;
  font-size:1.1rem;
  text-align:center;
}
.preview-dots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform: translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}
.preview-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.3);
  cursor:pointer;
  transition: all .3s ease;
  border:2px solid transparent;
}
.preview-dot.active{
  background: var(--grad);
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(124,58,237,.5);
}
.preview-dot:hover{
  background: rgba(255,255,255,.6);
  transform: scale(1.1);
}

.mock{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock__bar{
  display:flex; gap:7px;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.mock__bar span{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.12);
}
.mock__content{padding:16px; display:grid; gap:12px}
.mock__card{
  height:70px;
  border-radius:16px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(124,58,237,.22), rgba(37,99,235,.14));
}
.mock__caption{
  padding:0 16px 16px;
  color:var(--muted);
  font-size:.95rem;
}

.section{padding:48px 0}
.section__head{display:flex; justify-content:space-between; align-items:flex-end; gap:18px; margin-bottom:18px}
.section__head h2{margin:0; font-size: clamp(22px, 2.2vw, 30px)}
.section__head p{margin:0; color:var(--muted); max-width:560px}

/* Why Choose Us Carousel */
.why-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 40px auto 20px;
  padding: 0 60px;
}

.why-carousel {
  overflow: hidden;
  border-radius: 16px;
}

.why-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card {
  min-width: calc((100% - 48px) / 3);
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.08), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(138, 94, 255, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(138, 94, 255, 0.4);
  box-shadow: 0 20px 60px rgba(138, 94, 255, 0.2);
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.12), rgba(37, 99, 235, 0.08));
}

.why-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(138, 94, 255, 0.3));
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.why-card h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.why-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(138, 94, 255, 0.3);
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.15), rgba(37, 99, 235, 0.1));
  backdrop-filter: blur(10px);
  color: var(--accent);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  border-color: rgba(138, 94, 255, 0.6);
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.25), rgba(37, 99, 235, 0.15));
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(138, 94, 255, 0.3);
}

.carousel-arrow-prev {
  left: 0;
}

.carousel-arrow-next {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(138, 94, 255, 0.2);
  border: 2px solid rgba(138, 94, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(138, 94, 255, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-color: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* Remove old grid */
.why-grid {
  display: none;
}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}

/* Testimonials Page Styles */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-full {
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.08), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(138, 94, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-full:hover::before {
  transform: scaleX(1);
}

.testimonial-full:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 94, 255, 0.4);
  box-shadow: 0 20px 60px rgba(138, 94, 255, 0.2);
}

.testimonial-header-full {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.testimonial-avatar-full {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(138, 94, 255, 0.3);
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(138, 94, 255, 0.2);
}

.testimonial-info-full {
  flex: 1;
  min-width: 200px;
}

.testimonial-name-full {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial-role-full {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 600;
}

.testimonial-date {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.stars-full {
  color: #ffd700;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.rating-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-text-full {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px 0;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid rgba(138, 94, 255, 0.3);
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(138, 94, 255, 0.15);
  border: 1px solid rgba(138, 94, 255, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:18px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* Pricing Cards */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

/* Mini Cards (Summary View) */
.pricing-card-mini {
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.08), rgba(37, 99, 235, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(138, 94, 255, 0.3);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card-mini::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card-mini:hover::before {
  transform: scaleX(1);
}

.pricing-card-mini:hover {
  border-color: rgba(138, 94, 255, 0.6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(138, 94, 255, 0.25), 0 0 0 1px rgba(138, 94, 255, 0.1) inset;
}

.pricing-card-mini.featured-mini {
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.15), rgba(37, 99, 235, 0.12));
  border: 2px solid rgba(138, 94, 255, 0.5);
  box-shadow: 0 8px 32px rgba(138, 94, 255, 0.2);
}

.pricing-card-mini.featured-mini::before {
  height: 5px;
  background: linear-gradient(90deg, #8a5eff, #5e8aff, #8a5eff);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pricing-card-mini.premium-mini {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 215, 0, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
  position: relative;
}

.pricing-card-mini.premium-mini::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  animation: shimmer 4s infinite;
  pointer-events: none;
}

.pricing-card-mini h3 {
  font-size: 24px;
  margin: 16px 0 12px 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.pricing-card-mini p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(138, 94, 255, 0.2), rgba(138, 94, 255, 0.1));
  color: var(--accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(138, 94, 255, 0.3);
}

.mini-badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(138, 94, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.click-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(138, 94, 255, 0.05);
  border-radius: 8px;
}

.pricing-card-mini:hover .click-hint {
  opacity: 1;
}

/* Package Modal */
.package-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.package-modal.active {
  display: flex;
}

.package-modal-content {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 20, 40, 0.95));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 94, 255, 0.3);
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 100px rgba(138, 94, 255, 0.3), 0 0 0 1px rgba(138, 94, 255, 0.1) inset;
}

.package-modal-content::-webkit-scrollbar {
  width: 8px;
}

.package-modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 24px 24px 0;
}

.package-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  border-radius: 10px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.package-close {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  font-weight: 300;
}

.package-close:hover {
  background: rgba(255, 59, 48, 0.15);
  border-color: rgba(255, 59, 48, 0.3);
  color: #ff3b30;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.3);
}

.pricing-card{
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124,58,237,.25);
  border-color: rgba(124,58,237,.5);
}

.pricing-card--featured{
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(37,99,235,.06));
}

.pricing-card--featured:hover{
  box-shadow: 0 20px 60px rgba(124,58,237,.4);
}

.pricing-card--premium{
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(201,169,97,.06));
  position: relative;
  overflow: hidden;
}

.pricing-card--premium::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212,175,55,.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-card--premium:hover{
  box-shadow: 0 20px 60px rgba(212,175,55,.4);
  border-color: #c9a961;
}

.pricing-badge-top{
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: white;
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(124,58,237,.4);
}

.pricing-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pricing-header h3{
  margin: 0;
  font-size: 20px;
  color: var(--text);
}

.pricing-badge{
  background: rgba(124,58,237,.2);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-price{
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-amount{
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-note{
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.pricing-features{
  margin-bottom: 14px;
  flex: 1;
}

.pricing-features h4{
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-features ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li{
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
  line-height: 1.4;
  font-size: 14px;
}

.pricing-features li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.pricing-ideal{
  background: rgba(124,58,237,.1);
  border-left: 3px solid var(--accent);
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.pricing-ideal strong{
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.pricing-ideal p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.pricing-delivery{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.pricing-tech{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tech-badge{
  background: rgba(124,58,237,.15);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}

.pricing-process{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  padding: 8px;
  background: rgba(124,58,237,.05);
  border-radius: 8px;
}

.pricing-process strong{
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.pricing-popular-addon{
  font-size: 12px;
  background: rgba(212,175,55,.1);
  border-left: 3px solid #d4af37;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.pricing-popular-addon strong{
  display: block;
  margin-bottom: 3px;
  color: #d4af37;
  font-size: 12px;
}

.pricing-buttons{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-buttons .btn{
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
}

/* Add-ons Grid */
.addons-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.addon-card{
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding: 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.addon-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.addon-icon{
  font-size: 40px;
  margin-bottom: 12px;
}

.addon-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.addon-price{
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.addon-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted)}

.about{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:34px;
  align-items:center;
}
.about__image{
  overflow:visible;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

/* Logo Animated Container */
.hero-logo-mobile {
  display: none; /* Hidden on desktop */
}

.logo-animated-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating Rings */
.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0.4;
}

.logo-ring-1 {
  width: 100%;
  height: 100%;
  border-image: linear-gradient(135deg, var(--accent), var(--secondary)) 1;
  animation: rotate 20s linear infinite;
  border-style: solid;
  background: linear-gradient(135deg, transparent, rgba(138, 94, 255, 0.1));
}

.logo-ring-2 {
  width: 85%;
  height: 85%;
  border-image: linear-gradient(225deg, var(--secondary), #d4af37) 1;
  animation: rotate 15s linear infinite reverse;
  border-style: solid;
  background: linear-gradient(225deg, transparent, rgba(37, 99, 235, 0.08));
}

.logo-ring-3 {
  width: 70%;
  height: 70%;
  border-image: linear-gradient(315deg, #d4af37, var(--accent)) 1;
  animation: rotate 25s linear infinite;
  border-style: solid;
  background: linear-gradient(315deg, transparent, rgba(212, 175, 55, 0.05));
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Logo Center */
.logo-center {
  position: relative;
  z-index: 10;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(138, 94, 255, 0.15), transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.logo-main-animated {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(138, 94, 255, 0.5));
  animation: pulse-glow 3s ease-in-out infinite;
  transition: transform 0.4s ease;
  mix-blend-mode: screen;
}

.logo-center:hover .logo-main-animated {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 50px rgba(138, 94, 255, 0.8));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 30px rgba(138, 94, 255, 0.5));
  }
  50% { 
    filter: drop-shadow(0 0 50px rgba(138, 94, 255, 0.8)) drop-shadow(0 0 70px rgba(37, 99, 235, 0.4));
  }
}

/* Floating Particles */
.logo-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(138, 94, 255, 0.8);
  animation: particle-float 8s ease-in-out infinite;
  opacity: 0.6;
}

.logo-particles span:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.logo-particles span:nth-child(2) {
  top: 80%;
  left: 80%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.logo-particles span:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.logo-particles span:nth-child(4) {
  bottom: 25%;
  left: 15%;
  animation-delay: 3s;
  animation-duration: 10s;
}

.logo-particles span:nth-child(5) {
  top: 60%;
  right: 25%;
  animation-delay: 4s;
  animation-duration: 7.5s;
}

.logo-particles span:nth-child(6) {
  top: 15%;
  left: 70%;
  animation-delay: 5s;
  animation-duration: 9.5s;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50px) translateX(-15px) scale(0.8);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) translateX(25px) scale(1.3);
    opacity: 0.6;
  }
}

.about__image img{
  width:100%;
  height:auto;
  display:block;
}
.about__content h2{margin:0 0 12px}
.about__content p{color:var(--muted); margin:0 0 10px}

.tech-stack{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.tech-badge{
  padding:8px 14px;
  border-radius:999px;
  background: var(--grad);
  color:white;
  font-weight:700;
  font-size:.85rem;
  box-shadow: 0 8px 20px rgba(124,58,237,.2);
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:24px 18px;
  text-align:center;
  transition: transform .2s ease, background .2s ease;
}
.stat:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.05);
}
.stat__num{
  font-size:42px;
  font-weight:900;
  background: var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
  margin-bottom:8px;
}
.stat__label{
  color:var(--muted);
  font-weight:600;
  font-size:.95rem;
}

.clients{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  margin-top:18px;
}
.client-logo{
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  padding:22px 12px;
  text-align:center;
  color:var(--muted);
  font-weight:700;
  font-size:.9rem;
  transition: transform .2s ease, background .2s ease;
}
.client-logo:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
}

.pricing{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
.price{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:18px;
  display:flex; flex-direction:column; gap:12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.price:hover{transform: translateY(-4px); background: rgba(255,255,255,.05); box-shadow: 0 18px 50px rgba(0,0,0,.35)}
.price__top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.tag{
  font-size:.85rem; font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
}
.badge{
  background: var(--grad);
  color:white;
  border:0;
}
.price ul{margin:0; padding-left:18px; color:var(--muted)}
.price li{margin:6px 0}
.price .btn{width:100%}

.projects{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.project{
  position:relative;
  border-radius: var(--r);
  border:1px solid var(--line);
  overflow:hidden;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,.03);
  min-height:240px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project:hover{transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,.35)}

.project--iframe .project__iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  transform: scale(0.35);
  transform-origin: top left;
  width: 285%;
  height: 285%;
}

.project__inner{padding:18px}
.project__title{font-weight:800; margin:0 0 6px}
.project__meta{color:var(--muted); margin:0}

.overlay{
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(37,99,235,.20));
  opacity:0;
  transition: opacity .2s ease;
}
.project:hover .overlay{opacity:1}
.project__cta{
  position:absolute; right:14px; bottom:14px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(11,12,16,.55);
  backdrop-filter: blur(12px);
  font-weight:800;
}

.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  position:relative;
}
.testimonial{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.testimonial__header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.testimonial__avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  border:2px solid var(--line);
}
.testimonial__name{
  font-weight:800;
  color:var(--text);
}
.testimonial__role{
  font-size:.9rem;
  color:var(--muted);
}
.testimonial p{
  color:var(--muted);
  margin:0 0 12px;
  font-style:italic;
  line-height:1.6;
}
.testimonial__stars{
  color:#f59e0b;
  font-size:1.1rem;
}
.testimonial-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top:18px;
}
.testimonial-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.2);
  cursor:pointer;
  transition: background .2s ease;
}
.testimonial-dot.active{
  background: var(--grad);
}

.process{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.step{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.step b{display:inline-block; margin-bottom:8px}
.step p{margin:0; color:var(--muted)}

.faq{
  display:grid;
  gap:10px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  transition: background .2s ease;
}
.faq-item:hover{
  background: rgba(255,255,255,.05);
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px;
  background:none;
  border:none;
  color:var(--text);
  font-weight:700;
  font-size:1.05rem;
  cursor:pointer;
  text-align:left;
}
.faq-icon{
  font-size:24px;
  font-weight:400;
  color:var(--muted);
  transition: transform .3s ease;
}
.faq-item.open .faq-icon{
  transform: rotate(45deg);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer{
  max-height:300px;
}
.faq-answer p{
  padding:0 18px 18px;
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.newsletter{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(37,99,235,.10));
  padding:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.newsletter__form{
  display:flex;
  gap:10px;
  flex:1;
  max-width:420px;
}
.newsletter__form input{
  flex:1;
  min-width:200px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.blog-card{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.blog-card__image{
  width:100%;
  height:200px;
  border-bottom:1px solid var(--line);
}
.blog-card__content{
  padding:18px;
}
.blog-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.blog-tag{
  padding:6px 12px;
  border-radius:999px;
  background: var(--grad);
  color:white;
  font-size:.85rem;
  font-weight:700;
}
.blog-date{
  color:var(--muted);
  font-size:.9rem;
}
.blog-card h3{
  margin:0 0 10px;
  font-size:1.15rem;
}
.blog-card p{
  color:var(--muted);
  margin:0 0 12px;
  line-height:1.6;
}
.blog-link{
  color:var(--text);
  font-weight:700;
  transition: color .2s ease;
}
.blog-link:hover{
  color:#7c3aed;
}

.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.form{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.field{display:grid; gap:6px; margin-bottom:12px}
.label{font-weight:750}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  transition: all 0.3s ease;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus{
  border-color: var(--accent);
  background: rgba(138,94,255,.08);
  box-shadow: 0 0 0 3px rgba(138,94,255,.15);
}
select{
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%238a5eff' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
select option{
  background: #1a1a2e;
  color: var(--text);
  padding: 12px;
}
textarea{min-height:120px; resize:vertical}
.helper{color:var(--muted); font-size:.95rem}
.note{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:18px;
  display:grid; gap:10px;
}
.note a{color:white}
.footer{
  border-top:1px solid var(--line);
  margin-top:40px;
  padding:22px 0;
  color:var(--muted);
  font-size:.95rem;
}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.small{font-size:.92rem}

.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease}
.reveal.show{opacity:1; transform:none}

/* Modal */
.modal{
  position:fixed; inset:0; z-index:100;
  background: rgba(0,0,0,.55);
  display:none; place-items:center;
  padding:18px;
}
.modal.show{display:grid}
.modal__card{
  width:min(720px, 96%);
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(15,17,24,.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding:18px;
}
.modal__top{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:10px}
.x{
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-size:18px; cursor:pointer;
}
.modal__body{color:var(--muted)}
.modal__body b{color:var(--text)}

/* WhatsApp Floating Button */
.wa-float{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:90;
  width:60px;
  height:60px;
  border-radius:50%;
  background: #25d366;
  display:grid;
  place-items:center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: pulse 2s ease infinite;
}
.wa-float:hover{
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,.6);
}
.wa-float svg{
  width:32px;
  height:32px;
  fill:white;
}

@keyframes pulse{
  0%,100%{box-shadow: 0 8px 24px rgba(37,211,102,.4)}
  50%{box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.2)}
}

/* Back to Top */
.back-to-top{
  position:fixed;
  bottom:24px;
  left:24px;
  z-index:90;
  width:50px;
  height:50px;
  border-radius:14px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transition: opacity .3s ease, transform .2s ease;
  color:var(--text);
  font-size:20px;
  font-weight:800;
}
.back-to-top.show{
  opacity:1;
  pointer-events:all;
}
.back-to-top:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
}

/* Scroll Progress */
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
  z-index:101;
}

/* Loading Screen */
.loading-screen{
  position:fixed;
  inset:0;
  z-index:9999;
  background: var(--bg);
  display:grid;
  place-items:center;
  opacity:1;
  transition: opacity .4s ease;
  pointer-events:none;
}
.loading-screen.hide{
  opacity:0;
}
.loading-spinner{
  width:50px;
  height:50px;
  border:4px solid rgba(255,255,255,.1);
  border-top-color:#7c3aed;
  border-radius:50%;
  animation: spin 1s linear infinite;
}
@keyframes spin{
  to{transform: rotate(360deg)}
}

/* Sticky CTA */
.sticky-cta{
  position:fixed;
  bottom:90px;
  right:24px;
  z-index:89;
  opacity:0;
  pointer-events:none;
  transition: opacity .3s ease, transform .2s ease;
}
.sticky-cta.show{
  opacity:1;
  pointer-events:all;
}
.sticky-cta .btn{
  box-shadow: 0 12px 32px rgba(124,58,237,.3);
}

/* Exit Intent Popup */
.exit-popup{
  position:fixed;
  inset:0;
  z-index:110;
  background: rgba(0,0,0,.65);
  display:none;
  place-items:center;
  padding:18px;
}
.exit-popup.show{
  display:grid;
}
.exit-popup__card{
  width:min(520px, 96%);
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(15,17,24,.98);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding:28px;
  text-align:center;
  position:relative;
}
.exit-popup__close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:8px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-size:18px;
  cursor:pointer;
}
.exit-popup h3{
  margin:0 0 10px;
  font-size:24px;
}
.exit-popup p{
  margin:0 0 18px;
  color:var(--muted);
}

/* Responsive - Enhanced Mobile Design */
@media (max-width: 980px){
  /* Global adjustments */
  body{font-size:15px; line-height:1.6}
  .container{width:94%}
  
  /* Navigation */
  .nav__inner{padding:12px 0}
  .brand-logo{height:36px}
  .brand__text{font-size:16px}
  
  /* Hero Section */
  .hero{
    grid-template-columns:1fr; 
    padding-top:24px;
    gap:32px;
  }
  .hero h1{
    font-size:clamp(28px, 7vw, 36px);
    line-height:1.2;
    margin-bottom:16px;
  }
  .lead{font-size:16px; margin-bottom:24px}
  .kicker{font-size:13px; margin-bottom:12px}
  .hero-logo{max-width:280px}
  .preview-carousel{margin-top:20px}
  
  /* Buttons - Better touch targets */
  .btn{
    padding:14px 20px;
    font-size:15px;
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .ctas{
    flex-direction:column;
    gap:12px;
    width:100%;
  }
  .ctas .btn{width:100%}
  
  /* Show animated logo in hero on mobile */
  .hero-logo-mobile {
    display: block;
    margin: 32px auto 0;
  }
  .hero-logo-mobile .logo-animated-container{
    width:360px; 
    height:360px;
    margin: 0 auto;
  }
  .hero-logo-mobile .logo-center{
    width:260px; 
    height:260px;
  }
  .hero-logo-mobile .logo-main-animated{
    width:180px; 
    height:180px;
  }
  .hero-logo-mobile .logo-ring {
    border-width: 2px;
  }
  
  /* Hide About section logo on mobile */
  .about__image{
    display: none;
  }
  
  /* About Section - hide image, keep text */
  .about{grid-template-columns:1fr; gap:24px}
  
  /* Stats */
  .stats{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }
  .stat{padding:20px 16px}
  .stat__num{font-size:32px}
  
  /* Sections */
  .section{padding:36px 0}
  .section__head{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin-bottom:24px;
  }
  .section__head h2{font-size:clamp(24px, 6vw, 28px)}
  .section__head p{font-size:15px}
  
  /* Carousel */
  .why-carousel-container{padding:0 12px}
  .why-card{
    min-width:100%;
    padding:28px 20px;
  }
  .why-icon{font-size:40px; margin-bottom:12px}
  .why-card h3{font-size:18px; margin-bottom:10px}
  .why-card p{font-size:14px}
  
  .carousel-arrow{
    width:36px; 
    height:36px;
    font-size:16px;
  }
  .carousel-arrow-prev{left:0px}
  .carousel-arrow-next{right:0px}
  
  .carousel-dots{gap:6px; margin-top:20px}
  .carousel-dot{width:8px; height:8px}
  .carousel-dot.active{width:24px}
  
  /* Package Cards - Keep 2 columns like desktop */
  .pricing-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:12px;
  }
  .pricing-card-mini{
    padding:18px 14px;
  }
  .package-name{font-size:16px}
  .package-tagline{font-size:12px}
  .package-price-mini{font-size:14px; margin:8px 0}
  .mini-features-list{gap:4px; font-size:12px}
  .mini-features-list li{padding:4px 0}
  .cta-view-mini{padding:10px 16px; font-size:14px}
  
  /* Modal */
  .package-modal-content{
    width:95%;
    max-width:95%;
    max-height:90vh;
    padding:24px 20px;
    margin:20px auto;
  }
  .modal-close{
    width:36px;
    height:36px;
    font-size:22px;
  }
  .modal-package-name{font-size:24px}
  .modal-price{font-size:32px}
  .modal-section h3{font-size:18px}
  .tech-badges{gap:6px}
  .tech-badge{
    padding:6px 12px;
    font-size:12px;
  }
  
  /* Projects/Portfolio */
  .projects{grid-template-columns:1fr; gap:20px}
  .port__card{padding:0}
  .port__card h3{font-size:18px; padding:16px}
  
  /* Testimonials */
  .testimonials{grid-template-columns:1fr}
  .testimonial{padding:20px 16px}
  
  /* Contact Form */
  .contact{grid-template-columns:1fr}
  .field{margin-bottom:16px}
  .label{font-size:15px; font-weight:700}
  input, textarea, select{
    padding:14px;
    font-size:16px;
  }
  textarea{min-height:140px}
  
  /* Newsletter */
  .newsletter{
    flex-direction:column;
    text-align:center;
    padding:28px 20px;
  }
  .newsletter h2{font-size:22px}
  .newsletter__form{
    max-width:100%;
    flex-direction:column;
    gap:10px;
  }
  .newsletter__form input{width:100%; padding:14px}
  .newsletter__form button{width:100%; padding:14px}
  
  /* Footer */
  .footer__inner{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }
  .footer__links{
    flex-wrap:wrap;
    justify-content:center;
  }
  
  /* Menu Mobile */
  .menu{display:none}
  .burger{display:inline-grid; place-items:center}
  .menu.open{
    display:flex;
    position:absolute;
    top:60px; left:3%; right:3%;
    flex-direction:column;
    background: rgba(15,17,24,.96);
    backdrop-filter:blur(20px);
    border:1px solid rgba(138,94,255,0.3);
    border-radius:18px;
    padding:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
  }
  .menu.open a{
    width:100%;
    padding:14px 16px;
    font-size:16px;
    border-radius:12px;
  }
  
  /* Floating Elements */
  .wa-float{
    width:56px; 
    height:56px; 
    bottom:20px; 
    right:20px;
  }
  .back-to-top{
    width:46px; 
    height:46px; 
    bottom:20px; 
    left:20px;
    font-size:20px;
  }
  .sticky-cta{
    bottom:90px; 
    right:20px;
    font-size:14px;
    padding:12px 18px;
  }
  
  /* Fast Contact - 2 columns on mobile */
  .fast-contact-grid{
    grid-template-columns: 1fr 1fr !important;
    gap:12px !important;
  }
  
  /* Testimonials Page */
  .testimonials-page-grid{padding:0 8px}
  .testimonial-full{padding:24px 18px}
  .testimonial-header-full{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }
  .testimonial-avatar-full{width:70px; height:70px}
  .testimonial-info-full{text-align:center}
  .testimonial-name-full{font-size:18px}
  .testimonial-role-full{font-size:14px}
  .testimonial-rating{
    align-items:center;
    justify-content:center;
  }
  .testimonial-text-full{font-size:15px; line-height:1.6}
  .testimonial-tags{
    flex-wrap:wrap;
    justify-content:center;
  }
  
  /* Process Steps */
  .process{grid-template-columns:1fr}
  .step{padding:24px 18px}
  
  /* Addons */
  .addons-grid{grid-template-columns:1fr}
  .addon{padding:20px 16px}
  
  /* Blog Grid */
  .blog-grid{grid-template-columns:1fr}
  
  /* Clients */
  .clients{grid-template-columns:repeat(2,1fr); gap:16px}
  
  /* Chips and Meta */
  .chip{
    padding:6px 10px;
    font-size:13px;
  }
  .meta{gap:8px; margin-top:12px}
}

/* Extra small devices optimization */
@media (max-width: 480px){
  body{font-size:14px}
  
  .hero h1{font-size:26px}
  .lead{font-size:15px}
  .section__head h2{font-size:22px}
  
  .carousel-arrow{
    width:32px;
    height:32px;
    font-size:14px;
  }
  
  .wa-float{width:52px; height:52px}
  .back-to-top{width:42px; height:42px}
  
  .package-modal-content{padding:20px 16px}
  
  /* Keep packages 2 columns even on small screens */
  .pricing-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
  }
  .pricing-card-mini{
    padding:16px 12px;
  }
  .package-name{font-size:15px}
  .package-tagline{font-size:11px; margin:4px 0}
  .package-price-mini{font-size:13px; margin:6px 0}
  .mini-features-list{font-size:11px; gap:3px}
  .cta-view-mini{padding:9px 14px; font-size:13px}
  
  .stats{grid-template-columns:1fr}
  .stat{padding:20px}
}
