/* ================================================
   CRUZ DIGITAL SOLUTIONS — Shared Stylesheet
   All pages reference this file
   ================================================ */

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

:root {
  --bg-primary:    #080c14;
  --bg-secondary:  #0d1220;
  --bg-card:       #111827;
  --bg-card-hover: #141e30;
  --cyan:          #06b6d4;
  --cyan-light:    #22d3ee;
  --cyan-dark:     #0891b2;
  --cyan-dim:      rgba(6,182,212,0.12);
  --cyan-border:   rgba(6,182,212,0.22);
  --cyan-glow:     rgba(6,182,212,0.06);
  --purple:        #7c3aed;
  --purple-light:  #a78bfa;
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #4b5563;
  --border:        #1e293b;
  --border-light:  #243447;
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(6,182,212,0.15);
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan-light); }
img { display: block; max-width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.4);  opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(6,182,212,0); }
}

.animate-fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* NAVIGATION */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,12,20,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30,41,59,0.7);
  transition: background var(--transition);
}
nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--bg-primary); font-weight: 800;
  box-shadow: 0 0 14px rgba(6,182,212,0.35);
  flex-shrink: 0;
}
.logo-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--cyan);
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:not(.nav-cta):hover { color: var(--text-primary); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--cyan); color: var(--bg-primary) !important;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 0 18px rgba(6,182,212,0.3);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--cyan-light) !important;
  box-shadow: 0 0 28px rgba(6,182,212,0.5);
  transform: translateY(-1px);
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.nav-dropdown-arrow {
  width: 12px; height: 12px;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.86rem;
  color: var(--text-secondary) !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: var(--cyan-dim);
  color: var(--cyan-light) !important;
}

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); cursor: pointer; padding: 4px;
}
.mobile-toggle svg { width: 24px; height: 24px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero-blob-1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 65%);
}
.hero-blob-2 {
  width: 500px; height: 500px;
  top: 20%; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 65%);
}
.hero-blob-3 {
  width: 400px; height: 400px;
  bottom: 0; left: 30%;
  background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 40px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--cyan-light);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeIn 0.6s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: pulse-ring 1.6s ease-out infinite;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .accent { color: var(--cyan-light); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.22s ease both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.34s ease both;
}
.hero-trust {
  margin-top: 64px;
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-trust-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.hero-trust-items {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  align-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-secondary); font-weight: 500;
}
.hero-trust-item svg {
  width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(6,182,212,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 100%);
  color: var(--bg-primary);
  box-shadow: 0 6px 28px rgba(6,182,212,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--cyan-border);
  color: var(--cyan-light);
  background: var(--cyan-glow);
}
.btn svg { width: 18px; height: 18px; }

/* SECTION SHARED */
section { padding: 96px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cyan); margin-bottom: 14px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 18px;
}
.section-subtitle {
  color: var(--text-secondary); font-size: 1.05rem;
  max-width: 580px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* TECH BAR */
.tech-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.tech-bar-label {
  text-align: center;
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.tech-bar-items {
  display: flex; gap: 36px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.tech-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  transition: color var(--transition), border-color var(--transition);
}
.tech-tag:hover { color: var(--cyan-light); border-color: var(--cyan-border); }
.tech-tag-icon { font-size: 1rem; }

/* SERVICES */
.services-section { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan-dark), var(--cyan-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(6,182,212,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.35rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(6,182,212,0.2); }
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }
.service-card .service-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px; }
.service-tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* WHY CHOOSE US */
.why-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .section-subtitle { max-width: 100%; }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.why-feature-text h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 5px; }
.why-feature-text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.why-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.metrics-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  width: 100%; max-width: 360px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.metrics-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, var(--cyan-border), transparent 50%, rgba(124,58,237,0.15));
  z-index: -1;
}
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.metric-item { text-align: center; }
.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--cyan-light);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.metrics-divider { height: 1px; background: var(--border); margin: 24px 0; }
.metrics-bottom { display: flex; align-items: center; gap: 12px; }
.metrics-bottom-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.metrics-bottom-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.metrics-bottom-text strong { color: var(--text-primary); }

/* PROCESS */
.process-section { background: var(--bg-primary); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-border), var(--cyan-border), transparent);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--cyan-light);
  position: relative;
  box-shadow: 0 0 20px rgba(6,182,212,0.12);
}
.step-circle::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--cyan-dim);
}
.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.process-step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--cyan-border); transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars span { color: #f59e0b; font-size: 0.85rem; }
.testimonial-quote {
  font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.75; flex: 1;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: var(--cyan); font-style: normal; font-size: 1.2rem; line-height: 0; vertical-align: -0.25em; margin-right: 2px; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dark), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 2px; }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ABOUT */
.about-section { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-text p { color: var(--text-secondary); margin-bottom: 18px; font-size: 0.96rem; line-height: 1.75; }
.about-text p:last-child { margin-bottom: 0; }
.about-highlight {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding: 18px 20px; margin-top: 28px;
}
.about-highlight-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }
.about-highlight p { margin: 0; font-size: 0.875rem; color: var(--text-secondary); }
.about-highlight p strong { color: var(--cyan-light); }
.stats-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stats-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.stats-panel-dots { display: flex; gap: 6px; }
.stats-panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }
.stats-panel-title { font-size: 0.78rem; color: var(--text-muted); margin-left: 8px; font-family: monospace; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--cyan-light);
  line-height: 1; margin-bottom: 8px;
}
.stat-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* CONTACT FORM */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p {
  color: var(--text-secondary); font-size: 0.96rem;
  line-height: 1.75; margin-bottom: 32px;
}
.contact-detail {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.85rem; color: var(--text-secondary);
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select,
.form-group textarea:focus {
  border-color: var(--cyan-border);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--cyan-light);
}
.form-success.visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--cyan); margin: 0 auto 16px; }
.form-success h3 { font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 0.9rem; }

/* CTA SECTION */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(6,182,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  text-align: center;
  max-width: 700px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-box p {
  color: var(--text-secondary); font-size: 1rem;
  line-height: 1.7; margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-sub {
  margin-top: 20px !important;
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--cyan-border);
  color: var(--cyan-light) !important;
  background: var(--cyan-dim);
}
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-primary); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted) !important; transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan-light) !important; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.footer-contact-item a { font-size: 0.83rem; color: var(--text-muted) !important; }
.footer-contact-item a:hover { color: var(--cyan-light) !important; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted) !important; }
.footer-bottom-links a:hover { color: var(--cyan-light) !important; }

/* SERVICE DETAIL PAGES */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 40px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--cyan-light);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 720px;
}
.page-hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 620px; line-height: 1.75; margin-bottom: 32px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-muted) !important; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan-light) !important; }
.breadcrumb-sep { color: var(--text-muted); }

.service-detail-section { background: var(--bg-primary); }
.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: flex-start;
}
.service-detail-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px; margin-top: 40px;
  color: var(--text-primary);
}
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px; margin-top: 28px;
  color: var(--text-primary);
}
.service-detail-content p {
  color: var(--text-secondary); font-size: 0.96rem;
  line-height: 1.8; margin-bottom: 18px;
}
.service-detail-content ul {
  list-style: none; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-detail-content ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6;
}
.service-detail-content ul li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition);
}
.benefit-card:hover { border-color: var(--cyan-border); }
.benefit-card h4 {
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text-primary);
}
.benefit-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.service-sidebar {
  position: sticky; top: 96px;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 16px;
}
.sidebar-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.sidebar-card ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.85rem; color: var(--text-secondary);
}
.sidebar-card ul li::before {
  content: '→';
  color: var(--cyan);
  flex-shrink: 0;
}
.sidebar-cta {
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(6,182,212,0.05));
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.sidebar-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 10px;
}
.sidebar-cta p { font-size: 0.83rem; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; justify-content: center; font-size: 0.88rem; padding: 12px 20px; }

/* BLOG PAGES */
.blog-hero {
  padding: 140px 0 64px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.blog-hero .hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(6,182,212,0.06);
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; color: var(--text-muted);
  margin-bottom: 14px;
}
.blog-card-tag {
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  color: var(--cyan-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.blog-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  line-height: 1.35; letter-spacing: -0.01em;
  margin-bottom: 12px; color: var(--text-primary);
}
.blog-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.blog-card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.blog-card-author { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-link {
  font-size: 0.82rem; font-weight: 600; color: var(--cyan) !important;
  display: flex; align-items: center; gap: 4px;
}
.blog-card-link:hover { color: var(--cyan-light) !important; }

/* BLOG POST */
.blog-post-hero {
  padding: 140px 0 64px;
  background: var(--bg-primary);
  position: relative; overflow: hidden;
}
.blog-post-hero .hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.blog-post-hero .container { position: relative; z-index: 1; max-width: 780px; }
.blog-post-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 20px; flex-wrap: wrap;
}
.blog-post-tag {
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  color: var(--cyan-light);
  padding: 3px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}
.blog-post-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.blog-post-hero .lead {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.75;
}
.blog-post-body {
  padding: 64px 0 80px;
  background: var(--bg-primary);
}
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  align-items: flex-start;
}
.blog-post-content { max-width: 660px; }
.blog-post-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem; font-weight: 700;
  margin-bottom: 14px; margin-top: 44px;
  letter-spacing: -0.02em;
}
.blog-post-content h2:first-child { margin-top: 0; }
.blog-post-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px; margin-top: 32px;
}
.blog-post-content p {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.85; margin-bottom: 20px;
}
.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 20px; padding-left: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.blog-post-content ul li, .blog-post-content ol li {
  display: flex; gap: 12px;
  font-size: 0.97rem; color: var(--text-secondary); line-height: 1.7;
}
.blog-post-content ul li::before {
  content: '•';
  color: var(--cyan); font-size: 1.2rem;
  flex-shrink: 0; margin-top: -1px;
}
.blog-post-content ol { counter-reset: list; }
.blog-post-content ol li::before {
  counter-increment: list;
  content: counter(list) '.';
  color: var(--cyan); font-weight: 700;
  flex-shrink: 0; min-width: 20px;
}
.blog-callout {
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
}
.blog-callout p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.blog-callout p strong { color: var(--cyan-light); }
.blog-post-sidebar { position: sticky; top: 96px; }
.post-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.post-sidebar-card h4 {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); margin-bottom: 16px;
}
.related-post-link {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.related-post-link:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.related-post-link::before {
  content: '→';
  color: var(--cyan); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px;
}
.related-post-link a {
  font-size: 0.83rem; color: var(--text-secondary) !important;
  line-height: 1.5; transition: color var(--transition);
}
.related-post-link a:hover { color: var(--cyan-light) !important; }

/* CHATBOT WIDGET */
#chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
#chat-bubble {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(6,182,212,0.45);
  animation: chatPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}
#chat-bubble:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(6,182,212,0.6);
  animation: none;
}
#chat-bubble svg { width: 26px; height: 26px; color: #fff; }
#chat-bubble .chat-close-icon { display: none; }
#chat-bubble.open .chat-icon { display: none; }
#chat-bubble.open .chat-close-icon { display: block; }
#chat-bubble.open { animation: none; }

#chat-panel {
  position: absolute;
  bottom: 72px; right: 0;
  width: 340px;
  background: #0d1220;
  border: 1px solid rgba(6,182,212,0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  max-height: 520px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}
#chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
#chat-header {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
#chat-header-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
#chat-header-text h4 {
  font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.2;
}
#chat-header-text p {
  font-size: 0.72rem; color: rgba(255,255,255,0.75); line-height: 1.3;
}
#chat-messages {
  flex: 1; overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 180px;
  max-height: 280px;
}
#chat-messages::-webkit-scrollbar { width: 4px; }
#chat-messages::-webkit-scrollbar-track { background: transparent; }
#chat-messages::-webkit-scrollbar-thumb { background: rgba(6,182,212,0.3); border-radius: 2px; }
.chat-msg {
  display: flex; gap: 8px; align-items: flex-end;
}
.chat-msg-bot { justify-content: flex-start; }
.chat-msg-user { justify-content: flex-end; }
.chat-bubble-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.83rem; line-height: 1.55;
}
.chat-msg-bot .chat-bubble-msg {
  background: #111827;
  border: 1px solid #1e293b;
  color: #94a3b8;
  border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-bubble-msg {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border-bottom-right-radius: 4px;
}
#chat-quick-replies {
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 7px;
  border-top: 1px solid #1e293b;
}
#chat-quick-replies p {
  font-size: 0.7rem; color: #4b5563;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.quick-reply-btn {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem; color: #94a3b8;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  font-family: inherit;
}
.quick-reply-btn:hover {
  border-color: rgba(6,182,212,0.4);
  color: #22d3ee;
  background: rgba(6,182,212,0.06);
}
#chat-capture {
  padding: 14px;
  border-top: 1px solid #1e293b;
  display: none;
  flex-direction: column; gap: 8px;
}
#chat-capture.visible { display: flex; }
#chat-capture p { font-size: 0.78rem; color: #94a3b8; margin-bottom: 4px; }
#chat-capture input {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.82rem; color: #f1f5f9;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s ease;
}
#chat-capture input:focus { border-color: rgba(6,182,212,0.4); }
#chat-capture button {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.18s ease;
}
#chat-capture button:hover { opacity: 0.9; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 24px 28px 28px;
    gap: 20px;
    animation: fadeIn 0.18s ease;
  }
  .nav-links.open .nav-cta { align-self: center; }
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown-trigger { justify-content: center; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: all; box-shadow: none; background: transparent; border: none; padding: 4px 0 0 0; text-align: center; width: 100%; }
  .nav-dropdown-menu a { padding: 7px 0; display: block; text-align: center; padding-left: 0 !important; padding-right: 0 !important; }
  .nav-dropdown-arrow { display: none; }

  .hero { padding: 130px 0 80px; min-height: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .process-steps::before { display: none; }
  .process-steps { gap: 32px; }
  section { padding: 72px 0; }

  .service-detail-body { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post-sidebar { position: static; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust-items { flex-direction: column; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-box { padding: 40px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  #chat-panel { width: 300px; }
}
