:root {
  --bg-dark: #080512;
  --bg-card: rgba(18, 12, 38, 0.7);
  --bg-card-hover: rgba(28, 18, 56, 0.85);

  --violet: #a855f7;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --purple: #7c3aed;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-glow: rgba(168, 85, 247, 0.25);
}
@font-face {
  font-family: 'Tahoma';
  src: local('Vazirmatn'), url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  color: var(--text-main);
  font-family: 'Vazirmatn', sans-serif;

  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

/* Ambient Animated Glow */
.ambient-light {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 0;

  width: 60vw;
  height: 60vh;

  pointer-events: none;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  filter: blur(80px);
}

/* Floating Glass Bubbles */
.bubbles-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

.bubble-1 {
  top: 10%;
  left: 15%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(124, 58, 237, 0.1) 70%, transparent 100%);
  animation: floatBubble1 18s ease-in-out infinite alternate;
}

.bubble-2 {
  bottom: 15%;
  right: 12%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.55) 0%, rgba(168, 85, 247, 0.1) 70%, transparent 100%);
  animation: floatBubble2 22s ease-in-out infinite alternate;
}

.bubble-3 {
  top: 55%;
  left: 28%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, rgba(59, 130, 246, 0.1) 70%, transparent 100%);
  animation: floatBubble3 16s ease-in-out infinite alternate;
}

.bubble-4 {
  top: 15%;
  right: 25%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, rgba(236, 72, 153, 0.1) 70%, transparent 100%);
  animation: floatBubble4 20s ease-in-out infinite alternate;
}

.bubble-5 {
  bottom: 20%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.45) 0%, rgba(168, 85, 247, 0.1) 70%, transparent 100%);
  animation: floatBubble5 24s ease-in-out infinite alternate;
}

.bubble-6 {
  top: 40%;
  right: 5%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(6, 182, 212, 0.1) 70%, transparent 100%);
  animation: floatBubble6 19s ease-in-out infinite alternate;
}

@keyframes floatBubble1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.15); }
  100% { transform: translate(-60px, 140px) scale(0.9); }
}

@keyframes floatBubble2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-140px, -90px) scale(0.85); }
  100% { transform: translate(80px, -150px) scale(1.1); }
}

@keyframes floatBubble3 {
  0% { transform: translate(0, 0) scale(0.9); }
  50% { transform: translate(90px, -110px) scale(1.2); }
  100% { transform: translate(-110px, 60px) scale(1); }
}

@keyframes floatBubble4 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-80px, 120px) scale(0.95); }
  100% { transform: translate(110px, 50px) scale(1.2); }
}

@keyframes floatBubble5 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(130px, -70px) scale(1.1); }
  100% { transform: translate(-50px, -120px) scale(0.9); }
}

@keyframes floatBubble6 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(-100px, 90px) scale(1.15); }
  100% { transform: translate(-40px, -100px) scale(0.85); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 80px;
  padding: 0 40px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.brand span {
  background: linear-gradient(90deg, #fff, #cbd5e1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  position: relative;
  padding: 6px 0;

  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.on {
  color: #fff;
}

nav a.on::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 2px;

  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  box-shadow: 0 0 10px var(--violet);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-contact-top {
  padding: 10px 22px;

  border: 1px solid var(--border-glow);
  border-radius: 30px;

  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact-top:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
}

/* Slider */
.slider-viewport {
  position: relative;
  z-index: 10;

  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 500vw;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100vw;
  height: 100vh;
  padding: 100px 60px;
}

.slide-content {
  width: 100%;
  max-width: 1300px;
  max-height: calc(100vh - 200px);
  margin: 0 auto;
  padding-right: 8px;
  overflow-y: auto;
}

.slide-content::-webkit-scrollbar {
  width: 5px;
}

.slide-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.3);
}

/* Common Components */
.badge-neon {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;

  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 30px;

  color: #d8b4fe;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: rgba(168, 85, 247, 0.15);
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-title {
  margin-bottom: 10px;

  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;

  background: linear-gradient(135deg, #fff 40%, #c084fc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;

  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Hero */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-title {
  margin-bottom: 24px;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.35;
}

.gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-bottom: 35px;
  color: #cbd5e1;
  font-size: 1.15rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 34px;

  border: none;
  border-radius: 16px;

  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 1rem;
  font-weight: 700;

  background: linear-gradient(135deg, var(--violet), var(--purple));
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);

  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
  padding: 14px 28px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 1rem;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--violet);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card-preview {
  padding: 30px;

  border: 1px solid var(--border-glow);
  border-radius: 28px;

  background: var(--bg-card);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.performance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.performance-header .badge-neon {
  margin: 0;
}

.performance-icon {
  color: var(--pink);
  font-size: 1.4rem;
}

.performance-title {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 800;
}

.performance-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.stat-item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.stat-num {
  color: var(--pink);
  font-size: 2rem;
  font-weight: 900;
}

.stat-label {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 30px 22px;

  border: 1px solid var(--border-glow);
  border-radius: 24px;

  background: var(--bg-card);
  backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}

.service-card:hover {
  border-color: rgba(236, 72, 153, 0.6);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
  transform: translateY(-8px);
}

.srv-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;
  margin-bottom: 20px;

  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;

  color: var(--violet);
  font-size: 1.5rem;
  background: rgba(168, 85, 247, 0.12);
}

.srv-title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.srv-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Pricing */
.pricing-heading {
  margin-bottom: 25px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 25px;
  margin-top: 30px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;

  padding: 32px 24px;

  border: 1px solid var(--border-glow);
  border-radius: 26px;

  background: var(--bg-card);
  backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}

.pricing-card:hover {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
  transform: translateY(-8px);
}

.pricing-card.popular {
  border: 2px solid var(--violet);
  background: rgba(26, 16, 53, 0.85);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.25);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;

  padding: 4px 18px;
  border-radius: 50px;

  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;

  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
  transform: translateX(-50%);
}

.plan-icon {
  margin-bottom: 10px;
  color: var(--violet);
  font-size: 2rem;
}

.plan-icon.pink-icon {
  color: var(--pink);
}

.plan-name {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.price-box {
  margin: 15px 0 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;

  color: #cbd5e1;
  font-size: 0.85rem;
}

.price-row.highlight {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
}

.price-val {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-val small {
  font-size: 0.7rem;
}

.price-row.highlight .price-val {
  color: var(--violet);
  font-size: 1.2rem;
}

.price-row.highlight.neon .price-val {
  color: #f43f5e;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 25px;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;

  color: #94a3b8;
  font-size: 0.85rem;
}

.plan-features li i {
  color: #22c55e;
  font-size: 1rem;
}

.btn-plan {
  width: 100%;
  padding: 12px;

  border: 1px solid var(--border-glow);
  border-radius: 14px;

  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 700;

  background: rgba(168, 85, 247, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-plan:hover,
.btn-plan.btn-glow {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.testi-card {
  position: relative;
  padding: 30px;

  border: 1px solid var(--border-glow);
  border-radius: 24px;

  background: var(--bg-card);
  backdrop-filter: blur(16px);
}

.testi-quote {
  margin-bottom: 25px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  border-radius: 50%;

  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.testi-avatar.cyan-avatar {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.testi-avatar.pink-avatar {
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.testi-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.testi-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Contact */
.contact-heading {
  margin-bottom: 25px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info-card,
.contact-form {
  padding: 35px;
  border: 1px solid var(--border-glow);
  border-radius: 26px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  border: 1px solid var(--border-glow);
  border-radius: 14px;

  color: var(--violet);
  font-size: 1.3rem;
  background: rgba(168, 85, 247, 0.15);
}

.info-text h4 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.95rem;
}

.info-text p {
  color: var(--text-muted);
  direction: ltr;
  font-size: 0.85rem;
  text-align: right;
}

.info-text .address-text {
  direction: rtl;
  text-align: right;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-label .req {
  color: var(--pink);
}

.form-control {
  width: 100%;
  padding: 14px 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: none;

  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;

  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

select.form-control {
  background-color: #120c26;
  cursor: pointer;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  border-color: var(--violet);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

textarea.form-control {
  height: 110px;
  resize: none;
}

.submit-btn {
  width: 100%;
}

/* Consultation Popup Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  pointer-events: none;
  background: rgba(6, 4, 15, 0.85);
  backdrop-filter: blur(12px);

  transition: opacity 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px 30px;

  border: 1px solid var(--border-glow);
  border-radius: 28px;

  background: #110a26;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.2);

  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;

  color: #94a3b8;
  font-size: 1.5rem;

  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close:hover {
  color: #fff;
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.2);
}

.modal-header {
  margin-bottom: 25px;
  text-align: right;
}

.modal-title {
  margin: 5px 0 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  right: 14px;
  color: var(--violet);
  font-size: 1.1rem;
  pointer-events: none;
}

.input-with-icon .form-control {
  padding-right: 42px;
}

.modal-textarea {
  height: 90px;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.form-feedback {
  display: none;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
}

.form-feedback.success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-feedback i {
  display: block;
  margin-bottom: 12px;
  color: #22c55e;
  font-size: 3rem;
}

.form-feedback h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-feedback p {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Bottom Dock Navigation */
.dock {
  position: fixed;
  bottom: 25px;
  left: 50%;
  z-index: 100;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 10px 24px;

  border: 1px solid var(--border-glow);
  border-radius: 40px;

  background: rgba(18, 12, 38, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.dock-counter {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.dock-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  width: 32px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  box-shadow: 0 0 12px var(--violet);
}

.dock-arrows {
  display: flex;
  gap: 8px;
}

.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;

  color: #fff;
  background: rgba(255, 255, 255, 0.08);

  cursor: pointer;
  transition: all 0.2s ease;
}

.dock-btn:hover {
  border-color: transparent;
  background: var(--violet);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    padding: 90px 20px 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  nav {
    display: none;
  }

  .hero-card-preview {
    margin-bottom: 20px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  header {
    height: 70px;
    padding: 0 18px;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand-icon {
    width: 35px;
    height: 35px;
  }

  .btn-contact-top {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .slide {
    padding: 85px 15px 100px;
  }

  .slide-content {
    max-height: calc(100vh - 175px);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-grid {
    gap: 10px;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .contact-info-card,
  .contact-form {
    padding: 22px;
  }

  .modal-container {
    padding: 25px 18px;
  }

  .modal-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dock {
    bottom: 15px;
    gap: 10px;
    padding: 8px 12px;
  }

  .dock-counter {
    font-size: 0.7rem;
  }

  .dock-dots {
    gap: 5px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 24px;
  }

  .dock-btn {
    width: 28px;
    height: 28px;
  }
}
