/* =========================================
   AI AUTOMATION WIZ — MAIN STYLESHEET
   ========================================= */

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

:root {
  --primary:    #6c3de8;
  --primary-lt: #8b5cf6;
  --accent:     #00d9ff;
  --accent-2:   #ff6b6b;
  --dark:       #06040f;
  --dark-2:     #0d0a1e;
  --dark-3:     #150f2d;
  --dark-card:  #110e24;
  --border:     rgba(108, 61, 232, 0.25);
  --text:       #e8e4f4;
  --text-muted: #9b8fc0;
  --white:      #ffffff;
  --gradient:   linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-2: linear-gradient(135deg, #6c3de8 0%, #ff6b6b 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(108, 61, 232, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Syne', sans-serif;

  --container: 1180px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108, 61, 232, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 61, 232, 0.65);
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary-lt);
  color: var(--white);
  background: rgba(108,61,232,0.1);
}

.btn-lg  { padding: 15px 32px; font-size: 16px; }
.btn-xl  { padding: 18px 42px; font-size: 18px; }
.btn-full { width: 100%; justify-content: center; }

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

/* ---------- SECTION SHARED ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,61,232,0.15);
  border: 1px solid var(--border);
  color: var(--primary-lt);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

section {
  padding: 96px 0;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--white); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); color: var(--white); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  flex-direction: column;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(6, 4, 15, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--accent); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.desktop-nav a:hover { color: var(--white); }

.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13, 10, 30, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-nav.open { display: flex; }
.mobile-link {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--white); background: rgba(108,61,232,0.1); }
.mobile-cta { margin: 16px 24px 8px; }

/* =========================================
   HERO
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,61,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,61,232,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,61,232,0.18) 0%, transparent 65%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(108,61,232,0.18);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(0,217,255,0.1);
  bottom: 0; right: -80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,61,232,0.15);
  border: 1px solid rgba(108,61,232,0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}

#hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s 0.45s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 1;
}

.bounce {
  animation: bounce 2s infinite;
}

/* =========================================
   TRUST
   ========================================= */
.trust-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.trust-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.trust-logo-item:hover { color: var(--white); }
.trust-logo-item i {
  font-size: 16px;
  color: var(--primary-lt);
}

/* =========================================
   PROBLEM
   ========================================= */
.problem-section {
  background: var(--dark-2);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(108,61,232,0.5);
}
.problem-icon {
  width: 52px; height: 52px;
  background: rgba(108,61,232,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary-lt);
  margin-bottom: 18px;
}
.problem-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.problem-card p { color: var(--text-muted); font-size: 15px; }

/* =========================================
   SERVICES
   ========================================= */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(108,61,232,0.5);
}
.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(108,61,232,0.12) 0%, var(--dark-card) 60%);
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(108,61,232,0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary-lt);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(108,61,232,0.3);
}
.service-card h3 { margin-bottom: 12px; }
.service-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 9px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.service-features li i {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.hiw-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,61,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hiw-step:hover {
  border-color: rgba(108,61,232,0.5);
  box-shadow: var(--shadow-glow);
}
.hiw-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.hiw-content h3 { margin-bottom: 8px; }
.hiw-content p { color: var(--text-muted); font-size: 15px; }
.hiw-connector {
  color: var(--primary-lt);
  font-size: 20px;
  padding: 10px 0;
  opacity: 0.6;
}

/* =========================================
   RESULTS
   ========================================= */
.results-section { background: var(--dark); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.result-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(108,61,232,0.5);
}
.result-metric {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.result-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 16px;
}
.result-story {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.result-company {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,61,232,0.12);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-muted);
}
.result-company i { color: var(--primary-lt); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--dark-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(108,61,232,0.4);
}
.stars { display: flex; gap: 4px; }
.stars i { color: #f9c74f; font-size: 14px; }
.testimonial-card > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}
.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================================
   WHY US
   ========================================= */
.why-section { background: var(--dark); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 { margin-bottom: 18px; }
.why-text > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.75;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}
.why-list li i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}
.why-list li strong { color: var(--white); }

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}
.why-central-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 130px; height: 130px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 0 60px rgba(108,61,232,0.5);
  z-index: 2;
}
.why-central-orb i { font-size: 28px; color: white; }
.why-central-orb span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.04em; }

.why-float-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.why-float-card i { color: var(--primary-lt); font-size: 16px; }
.card-a { top: 20px; left: 10px; animation: floatA 4s ease-in-out infinite; }
.card-b { bottom: 20px; left: 10px; animation: floatB 4.5s ease-in-out infinite; }
.card-c { top: 50%; right: 0; transform: translateY(-50%); animation: floatA 5s ease-in-out infinite; }

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  background: var(--dark-2);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(108,61,232,0.5); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary-lt); }
.faq-icon {
  font-size: 14px;
  color: var(--primary-lt);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 450px; height: 450px;
  background: rgba(108,61,232,0.2);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 350px; height: 350px;
  background: rgba(0,217,255,0.1);
  bottom: -80px; right: -60px;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 18px; }
.cta-content > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section { background: var(--dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { margin-bottom: 16px; }
.contact-text > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.contact-info-items { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
}
.contact-info-item i {
  width: 40px; height: 40px;
  background: rgba(108,61,232,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--primary-lt);
  flex-shrink: 0;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,61,232,0.15);
}
.form-group select option { background: var(--dark-3); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,217,255,0.1);
  border: 1px solid rgba(0,217,255,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  color: var(--accent);
  font-size: 15px;
}
.form-success i { font-size: 20px; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 64px 24px 48px;
}
.footer-brand > p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 14px 0 20px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-newsletter h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-newsletter p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form .btn { padding: 11px 20px; font-size: 14px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108,61,232,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-3px); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 56px; }
  .why-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .desktop-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 700px) {
  section { padding: 72px 0; }
  .hero-stats { padding: 20px 20px; gap: 0; }
  .stat-item { padding: 0 18px; }
  .stat-num { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter { grid-column: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .why-card-stack { transform: scale(0.85); }
  .results-grid, .testimonials-grid, .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80%; height: 1px; }
  .stat-item { padding: 0; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}
