/* ===================================================
   EPICOR KINETIC LANDING PAGE — styles.css
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --blue-dark: #0a1e4e;
  --blue-mid: #0d2b6b;
  --blue-brand: #0061d5;
  --blue-light: #3b8bff;
  --blue-sky: #60a5fa;
  --accent: #00d4ff;
  --accent-2: #7c3aff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --error: #ef4444;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-blue: 0 8px 32px rgba(0, 97, 213, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--gray-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ---- Section Shared ---- */
.section {
  padding-block: clamp(60px, 8vw, 120px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59, 139, 255, 0.12);
  border: 1px solid rgba(59, 139, 255, 0.25);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.25);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin-inline: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 97, 213, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  color: var(--white);
  padding: 9px 22px;
  font-size: 0.875rem;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  margin-top: 8px;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

/* ---- Animations ---- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 30, 78, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--white);
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-text {
  color: var(--gray-200);
}

.logo-text strong {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 15, 40, 0.82) 0%, rgba(13, 43, 107, 0.78) 50%, rgba(10, 10, 26, 0.88) 100%),
    url('images/slider-7.jpg') center center / cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 139, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 139, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 97, 213, 0.35) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 255, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-block: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 139, 255, 0.1);
  border: 1px solid rgba(59, 139, 255, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-sky);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--blue-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s ease infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--blue-light);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 28px;
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-logo-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
}

.trust-logo-item:hover {
  background: rgba(59, 139, 255, 0.1);
  border-color: rgba(59, 139, 255, 0.3);
  color: var(--blue-sky);
}

/* ===================================================
   PAIN POINTS
   =================================================== */
.pain-points {
  background: var(--gray-900);
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pain-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}

.pain-card:hover {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.25);
  transform: translateY(-4px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

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

.pain-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.pain-footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pain-footer p {
  font-size: 1.1rem;
  color: var(--gray-400);
}

.pain-footer strong {
  color: var(--blue-sky);
}

/* ===================================================
   FEATURES
   =================================================== */
.features {
  background: linear-gradient(180deg, rgba(13, 43, 107, 0.1) 0%, rgba(10, 30, 78, 0.05) 100%);
}

.feature-card {
  padding: 32px 28px;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(59, 139, 255, 0.08);
  border-color: rgba(59, 139, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 97, 213, 0.15);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 97, 213, 0.2), rgba(59, 139, 255, 0.1));
  border: 1px solid rgba(59, 139, 255, 0.25);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.5rem;
}

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

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===================================================
   STATS
   =================================================== */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #08112e 100%);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 97, 213, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ===================================================
   INDUSTRIES
   =================================================== */
.industries {
  background: var(--gray-900);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  background: linear-gradient(135deg, rgba(0, 97, 213, 0.1), rgba(124, 58, 255, 0.08));
  border-color: rgba(59, 139, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 97, 213, 0.15);
}

.industry-icon {
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.industry-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  background: linear-gradient(180deg, rgba(10, 30, 78, 0.1) 0%, var(--gray-900) 100%);
}

.services-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.services-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-brand), rgba(0, 97, 213, 0));
}

.service-item {
  display: flex;
  gap: 28px;
  padding-block: 32px;
  position: relative;
}

.service-step {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--gray-900);
}

.service-content {
  padding-top: 12px;
}

.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  background: var(--gray-900);
  overflow: hidden;
}

.testimonials-track-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 100%);
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(59, 139, 255, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.t-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
}

.t-btn:hover {
  background: rgba(59, 139, 255, 0.2);
  border-color: rgba(59, 139, 255, 0.4);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--blue-light);
  transform: scale(1.25);
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  background: linear-gradient(180deg, var(--gray-900) 0%, rgba(13, 43, 107, 0.1) 100%);
}

.faq-container {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(59, 139, 255, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-inline: 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ===================================================
   CONTACT / LEAD FORM
   =================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #060d1c 0%, var(--blue-dark) 100%);
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 97, 213, 0.2) 0%, transparent 60%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left {
  padding-top: 8px;
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-sub {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.97rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-benefit {
  font-size: 0.92rem;
  color: var(--gray-200);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-phone a {
  color: var(--blue-sky);
  font-size: 1.05rem;
  font-weight: 600;
}

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

/* ---- Form ---- */
.lead-form {
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--gray-800);
  color: var(--white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 3px rgba(0, 97, 213, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--error);
}

.form-error {
  font-size: 0.77rem;
  color: var(--error);
  min-height: 18px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--blue-brand);
  margin-top: 2px;
  cursor: pointer;
}

.form-privacy label {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
  cursor: pointer;
}

.form-privacy a {
  color: var(--blue-sky);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray-400);
  font-size: 0.93rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #040a18;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-block: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 320px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500, #6b7280);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blue-sky);
}

.footer-address {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding-block: 20px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--blue-sky);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left {
    order: 2;
  }

  .contact-right {
    order: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(10, 30, 78, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-timeline::before {
    display: none;
  }

  .service-item {
    flex-direction: column;
    gap: 12px;
  }

  .service-step {
    box-shadow: none;
  }

  .testimonials-track {
    grid-template-columns: repeat(4, 100%);
  }
}

@media (max-width: 540px) {
  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px;
  }
}