/* =====================================================
   CURSOR IT — styles.css
   Color Palette:
   --blue:     #1a6cf0  (primary brand blue)
   --dark:     #0a0d14  (background)
   --dark-2:   #0f1421
   --card-bg:  #111827
   --white:    #ffffff
   --grey:     #8896a5
   ===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a6cf0;
  --blue-light: #3d8bff;
  --blue-dark:  #1254cc;
  --dark:       #0a0d14;
  --dark-2:     #0f1421;
  --card-bg:    #111827;
  --card-bg-2:  #161e2e;
  --border:     rgba(26,108,240,0.2);
  --border-2:   rgba(255,255,255,0.06);
  --white:      #ffffff;
  --grey:       #8896a5;
  --grey-light: #b0bcc8;
  --nav-h:      70px;
  --radius:     14px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --glow:       0 0 30px rgba(26,108,240,0.25);
  --shadow-card:0 8px 32px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
  position: fixed;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, rgba(26,108,240,0.6) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-glow.expanded {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(26,108,240,0.4) 0%, transparent 70%);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
a { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

.accent { color: var(--blue); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10,13,20,0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { display: flex; align-items: center; }
.logo-text { display: flex; align-items: baseline; font-family: 'Rajdhani', sans-serif; }
.logo-cursor { font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.logo-it { font-size: 1.5rem; font-weight: 700; color: var(--blue); letter-spacing: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  color: var(--grey-light);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(26,108,240,0.12);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,108,240,0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,108,240,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,108,240,0.5);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  color: var(--white);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0 80px; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  color: var(--grey-light);
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 540px;
}

/* ===== ANTIGRAVITY TILT CARDS ===== */
.antigravity-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,108,240,0.12) 0%, transparent 60%), var(--dark);
}

/* Particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--blue);
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
  opacity: 0.4;
}
.particle:nth-child(1) { left:10%; top:20%; animation-delay:0s; animation-duration:9s; }
.particle:nth-child(2) { left:25%; top:60%; animation-delay:1s; animation-duration:11s; }
.particle:nth-child(3) { left:50%; top:30%; animation-delay:2s; animation-duration:8s; }
.particle:nth-child(4) { left:70%; top:70%; animation-delay:3s; animation-duration:12s; }
.particle:nth-child(5) { left:80%; top:15%; animation-delay:1.5s; animation-duration:10s; }
.particle:nth-child(6) { left:40%; top:80%; animation-delay:4s; animation-duration:9s; }
.particle:nth-child(7) { left:90%; top:45%; animation-delay:2.5s; animation-duration:13s; }
.particle:nth-child(8) { left:5%;  top:90%; animation-delay:0.5s; animation-duration:7s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity:0.4; }
  50%       { transform: translateY(-40px) scale(2); opacity:0.8; }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,108,240,0.12);
  border: 1px solid rgba(26,108,240,0.3);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-light);
  width: fit-content;
  margin-bottom: -10px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  grid-column: 1;
}

.title-line { display: block; }
.title-line.accent { color: var(--blue); }

.hero-subtitle {
  grid-column: 1;
  font-size: 1.1rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: -10px;
}

.hero-tagline {
  grid-column: 1;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-actions {
  grid-column: 1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
}

.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider { width: 1px; height: 36px; background: var(--border-2); }

/* 3D Card in hero */
.hero-visual {
  grid-column: 2;
  grid-row: 1 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.card-3d {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.8 / 1;
  cursor: pointer;
  perspective: 800px;
}

.card-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(26,108,240,0.15);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.card-face {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: 100%;
}

.card-dark-side {
  background: #0d1117;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.card-wave {
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 30px;
  background: var(--blue);
  clip-path: ellipse(100% 50% at 100% 50%);
}

.card-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.card-brand span { color: var(--blue); }

.card-slogan-small {
  font-size: 0.5rem;
  color: var(--blue-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.card-services {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.card-services li {
  font-size: 0.6rem;
  color: var(--grey-light);
  padding: 2px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.5px;
}

.card-footer-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
}

.card-light-side {
  background: #f0f4ff;
  padding: 20px 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a0d14;
  letter-spacing: 1px;
  line-height: 1.1;
}

.card-title-text {
  font-size: 0.58rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
  margin-top: 0;
}

.card-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-contacts li {
  font-size: 0.6rem;
  color: #222;
  letter-spacing: 0.3px;
}

.card-trust {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-top: auto;
}

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: rgba(26,108,240,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  margin-top: auto;
}

.services-scroll {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  will-change: transform;
}

.services-scroll span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--grey-light);
  text-transform: uppercase;
}

.services-scroll .sep { color: var(--blue); font-size: 1rem; }

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
  background: var(--dark);
  border-bottom: 1px solid var(--border-2);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--card-bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.advantage-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--glow), var(--shadow-card);
}

.advantage-card:hover::before { opacity: 1; }

.advantage-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ===== SERVICES MAIN SECTION ===== */
.services-section {
  background: var(--dark-2);
}

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--dark);
}

.about-card-badge {
  background: linear-gradient(145deg, var(--card-bg-2), rgba(26,108,240,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon { font-size: 2rem; }

.badge-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.badge-desc {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.6;
}

.badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 10px;
}

.badge-list li {
  font-size: 0.88rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-btn {
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.highlight-item {
  background: var(--card-bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}

.highlight-item:hover {
  border-color: var(--border);
  box-shadow: var(--glow);
}

.highlight-icon { font-size: 1.5rem; }
.highlight-item strong { font-size: 0.9rem; display: block; margin-bottom: 4px; }
.highlight-item p { font-size: 0.8rem; color: var(--grey); margin: 0; }

.services-grid-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--glow), var(--shadow-card);
}

.service-card:hover::before { opacity: 1; }

.service-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.service-card p { font-size: 0.8rem; color: var(--grey); line-height: 1.6; }

/* ===== PRICING SECTION ===== */
.pricing-section { background: var(--dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #0f1d3d, #0d1728);
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 40px rgba(26,108,240,0.2);
}

.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  color: var(--grey-light);
  letter-spacing: 1px;
}

.featured-badge {
  background: var(--blue) !important;
  color: var(--white) !important;
}

.offer-badge {
  background: linear-gradient(135deg, #ff4b4b, #ff7e40) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 0 14px rgba(255, 75, 75, 0.4);
  animation: offerPulse 2.5s infinite ease-in-out;
}

@keyframes offerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 14px rgba(255, 75, 75, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 0 22px rgba(255, 75, 75, 0.7); }
}

.limited-offer-text {
  color: #ff5252;
  font-weight: 800;
  letter-spacing: 1px;
}

.pricing-icon { font-size: 2rem; }
.pricing-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.pricing-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.original-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--grey);
  text-decoration: line-through;
  opacity: 0.75;
}
.price-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-light);
}
.price-period { font-size: 0.9rem; color: var(--grey); }

.discount-tag {
  background: rgba(255, 82, 82, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 82, 82, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: auto;
}

.pricing-desc { font-size: 0.88rem; color: var(--grey-light); line-height: 1.6; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-btn { width: 100%; margin-top: auto; }

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(26,108,240,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--dark-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: var(--border);
  box-shadow: var(--glow);
  color: var(--white);
}

.contact-icon-wrap {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(26,108,240,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 0.75rem; color: var(--grey); letter-spacing: 0.5px; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }

.contact-map-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--border-2);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,108,240,0.15);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #111827;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a6cf0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  color: var(--white);
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.form-group select option {
  background-color: #0f1421;
  color: #ffffff;
  padding: 12px;
}

.field-error { font-size: 0.78rem; color: #f87171; min-height: 16px; }

.form-submit { width: 100%; font-size: 1rem; padding: 14px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #86efac;
}

.form-error-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: #fca5a5;
}

/* ===== LEGAL SECTIONS ===== */
.legal-section { background: var(--dark); }
.alt-legal { background: var(--dark-2); }

.legal-container { max-width: 800px; }
.legal-date { color: var(--grey); font-size: 0.88rem; margin-bottom: 40px; }

.legal-content { display: flex; flex-direction: column; gap: 0; }

.legal-block {
  border-bottom: 1px solid var(--border-2);
  padding: 24px 0;
}

.legal-block:last-child { border-bottom: none; }

.legal-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.legal-block p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block ul {
  margin: 10px 0 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-block ul li {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-2);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group ul li a,
.footer-links-group ul li span {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-links-group ul li a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,108,240,0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,108,240,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge, .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { grid-row: auto; grid-column: 1; margin-top: -20px; }
  .card-3d { max-width: 380px; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-main { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:first-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #0a0d14 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.95);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 14px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-2);
  }
  .nav-link.active, .nav-link:hover {
    background: rgba(26, 108, 240, 0.2);
    border-color: var(--blue);
    color: var(--white);
  }
  .nav-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1.1rem;
    margin-top: 8px;
  }
  .nav-toggle { display: flex; z-index: 1000000; position: relative; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-title { font-size: 2.8rem; }
  .advantages-grid { grid-template-columns: 1fr; }
  .services-grid-main { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:first-child { max-width: 100%; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .card-3d { max-width: 320px; }
  .contact-form-wrap { padding: 24px 18px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 8px; }
  .stat-divider { width: 40px; height: 1px; }
  .section { padding: 70px 0 60px; }
}

/* ===== SELECTION ===== */
::selection { background: rgba(26,108,240,0.3); color: var(--white); }
