/* ============================================================
   Love Queues — Computer Systems Design & Integrated Solutions
   Professional Stylesheet
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f8fafc;
  background-color: #0f1923;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

input, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- STICKY HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a1119;
  border-bottom: 1px solid rgba(8, 145, 178, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #0a1119;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.3px;
}

/* --- MAIN NAV --- */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list li a {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #94a3b8;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-list li a:hover {
  color: #f8fafc;
  background-color: rgba(8, 145, 178, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, #0891b2, #06b6d4) !important;
  color: #0a1119 !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.35);
  background: linear-gradient(135deg, #0891b2, #06b6d4) !important;
}

/* --- MOBILE TOGGLE --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #f8fafc;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* active (X) state */
.mobile-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --- HERO --- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background-color: #0f1923;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(8, 145, 178, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #0891b2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  color: #f8fafc;
  letter-spacing: -1.2px;
}

.hero-highlight {
  background: linear-gradient(135deg, #0891b2, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #0a1119;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(8, 145, 178, 0.45);
}

.btn-outline {
  background: transparent;
  color: #f8fafc;
  border: 2px solid rgba(8, 145, 178, 0.35);
}

.btn-outline:hover {
  border-color: #0891b2;
  background-color: rgba(8, 145, 178, 0.06);
}

.hero-badges {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.badge-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-number {
  font-size: 28px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.5px;
}

.badge-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

/* --- HERO VISUAL --- */
.hero-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  background-color: #16222e;
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* hero-card-1: vertical queue lines */
.hero-card-1 {
  top: 60px;
  left: 40px;
  width: 180px;
  height: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.hero-card-line {
  width: 60%;
  height: 2px;
  background-color: #0891b2;
  border-radius: 2px;
  opacity: 0.7;
}

.hero-card-line.short {
  width: 35%;
}

/* hero-card-2: graph nodes */
.hero-card-2 {
  top: 20px;
  right: 20px;
  width: 220px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-card-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(8, 145, 178, 0.12);
  border: 2px solid #0891b2;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.15);
}

.hero-card-node:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.15);
}

.hero-card-node.small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.hero-card-node.small:nth-child(2) {
  top: 20px;
  left: 30px;
}

.hero-card-node.small:nth-child(3) {
  top: 130px;
  left: 140px;
}

.node-core {
  width: 8px;
  height: 8px;
  background-color: #0891b2;
  border-radius: 50%;
}

.hero-card-node:nth-child(1) .node-core {
  background-color: #f59e0b;
}

.node-edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* hero-card-3: pulse bars */
.hero-card-3 {
  bottom: 40px;
  left: 80px;
  width: 180px;
  height: 140px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pulse-bar {
  flex: 1;
  background: linear-gradient(180deg, #0891b2, rgba(8, 145, 178, 0.3));
  border-radius: 4px 4px 0 0;
  height: 60%;
  animation: pulseHeight 2s ease-in-out infinite;
}

.pulse-bar:nth-child(2) {
  height: 40%;
  animation-delay: 0.3s;
}

.pulse-bar:nth-child(3) {
  height: 80%;
  animation-delay: 0.6s;
}

.pulse-bar:nth-child(4) {
  height: 50%;
  animation-delay: 0.9s;
}

.pulse-bar.delay {
  animation-delay: 0.3s;
}

.pulse-bar.delay2 {
  animation-delay: 0.6s;
}

.pulse-bar.delay3 {
  animation-delay: 0.9s;
}

@keyframes pulseHeight {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

/* --- SECTIONS (shared) --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #0891b2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #f8fafc;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #94a3b8;
}

/* --- SERVICES --- */
.services {
  padding: 100px 0;
  background-color: #0a1119;
}

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

.service-card {
  background-color: #16222e;
  border: 1px solid rgba(8, 145, 178, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(8, 145, 178, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(8, 145, 178, 0.25);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(8, 145, 178, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon {
  width: 36px;
  height: 36px;
}

.service-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.service-card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 14px;
  color: #94a3b8;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #0891b2;
  border-radius: 50%;
}

/* --- ABOUT --- */
.about {
  padding: 100px 0;
  background-color: #0f1923;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content .section-eyebrow {
  margin-bottom: 0;
}

.about-content .section-title {
  margin-bottom: 8px;
}

.about-text {
  font-size: 16px;
  line-height: 1.75;
  color: #94a3b8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-number {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #0891b2;
  background: rgba(8, 145, 178, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(8, 145, 178, 0.15);
}

.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.55;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

.about-card {
  position: relative;
  background-color: #16222e;
  border: 1px solid rgba(8, 145, 178, 0.15);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}

.about-card-accent {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.about-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-stat-number {
  font-size: 38px;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: -1px;
}

.about-stat-label {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.5;
}

/* --- PROCESS --- */
.process {
  padding: 100px 0;
  background-color: #0a1119;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0891b2, rgba(8, 145, 178, 0.1));
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #0a1119;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.3);
}

.process-step-line {
  display: none;
}

.process-step-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.process-step-body p {
  font-size: 15px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 12px;
}

.process-duration {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #0891b2;
  background: rgba(8, 145, 178, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(8, 145, 178, 0.15);
}

/* --- INDUSTRIES --- */
.industries {
  padding: 100px 0;
  background-color: #0f1923;
}

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

.industry-item {
  background-color: #16222e;
  border: 1px solid rgba(8, 145, 178, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  border-color: rgba(8, 145, 178, 0.2);
}

.industry-icon {
  width: 52px;
  height: 52px;
  background: rgba(8, 145, 178, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-icon svg {
  width: 36px;
  height: 36px;
}

.industry-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 10px;
}

.industry-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

/* --- STATS --- */
.stats {
  padding: 72px 0;
  background-color: #0a1119;
  border-top: 1px solid rgba(8, 145, 178, 0.1);
  border-bottom: 1px solid rgba(8, 145, 178, 0.1);
}

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

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(8, 145, 178, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(8, 145, 178, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 145, 178, 0.18);
}

.stat-number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: #0891b2;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-description {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.55;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 100px 0;
  background-color: #0f1923;
}

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

.testimonial-card {
  background-color: #16222e;
  border: 1px solid rgba(8, 145, 178, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 60px;
  line-height: 1;
  color: #0e1b28;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.testimonial-card blockquote {
  margin-top: 16px;
}

.testimonial-card blockquote p {
  font-size: 15px;
  line-height: 1.7;
  color: #f8fafc;
  font-style: italic;
}

.testimonial-card figcaption {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #f8fafc;
}

.testimonial-role {
  font-size: 13px;
  color: #94a3b8;
}

/* --- CONTACT --- */
.contact {
  padding: 100px 0;
  background-color: #0a1119;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info .section-eyebrow {
  margin-bottom: 0;
}

.contact-info .section-title {
  margin-bottom: 8px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 12px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 15px;
  color: #f8fafc;
  font-weight: 500;
  line-height: 1.5;
}

a.contact-value {
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: #0891b2;
}

/* --- CONTACT FORM --- */
.contact-form {
  background-color: #16222e;
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #0a1119;
  border: 1px solid rgba(8, 145, 178, 0.15);
  border-radius: 10px;
  font-size: 15px;
  color: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0891b2;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.contact-form .btn-primary {
  align-self: flex-start;
  padding: 16px 32px;
  font-size: 15px;
  margin-top: 4px;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #0a1119;
  border-top: 1px solid rgba(8, 145, 178, 0.12);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}

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

.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: #0891b2;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #0891b2;
}

.footer-divider {
  color: #334155;
}

.footer-legal-col h4 {
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE — ~880px breakpoint
   ============================================================ */

@media (max-width: 880px) {
  .container {
    padding: 0 20px;
  }

  /* --- MOBILE NAV --- */
  .mobile-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(10, 17, 25, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .nav-list.active,
  .mobile-toggle[aria-expanded="true"] + .nav-list,
  #navList.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-list li a {
    font-size: 18px;
    padding: 14px 24px;
  }

  .nav-cta {
    margin-top: 12px;
  }

  /* --- HERO --- */
  .hero {
    padding: 60px 0 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-visual {
    height: 320px;
  }

  .hero-card-1 {
    display: none;
  }

  .hero-card-3 {
    display: none;
  }

  .hero-card-2 {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  /* --- SECTION HEADERS --- */
  .section-title {
    font-size: 28px;
  }

  /* --- SERVICES --- */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* --- ABOUT --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    padding-top: 0;
  }

  .about-card {
    max-width: 100%;
  }

  /* --- PROCESS --- */
  .process-timeline::before {
    left: 23px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* --- INDUSTRIES --- */
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* --- STATS --- */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* --- TESTIMONIALS --- */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* --- CONTACT --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* --- FOOTER --- */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-badges {
    gap: 16px;
  }

  .badge-number {
    font-size: 22px;
  }

  .section-title {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .hero-visual {
    height: 240px;
  }
}
