/* ============================================
   INVIS.IT SOLUTIONS - MODERN DESIGN SYSTEM
   ============================================ */

:root {
  --primary-color: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #3385ff;
  --accent-color: #00d4ff;
  --accent-light: #a0d8ff;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --bg-dark: #0f172a;
  --bg-darker: #0a0e1a;
  --surface: #1a2847;
  --surface-light: #2a3a5a;
  --border-color: #3a4a7a;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  z-index: -2;
  pointer-events: none;
}

/* Seamless infinite background drift */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('https://vc.invis-it.com/bg.jpeg') repeat;
  background-size: cover;
  animation: background-scroll 360s linear infinite;
  z-index: -1;
  transform: translateZ(0);
  will-change: background-position;
}

@keyframes background-scroll {
  from { background-position: 0 0; }
  to   { background-position: -3840px -2160px; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.3em;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:not(.cta-button):hover,
.nav-menu a.active {
  color: var(--accent-light);
}

.nav-menu a:not(.cta-button):hover::after,
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--primary-light));
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
  color: white !important;
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-content {
  text-align: left;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.floating-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card.card-2 {
}

.floating-card.card-3 {
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-light);
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.section .container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-alt {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.section-alt .container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header .container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  color: var(--accent-light);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-section .container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-light);
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 102, 255, 0.2);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-light);
  transform: translateY(-10px);
  box-shadow: 0 12px 48px rgba(0, 102, 255, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--accent-light);
  font-size: 1.5rem;
}

.service-card p {
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card a {
  color: var(--accent-light);
  font-weight: 600;
  transition: var(--transition);
  align-self: flex-start;
}

.service-card a:hover {
  color: var(--accent-color);
  margin-left: 5px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-section {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.why-card h4 {
  margin-bottom: 1rem;
  color: var(--accent-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 80px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(10, 14, 26, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section h5 {
  color: var(--accent-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-light);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.column h2 {
  margin-bottom: 1rem;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */

.highlight-box {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid var(--primary-light);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-box h4 {
  margin-bottom: 1.5rem;
}

/* ============================================
   LISTS
   ============================================ */

.feature-list, .benefits-list, .values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 0;
}

.feature-list li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: bold;
  margin-right: 0.5rem;
}

.benefits-list li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 0;
}

.simple-list {
  list-style: none;
  padding-left: 1.5rem;
}

.simple-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.simple-list li::before {
  content: '• ';
  color: var(--accent-light);
  margin-right: 0.5rem;
}

/* ============================================
   TECH GRID
   ============================================ */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tech-category:hover {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.12);
}

.tech-category h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-light);
}

.tech-category ul {
  list-style: none;
}

.tech-category li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.tech-category li::before {
  content: '• ';
  color: var(--primary-light);
  margin-right: 0.5rem;
}

/* ============================================
   EXPERIENCE CARDS
   ============================================ */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.exp-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid var(--primary-light);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.exp-card:hover {
  border-color: var(--accent-light);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%);
  transform: translateY(-5px);
}

.exp-card h3 {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.exp-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: rgba(26, 40, 71, 0.8);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  border-color: var(--accent-light);
  background: rgba(26, 40, 71, 1);
  transform: translateY(-5px);
}

.member-image {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.team-member h4 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item h4 {
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.info-item p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.info-item .small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid var(--primary-light);
  border-radius: 8px;
  color: var(--accent-light);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-light);
  color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-family: inherit;
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(0, 102, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-group.checkbox input {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
}

.form-notice {
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--success);
  border-radius: 4px;
  color: var(--success);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================
   WELCOME VIDEO MODAL
   ============================================ */

.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.welcome-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.welcome-modal-content {
  position: relative;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.welcome-modal video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.welcome-modal h2 {
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.welcome-modal p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.welcome-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 102, 255, 0.8);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.welcome-modal-close:hover {
  background: rgba(0, 102, 255, 1);
  transform: scale(1.1);
}

.welcome-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}
}

.faq-item h4 {
  margin-bottom: 1rem;
  color: var(--accent-light);
}

/* ============================================
   PRICING GRID
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(26, 40, 71, 0.8);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-light);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--accent-light);
}

.pricing-card .price {
  font-size: 1.75rem;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card p:not(.price) {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0;
  flex: 1;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .btn {
  margin-top: 1rem;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */

.service-detail {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.service-detail .container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-detail h2 {
  margin-bottom: 1.5rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.small {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
