/* ============================================
   Intelliquest Tech Solutions — Light Modern Theme
   Soft shaded backgrounds, purple/blue accents
   Clean glassmorphism on white, smooth animations
   ============================================ */

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

:root {
  --bg:              #f5f3f0;
  --bg-white:        #ffffff;
  --bg-soft:         #efecea;
  --bg-accent:       #f0edf8;
  --surface:         #ffffff;
  --glass:           rgba(255, 255, 255, 0.7);
  --glass-border:    rgba(0, 0, 0, 0.06);

  --fg:              #1a1a2e;
  --fg-muted:        #5a5a72;
  --fg-dim:          #8a8a9a;

  --purple:          #6c3ce0;
  --purple-light:    #8b5cf6;
  --blue:            #2563eb;
  --blue-light:      #60a5fa;
  --cyan:            #0891b2;
  --teal:            #0d9488;

  --gradient-primary: linear-gradient(135deg, #6c3ce0 0%, #2563eb 50%, #0891b2 100%);
  --gradient-soft:    linear-gradient(135deg, rgba(108, 60, 224, 0.08) 0%, rgba(37, 99, 235, 0.06) 100%);
  --gradient-card:    linear-gradient(135deg, rgba(108, 60, 224, 0.04) 0%, rgba(8, 145, 178, 0.04) 100%);

  --border:          rgba(0, 0, 0, 0.07);
  --border-accent:   rgba(108, 60, 224, 0.2);

  --font-body:    'DM Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --section-pad: 56px 0;
  --container:   1200px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 24px 60px rgba(0,0,0,0.05);
  --shadow-glow: 0 4px 24px rgba(108, 60, 224, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

h1 { font-size: clamp(2.8rem, 6.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.subtitle {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 60, 224, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(108, 60, 224, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--bg-white);
  color: var(--fg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--bg-white);
  color: var(--purple);
  border: none;
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.btn-light:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 243, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 40px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.navbar-brand .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand .navbar-brand .logo-icon {
  width: 38px;
  height: 38px;
}

.navbar-brand .brand-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
  border-radius: 10px;
}

.nav-links .btn.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(108, 60, 224, 0.2);
}

.nav-links .btn.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(108, 60, 224, 0.35);
}

.nav-links .btn.btn-primary.active::after {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  margin: 6px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

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

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

.hero-content h1 { margin-bottom: 24px; line-height: 1.05; }

.hero-content h1 em {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle { margin-bottom: 40px; font-size: 1.18rem; }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.specs-card {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  width: 400px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
}

.specs-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.spec-row:last-child { border-bottom: none; }

.spec-row .label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.spec-row .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Services Overview */
.services-overview {
  padding: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.service-card-intro {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.service-card-intro h3 {
  color: var(--purple);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.service-card-intro p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.service-card h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gradient-primary);
  margin-top: 12px;
  border-radius: 2px;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

/* Process Section */
.process-section {
  padding: var(--section-pad);
  background: var(--bg-white);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--purple);
  background: var(--bg-accent);
  transition: all 0.3s;
}

.process-step:hover .step-number {
  box-shadow: var(--shadow-glow);
}

.step-content h4 {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Why Card */
.why-card {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card h3 {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--fg);
  position: relative;
}

.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.why-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.why-card li .check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
}

.why-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--purple);
  transition: gap 0.3s;
  position: relative;
}

.why-card .link-arrow:hover { gap: 14px; }

/* CTA Section */
.cta-section {
  padding: 56px 0;
  text-align: center;
  background: var(--fg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.15) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  position: relative;
}

.cta-section .btn { position: relative; }

/* Footer */
.footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--fg-dim);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.footer-socials a:hover {
  border-color: var(--border-accent);
  color: var(--purple);
  box-shadow: var(--shadow-glow);
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--fg-dim);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--purple); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.footer-bottom a {
  color: var(--fg-dim);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--purple); }

/* ============================
   SERVICES PAGE
   ============================ */

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

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 350px;
  background: radial-gradient(ellipse, rgba(108, 60, 224, 0.06) 0%, transparent 70%);
}

.page-hero h1 { margin-bottom: 20px; position: relative; }

.page-hero p {
  color: var(--fg-muted);
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.15rem;
  position: relative;
}

.engagement-section { padding: var(--section-pad); }

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

.engagement-card {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  box-shadow: var(--shadow-sm);
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.engagement-card .card-icon {
  width: 56px; height: 56px;
  background: var(--bg-accent);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-radius: 14px;
}

.engagement-card .bg-icon {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 5rem;
  opacity: 0.04;
}

.engagement-card h3 {
  color: var(--purple);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.engagement-card > p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.includes-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.includes-list li .tick {
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.best-for {
  background: var(--bg-accent);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.best-for strong {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  color: var(--purple);
}

/* Detailed Services */
.detailed-services {
  padding: var(--section-pad);
  background: var(--bg-white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.service-detail h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.keyword-tags span {
  background: var(--bg-accent);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  border-radius: 8px;
  transition: all 0.3s;
}

.keyword-tags span:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.detail-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s;
}

.detail-feature:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.detail-feature .feat-icon {
  width: 44px; height: 44px;
  background: var(--bg-accent);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.detail-feature h4 { font-size: 0.92rem; margin-bottom: 4px; }

.detail-feature p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============================
   ABOUT PAGE
   ============================ */

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

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 350px;
  background: radial-gradient(ellipse, rgba(108, 60, 224, 0.06) 0%, transparent 70%);
}

.about-hero h1 { margin-bottom: 20px; position: relative; }

.about-hero p {
  color: var(--fg-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}

.values-section { padding: 48px 0; }

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

.value-item {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 36px;
  transition: all 0.35s;
  box-shadow: var(--shadow-sm);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.value-item .val-icon {
  width: 72px; height: 72px;
  background: var(--bg-accent);
  border: 1px solid var(--border-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.value-item h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.value-item p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 340px;
  margin: 0 auto;
}

.expertise-section {
  padding: var(--section-pad);
  background: var(--bg-white);
  position: relative;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.expertise-card {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.35s;
}

.expertise-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.expertise-card h4 {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.expertise-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.location-section {
  padding: var(--section-pad);
  text-align: center;
}

.location-section .loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  color: var(--fg);
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 28px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

/* ============================
   CONTACT PAGE
   ============================ */

.contact-section {
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 350px;
  background: radial-gradient(ellipse, rgba(108, 60, 224, 0.05) 0%, transparent 70%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.contact-info h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.contact-info > p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail .detail-icon {
  width: 48px; height: 48px;
  background: var(--bg-accent);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.contact-detail a:hover { color: var(--purple); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108, 60, 224, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-dim); }

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a5a72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

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

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 4px 20px rgba(108, 60, 224, 0.25);
}

.submit-btn:hover {
  box-shadow: 0 8px 32px rgba(108, 60, 224, 0.35);
  transform: translateY(-2px);
}

/* Map */
.map-section { padding: 0 0 48px; }

.map-wrapper {
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.map-label { text-align: center; margin-bottom: 8px; }

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  :root { --section-pad: 60px 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-visual { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .process-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px 0; }
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: rgba(245, 243, 240, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }

  .hero { padding: 110px 0 48px; }
  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .specs-card { width: 100%; padding: 28px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .cta-section { padding: 60px 0; }
  .engagement-card { padding: 28px; }
  .why-card { padding: 32px; }
  .value-item { padding: 32px 24px; }
  .contact-section { padding: 110px 0 48px; }
  .contact-form { padding: 28px; }
  .about-hero { padding: 110px 0 48px; }
  .page-hero { padding: 110px 0 40px; }
  .map-wrapper iframe { height: 260px; }
  .process-steps { gap: 24px; }
  .step-number { width: 36px; height: 36px; font-size: 0.8rem; }
  .detail-feature { padding: 16px; }
  .expertise-card { padding: 28px; }
  .footer { padding: 36px 0 16px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(108, 60, 224, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108, 60, 224, 0.35); }

::selection {
  background: rgba(108, 60, 224, 0.15);
  color: var(--fg);
}
