/* =============================================
   Mercury Rising Security — styles.css
   Clean & Corporate Theme
   ============================================= */

/* --- VARIABLES --- */
:root {
  --navy:       #0b1526;
  --navy-mid:   #112040;
  --navy-light: #1a3060;
  --blue:       #1d6aff;
  --blue-light: #3d82ff;
  --blue-pale:  #e8f0ff;
  --slate:      #64748b;
  --slate-light:#94a3b8;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --tinted:     #f1f5fb;
  --text:       #0f172a;
  --text-body:  #374151;

  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius:   10px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(11,21,38,0.08);
  --shadow-md:0 8px 40px rgba(11,21,38,0.13);
  --transition:0.22s ease;
}

/* --- LOGO IMAGE --- */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  /* logo has white background — add subtle rounding */
  border-radius: 8px;
}

.about-logo-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* --- LAYOUT --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-tinted { background: var(--tinted); }
.section-dark { background: var(--navy); color: var(--white); }

.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 1120px;
  margin: 0 auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}

.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}
.js-loaded .animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(11,21,38,0.09); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--navy);
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  border: 2px solid white;
  border-radius: 50%;
}
.logo-mark.small { width: 20px; height: 20px; border-radius: 5px; }
.logo-mark.small::after { width: 7px; height: 7px; }

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--blue); background: var(--blue-pale); }
.nav-link.active { color: var(--blue); }

.btn-nav {
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  margin-left: 6px;
}
.btn-nav:hover { background: var(--blue-light); transform: translateY(-1px); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 28px 20px;
  border-top: 1px solid var(--border);
  background: white;
}
.mobile-nav a {
  text-decoration: none;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* --- HERO --- */
.hero {
  position: relative;
  background: var(--navy);
  color: white;
  padding: 130px 0 110px;
  overflow: hidden;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,106,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,106,255,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,106,255,0.18) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(29,106,255,0.15);
  border: 1px solid rgba(29,106,255,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d82ff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.8rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.04em; }

.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,106,255,0.3);
}

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.8);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.btn-light {
  background: white;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--blue-pale);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-full { width: 100%; text-align: center; font-size: 1rem; padding: 15px; }

/* --- SECTION HEADERS --- */
.section-header {
  margin-bottom: 56px;
  max-width: 560px;
}
.section-header.light h2,
.section-header.light p { color: inherit; }

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 10px 0 14px;
  color: var(--navy);
}
.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 100px;
}
.section-tag.light {
  background: rgba(29,106,255,0.15);
  color: #93c5fd;
}

/* --- SERVICE CARDS (home) --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #c7d7ff;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p { color: var(--text-body); font-size: 0.96rem; line-height: 1.7; }

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap var(--transition);
}
.card-link:hover { text-decoration: underline; }

/* --- WHY GRID --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(29,106,255,0.1);
  border-color: rgba(29,106,255,0.35);
}

.why-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(29,106,255,0.4);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.why-card p { font-size: 0.93rem; color: var(--slate-light); line-height: 1.65; }

/* --- PROCESS STEPS --- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-body p { font-size: 0.92rem; color: var(--slate); }

.process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--border);
  align-self: 22px;
  margin-top: 22px;
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  background: var(--navy-mid);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(29,106,255,0.25) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-inner p { color: #94a3b8; margin-bottom: 32px; font-size: 1.05rem; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,106,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,106,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
}
.page-hero p { color: #94a3b8; font-size: 1.05rem; }

/* --- SERVICES PAGE --- */
.service-detail { }
.service-detail.reverse .service-detail-inner { direction: rtl; }
.service-detail.reverse .service-detail-inner > * { direction: ltr; }

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

.service-detail-text .section-tag { margin-bottom: 12px; }
.service-detail-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 10px 0 18px;
}
.service-detail-text p {
  color: var(--text-body);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}
.service-detail-text .btn { margin-top: 8px; }

.feature-list {
  list-style: none;
  margin: 20px 0;
}
.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.feature-list li:last-child { border-bottom: none; }

/* visual cards */
.visual-card {
  background: var(--tinted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.visual-card.accent { background: var(--blue-pale); border-color: #c7d7ff; }
.visual-card.dark { background: var(--navy); border-color: var(--navy-light); }

.visual-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 20px;
}
.light-label { color: #64748b; }

.metric-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.metric-row:last-child { border-bottom: none; }
.metric-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 80px;
}
.metric-desc { font-size: 0.9rem; color: var(--text-body); }

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(29,106,255,0.15);
  font-size: 0.95rem;
  color: var(--navy);
}
.pillar-item:last-child { border-bottom: none; }
.pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.platform-tag {
  background: rgba(255,255,255,0.08);
  color: #93c5fd;
  border: 1px solid rgba(29,106,255,0.25);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* --- ABOUT PAGE --- */
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.photo-placeholder {
  background: var(--tinted);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--slate);
  font-size: 0.85rem;
}

.about-text .section-tag { margin-bottom: 12px; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 10px 0 20px;
}
.about-text p { color: var(--text-body); margin-bottom: 16px; line-height: 1.75; }

/* skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.skill-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.skill-block h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 14px;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.skill-tags span {
  background: var(--blue-pale);
  color: var(--blue);
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition);
}
.value-card:hover { background: rgba(29,106,255,0.1); }

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(29,106,255,0.15);
  color: #93c5fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.value-card p { font-size: 0.92rem; color: var(--slate-light); line-height: 1.65; }

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form-intro { color: var(--slate); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 0; }

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,106,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--slate-light);
  margin-top: 10px;
  text-align: center;
}

/* sidebar */
.sidebar-card {
  background: var(--tinted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card-dark { background: var(--navy); color: white; border-color: var(--navy-light); }

.sidebar-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.sidebar-card-dark h3 { color: white; }

.next-step {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.next-num {
  width: 26px;
  height: 26px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.next-step p { font-size: 0.92rem; color: var(--text-body); }

.email-link {
  display: block;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 10px 0;
  text-decoration: none;
  word-break: break-all;
}
.email-link:hover { color: white; text-decoration: underline; }
.sidebar-card-dark p { color: #94a3b8; font-size: 0.9rem; }
.sidebar-note { margin-top: 10px; font-size: 0.82rem !important; color: #64748b !important; }

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: #64748b;
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }

.footer-copy { font-size: 0.82rem; color: #475569; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-inner { direction: ltr; }

  .about-inner { grid-template-columns: 1fr; }
  .photo-placeholder { aspect-ratio: 16/9; max-height: 260px; }

  .contact-layout { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; }
  .process-connector { width: 2px; height: 32px; align-self: auto; margin: 0 22px; }
}

@media (max-width: 600px) {
  .hero { padding: 96px 0 80px; }
  .hero-stats { gap: 16px; }
  .stat-div { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
