@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --black: #06041a;
  --deep: #0b082e;
  --navy: #0f0c35;
  --orange: #ff6400;
  --orange-light: #ff8533;
  --orange-pale: #ffb380;
  --silver: #ffffff;
  --off-white: #eeedf8;
  --white: #fefefe;
  --border: rgba(255,100,0,0.2);
  --border-subtle: rgba(255,255,255,0.07);
  --border-navy: rgba(255,255,255,0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

.container { max-width: 1500px; margin: 0 auto; width: 100%; }

/* ── CURSOR ── */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
.cursor-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; transform: translate(-50%,-50%); transition: transform 0.1s; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(255,100,0,0.55); border-radius: 50%; transform: translate(-50%,-50%); transition: all 0.25s cubic-bezier(0.16,1,0.3,1); position: absolute; top: 0; left: 0; }

/* ── NOISE OVERLAY ── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px max(60px, calc((100% - 1500px)/2 + 60px));
  background: rgba(6, 4, 26, 0.45);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.6s ease;
}
nav.scrolled {
  background: rgba(11, 8, 46, 0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  padding-top: 18px; padding-bottom: 18px;
}
nav.scrolled .logo-img { height: 48px; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-img { height: 91px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(255,100,0,0.12)); transition: height 0.6s ease; }

.nav-links { display: flex; align-items: center; gap: 48px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.25em; color: var(--silver); text-decoration: none;
  text-transform: uppercase; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--white) !important;
  background: var(--orange); padding: 12px 28px; text-decoration: none;
  text-transform: uppercase; transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-light) !important; color: var(--white) !important; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--white);
  background: var(--orange); padding: 18px 40px; text-decoration: none;
  display: inline-block; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange-light); transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver);
  text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: color 0.3s;
}
.btn-ghost:hover { color: var(--orange); }
.btn-ghost .arrow { width: 24px; height: 1px; background: currentColor; position: relative; transition: width 0.3s; }
.btn-ghost:hover .arrow { width: 36px; }
.btn-ghost .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ── SECTION LABELS / TITLES ── */
section { position: relative; z-index: 2; }
.section-label {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.5em; color: var(--orange); text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--orange); }

.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 62px);
  font-weight: 400; line-height: 1.1; color: var(--white); letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--orange-light); }

/* Why-us = white bg with dark text for contrast */
.why-us .section-title { color: var(--black); }
.why-us .section-label { color: var(--orange); }
.why-us .section-label::before { background: var(--orange); }
/* About section stays dark */
.about .section-title { color: var(--white); }
.about .section-label { color: var(--orange); }
.about .section-label::before { background: var(--orange); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  padding: 150px 60px 60px; max-width: 1500px; margin: 0 auto; overflow: hidden; background: var(--black);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,100,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,100,0,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,100,0,0.08) 0%, transparent 70%);
  top: 50%; left: 55%; transform: translate(-50%, -50%); animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

.hero-ring {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px;
}
.ring-outer { width: 100%; height: 100%; border: 1px solid rgba(255,100,0,0.18); border-radius: 50%; animation: spin 30s linear infinite; position: relative; }
.ring-inner { position: absolute; top: 40px; left: 40px; right: 40px; bottom: 40px; border: 1px solid rgba(255,100,0,0.12); border-radius: 50%; animation: spin 20s linear infinite reverse; }
.ring-core { position: absolute; top: 120px; left: 120px; right: 120px; bottom: 120px; background: radial-gradient(circle, rgba(255,100,0,0.07) 0%, transparent 70%); border: 1px solid rgba(255,100,0,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ring-core .logo-img { width: 120px; height: auto; filter: drop-shadow(0 0 30px rgba(255,100,0,0.25)); }
.orbit-dot { position: absolute; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.orbit-dot:nth-child(1) { top: -3px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { right: -3px; top: 50%; transform: translateY(-50%); opacity: 0.5; }
.orbit-dot:nth-child(3) { bottom: -3px; left: 50%; transform: translateX(-50%); opacity: 0.3; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 680px; margin-top: auto; margin-bottom: auto; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.4em; color: var(--orange); text-transform: uppercase;
  margin-bottom: 32px; display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fade-up 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--orange); }

.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 6vw, 88px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; color: var(--white);
  margin-bottom: 28px; opacity: 0; animation: fade-up 0.8s ease 0.5s forwards;
  position: relative;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--orange), var(--orange-light), var(--orange-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title::after {
  content: ''; display: block; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin-top: 24px;
}

.hero-sub {
  font-size: 16px; font-weight: 400; line-height: 1.8; color: var(--silver);
  max-width: 480px; margin-bottom: 56px; opacity: 0; animation: fade-up 0.8s ease 0.7s forwards;
}
.hero-actions { display: flex; gap: 20px; align-items: center; opacity: 0; animation: fade-up 0.8s ease 0.9s forwards; }

.hero-stats {
  position: relative;
  display: flex; gap: 60px; border-top: 1px solid var(--border-subtle);
  padding-top: 40px; opacity: 0; animation: fade-up 0.8s ease 1.1s forwards;
  margin-top: 40px;
  width: 100%;
}
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--orange); }
.stat-label { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--silver); text-transform: uppercase; }

@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE ── */
.marquee-bar { background: var(--orange); padding: 14px 0; overflow: hidden; position: relative; z-index: 2; }
.marquee-track { display: flex; gap: 0; animation: marquee 25s linear infinite; width: max-content; }
.marquee-item {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--white); text-transform: uppercase;
  padding: 0 40px; white-space: nowrap; display: flex; align-items: center; gap: 40px;
}
.marquee-item::after { content: '◆'; font-size: 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── WHY US ── */
.why-us-wrap { background: #ffffff; }
.why-us { padding: 140px 60px; max-width: 1500px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-desc { font-size: 17px; line-height: 1.9; color: #4a4e6a; margin-top: 36px; max-width: 480px; }
.why-pillars { display: flex; flex-direction: column; gap: 1px; margin-top: 60px; }
.pillar { border-top: 1px solid rgba(6,4,26,0.1); padding: 32px 0; display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start; transition: border-color 0.3s; cursor: default; }
.pillar:last-child { border-bottom: 1px solid rgba(6,4,26,0.1); }
.pillar:hover { border-top-color: rgba(255,100,0,0.3); }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--orange); letter-spacing: 0.1em; padding-top: 4px; }
.pillar-title { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--black); text-transform: uppercase; margin-bottom: 12px; }
.pillar-text { font-size: 14px; line-height: 1.75; color: #3f4460; }

.why-visual { position: relative; width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.hex-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; width: 360px; }
.hex { aspect-ratio: 1; background: rgba(6,4,26,0.06); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); transition: background 0.3s; }
.hex.active { background: rgba(255,100,0,0.18); }
.hex.bright { background: rgba(255,100,0,0.45); }
.hex-center-text { position: absolute; text-align: center; }
.hex-center-text .big-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--black); line-height: 1; }
.hex-center-text .big-num span { color: var(--orange); }
.hex-center-text .big-label { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.4em; color: #5a5f80; text-transform: uppercase; }

/* ── SERVICES ── */
.services-wrap { background: var(--black); }
.services { padding: 140px 60px; max-width: 1500px; margin: 0 auto; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.services-link { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--orange); text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 10px; transition: gap 0.3s; padding-bottom: 4px; border-bottom: 1px solid rgba(255,100,0,0.3); }
.services-link:hover { gap: 18px; border-color: var(--orange); }
.services-link::after { content: '→'; }

.services-body { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2px; background: rgba(255,255,255,0.04); min-height: 620px; }

.svc-featured { background: var(--deep); padding: 64px 56px; display: flex; flex-direction: column; position: relative; overflow: hidden; cursor: default; transition: background 0.4s; }
.svc-featured:hover { background: #0d0a33; }
.svc-featured::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 0; height: 0; border-style: solid; border-width: 0 0 120px 120px; border-color: transparent transparent rgba(255,100,0,0.12) transparent; transition: border-width 0.4s ease; }
.svc-featured:hover::after { border-width: 0 0 160px 160px; }
.svc-featured-bg-num { position: absolute; top: -20px; right: 32px; font-family: 'Cormorant Garamond', serif; font-size: 220px; font-weight: 300; color: rgba(255,100,0,0.05); line-height: 1; pointer-events: none; }

.svc-feat-icon { width: 72px; height: 72px; border: 1px solid rgba(255,100,0,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 40px; position: relative; transition: border-color 0.3s, background 0.3s; }
.svc-featured:hover .svc-feat-icon { border-color: var(--orange); background: rgba(255,100,0,0.1); }
.svc-feat-icon::before { content: ''; position: absolute; top: -6px; left: -6px; width: 18px; height: 18px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.svc-feat-icon::after { content: ''; position: absolute; bottom: -6px; right: -6px; width: 18px; height: 18px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }
.svc-feat-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.5; }

.svc-feat-label { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.45em; color: var(--orange); text-transform: uppercase; margin-bottom: 16px; }
.svc-feat-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 28px; }
.svc-feat-title em { font-style: italic; color: var(--orange-light); }
.svc-feat-desc { font-size: 15px; line-height: 1.85; color: var(--silver); max-width: 440px; margin-bottom: 44px; }
.svc-feat-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; margin-top: auto; }
.svc-feat-item { font-size: 12px; color: var(--silver); padding: 10px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.25s; }
.svc-feat-item:hover { color: var(--off-white); }
.svc-feat-item::before { content: ''; width: 20px; height: 1px; background: var(--orange); opacity: 0.6; flex-shrink: 0; transition: width 0.3s, opacity 0.3s; }
.svc-feat-item:hover::before { width: 28px; opacity: 1; }

.svc-stack { display: flex; flex-direction: column; gap: 2px; }
.svc-card { background: var(--black); padding: 40px 44px; flex: 1; display: flex; gap: 28px; position: relative; overflow: hidden; cursor: default; border-left: 2px solid transparent; transition: background 0.35s, border-color 0.35s; }
.svc-card:hover { background: var(--deep); border-left-color: var(--orange); }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--orange), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-card-left { display: flex; flex-direction: column; align-items: center; padding-top: 4px; gap: 16px; }
.svc-card-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: rgba(255,100,0,0.4); letter-spacing: 0.05em; writing-mode: vertical-rl; transform: rotate(180deg); flex-shrink: 0; }
.svc-card-icon { width: 44px; height: 44px; border: 1px solid rgba(255,100,0,0.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.3s, background 0.3s; }
.svc-card:hover .svc-card-icon { border-color: var(--orange); background: rgba(255,100,0,0.08); }
.svc-card-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.svc-card-right { flex: 1; }
.svc-card-title { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; line-height: 1.6; }
.svc-card-items { display: flex; flex-direction: column; gap: 7px; }
.svc-card-item { font-size: 12px; color: var(--silver); display: flex; align-items: center; gap: 10px; transition: color 0.25s; }
.svc-card:hover .svc-card-item { color: var(--off-white); }
.svc-card-item::before { content: ''; width: 12px; height: 1px; background: rgba(255,100,0,0.45); flex-shrink: 0; }

.services-cta-strip { margin-top: 2px; background: var(--orange); padding: 28px 56px; display: flex; align-items: center; justify-content: space-between; }
.strip-text { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; font-style: italic; color: var(--white); }
.strip-link { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.35em; color: var(--white); text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 14px; transition: gap 0.3s; }
.strip-link:hover { gap: 22px; }
.strip-link::after { content: '→'; font-size: 14px; }

/* ── CERTIFICATIONS ── */
.certifications-wrap { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); position: relative; overflow: hidden; }
.certifications-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,100,0,0.03) 0%, transparent 70%); pointer-events: none; }
.certifications { padding: 120px 60px; display: flex; align-items: center; max-width: 1500px; margin: 0 auto; position: relative; z-index: 1; }
.cert-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.4em; color: var(--white); text-transform: uppercase; white-space: nowrap; margin-right: 60px; }
.cert-divider { width: 1px; height: 80px; background: linear-gradient(to bottom, transparent, var(--orange), transparent); flex-shrink: 0; margin-right: 80px; opacity: 0.5; }

.cert-badges { display: flex; justify-content: space-around; flex: 1; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
.cert-badge { display: flex; flex-direction: column; align-items: center; gap: 24px; opacity: 0.7; transition: all 0.4s ease; cursor: default; }
.cert-badge:hover { opacity: 1; transform: translateY(-6px); }

.badge-shape { width: 110px; height: 110px; border: 1px solid rgba(255,100,0,0.25); background: radial-gradient(circle, rgba(255,100,0,0.05) 0%, transparent 70%); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.4s ease; box-shadow: inset 0 0 15px rgba(255,100,0,0); }
.badge-shape::before { content: ''; position: absolute; inset: -8px; border: 1px dashed rgba(255,100,0,0.15); border-radius: 50%; transition: all 0.4s ease; }
.cert-badge:hover .badge-shape { border-color: rgba(255,100,0,0.6); background: radial-gradient(circle, rgba(255,100,0,0.12) 0%, transparent 70%); box-shadow: inset 0 0 20px rgba(255,100,0,0.1), 0 0 30px rgba(255,100,0,0.2); }
.cert-badge:hover .badge-shape::before { inset: -12px; border-color: rgba(255,100,0,0.4); animation: spin 8s linear infinite; }

.badge-shape img { width: 88px; height: 88px; object-fit: contain; position: relative; z-index: 2; transition: all 0.4s; border-radius: 50%; }
.cert-badge:hover .badge-shape img { filter: drop-shadow(0 0 10px rgba(255,100,0,0.35)) brightness(1.05); transform: scale(1.05); }
.badge-shape span { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; color: var(--silver); letter-spacing: 0.1em; transition: color 0.4s; }
.cert-badge:hover .badge-shape span { color: var(--white); text-shadow: 0 0 10px rgba(255,100,0,0.5); }

.badge-name { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.25em; color: var(--silver); text-transform: uppercase; text-align: center; line-height: 1.8; transition: color 0.4s; }
.cert-badge:hover .badge-name { color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-wrap { background: var(--black); overflow: hidden; }
.testimonials { padding: 140px 60px; max-width: 1500px; margin: 0 auto; }
.testimonials-header { margin-bottom: 80px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); }
.testi-card { background: var(--black); padding: 52px 48px; position: relative; transition: background 0.3s; }
.testi-card:hover { background: var(--deep); }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 72px; line-height: 0.7; color: var(--orange); opacity: 0.2; margin-bottom: 24px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; font-style: italic; line-height: 1.7; color: #e8e6f5; margin-bottom: 36px; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 40px; height: 40px; background: var(--border-subtle); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--orange); }
.author-name { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; color: var(--white); text-transform: uppercase; }
.author-title { font-size: 12px; color: var(--silver); margin-top: 3px; }
.testi-stars { position: absolute; top: 52px; right: 48px; color: var(--orange); font-size: 12px; letter-spacing: 3px; }

/* ── ABOUT ── */
.about-wrap { background: var(--navy); }
.about { padding: 160px 60px; max-width: 1500px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.about-card { background: var(--black); border: 1px solid rgba(255,100,0,0.2); padding: 60px; position: relative; }
.about-card::before { content: ''; position: absolute; top: -1px; left: 40px; width: 80px; height: 2px; background: var(--orange); }
.mission-title { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.4em; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; }
.mission-text { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; font-style: italic; line-height: 1.6; color: var(--off-white); }
.about-deco { position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border: 1px solid rgba(255,100,0,0.25); z-index: -1; }
.about-intro { font-size: 17px; line-height: 1.9; color: var(--silver); margin-top: 36px; margin-bottom: 48px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.value-item { border-left: 2px solid rgba(255,255,255,0.1); padding-left: 20px; transition: border-color 0.3s; }
.value-item:hover { border-color: var(--orange); }
.value-name { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--silver); line-height: 1.6; }

/* ── CTA ── */
.cta-wrap { background: var(--black); position: relative; overflow: hidden; }
.cta-section { padding: 160px 60px; text-align: center; position: relative; max-width: 1500px; margin: 0 auto; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,100,0,0.07) 0%, transparent 70%), linear-gradient(180deg, transparent, rgba(255,100,0,0.03)); }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 5vw, 76px); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 28px; }
.cta-title em { color: var(--orange-light); font-style: italic; }
.cta-sub { font-size: 16px; color: var(--silver); max-width: 480px; margin: 0 auto 56px; line-height: 1.8; }
.cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; }

/* ── PAGE HERO (subpages) ── */
.page-hero-wrap { background: var(--black); position: relative; overflow: hidden; }
.page-hero {
  padding: 180px 60px 80px; max-width: 1500px; margin: 0 auto; position: relative; z-index: 2;
}
.page-hero .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,100,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,100,0,0.04) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--silver); text-decoration: none; text-transform: uppercase; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,100,0,0.3); font-size: 10px; }
.breadcrumb .current { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--orange); text-transform: uppercase; }
.page-hero .section-title { margin-bottom: 20px; }
.page-hero-desc { font-size: 17px; line-height: 1.85; color: var(--silver); max-width: 560px; }

/* ── CONTACT FORM ── */
.contact-wrap { background: var(--black); }
.contact-section { padding: 100px 60px; max-width: 1500px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { border: 1px solid var(--border-subtle); padding: 32px; display: flex; align-items: flex-start; gap: 20px; transition: border-color 0.3s; }
.info-card:hover { border-color: var(--border); }
.info-icon { width: 48px; height: 48px; border: 1px solid rgba(255,100,0,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); font-size: 18px; }
.info-card h4 { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--silver); line-height: 1.6; }
.info-card a { color: var(--orange); text-decoration: none; }

.form-card { border: 1px solid var(--border-subtle); padding: 48px; position: relative; }
.form-card::before { content: ''; position: absolute; top: -1px; left: 40px; width: 80px; height: 2px; background: var(--orange); }
.form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.form-card h3 em { color: var(--orange-light); font-style: italic; }
.form-subtitle { font-size: 14px; color: var(--silver); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: 0.3em; color: var(--silver); text-transform: uppercase; margin-bottom: 10px; }
.form-control { width: 100%; padding: 14px 18px; background: rgba(6,4,26,0.6); border: 1px solid var(--border-subtle); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; transition: all 0.3s; outline: none; }
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(255,100,0,0.1); }
.form-control::placeholder { color: rgba(180,184,217,0.5); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8fbf' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
select.form-control option { background: var(--deep); color: var(--white); }
.form-submit { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); background: var(--orange); padding: 18px 40px; border: none; cursor: pointer; width: 100%; transition: background 0.3s; position: relative; overflow: hidden; }
.form-submit:hover { background: var(--orange-light); }

/* ── BLOG CARDS ── */
.blog-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); }
.blog-card { background: var(--black); padding: 0; display: flex; flex-direction: column; transition: background 0.3s; }
.blog-card:hover { background: var(--deep); }
.blog-thumb { height: 220px; background: var(--deep); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.blog-thumb svg { width: 48px; height: 48px; stroke: rgba(255,100,0,0.2); fill: none; stroke-width: 1; transition: stroke 0.3s; }
.blog-card:hover .blog-thumb svg { stroke: rgba(255,100,0,0.5); }
.blog-body { padding: 40px 36px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: 0.4em; color: var(--orange); text-transform: uppercase; margin-bottom: 16px; }
.blog-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--white); line-height: 1.3; margin-bottom: 16px; }
.blog-body h3 a { text-decoration: none; color: var(--white); transition: color 0.3s; }
.blog-body h3 a:hover { color: var(--orange-light); }
.blog-excerpt { font-size: 14px; color: var(--silver); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-subtle); padding-top: 16px; font-size: 11px; color: rgba(180,184,217,0.6); }
.blog-read { font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: 0.25em; color: var(--orange); text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.blog-read:hover { gap: 14px; }
.blog-read::after { content: '→'; }

/* ── TEAM ── */
.team-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); }
.team-card { background: var(--black); padding: 56px 44px; text-align: center; transition: background 0.3s; }
.team-card:hover { background: var(--deep); }
.team-avatar { width: 100px; height: 100px; margin: 0 auto 28px; border: 1px solid rgba(255,100,0,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--orange); transition: border-color 0.3s; }
.team-card:hover .team-avatar { border-color: var(--orange); }
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.team-role { font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: 0.35em; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; }
.team-card > p { font-size: 14px; color: var(--silver); line-height: 1.7; }
.team-socials { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.team-socials a { width: 32px; height: 32px; border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--silver); font-size: 11px; text-decoration: none; transition: all 0.3s; }
.team-socials a:hover { border-color: var(--orange); color: var(--orange); }

/* ── FEATURED ARTICLE ── */
.featured-article { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-subtle); margin-bottom: 60px; }
.featured-thumb { background: var(--deep); display: flex; align-items: center; justify-content: center; min-height: 360px; }
.featured-thumb svg { width: 80px; height: 80px; stroke: rgba(255,100,0,0.15); fill: none; stroke-width: 0.8; }
.featured-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--deep); border-top: 2px solid var(--orange); padding: 25px 0 0; position: relative; z-index: 2; }
.footer-inner { max-width: 1500px; margin: 0 auto; padding: 0 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo .logo-img { height: 48px; }
.footer-desc { font-size: 14px; color: var(--silver); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 16px; margin-top: 32px; }
.social-btn { width: 36px; height: 36px; border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--silver); text-decoration: none; font-size: 12px; transition: all 0.3s; }
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-col-title { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.4em; color: var(--orange); text-transform: uppercase; margin-bottom: 28px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--silver); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--off-white); }
.footer-bottom { background: #04031a; border-top: 1px solid rgba(255,100,0,0.15); padding: 20px 60px; display: flex; justify-content: center; align-items: center; width: 100vw; margin-left: calc(-50vw + 50%); }
.footer-copy { font-size: 12px; color: rgba(180,184,217,0.6); letter-spacing: 0.05em; text-align: center; }
.footer-badges { display: none; }

/* ── FAQ ACCORDION ── */
.faq-section { padding: 100px 60px; max-width: 1500px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start; }
.faq-sidebar { position: sticky; top: 120px; }
.faq-categories { display: flex; flex-direction: column; gap: 8px; margin-top: 36px; }
.faq-cat-btn {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 400;
  letter-spacing: 0.25em; color: var(--silver); text-transform: uppercase;
  background: none; border: 1px solid var(--border-subtle); padding: 14px 20px;
  cursor: pointer; text-align: left; transition: all 0.3s; display: flex; align-items: center; gap: 12px;
}
.faq-cat-btn::before { content: ''; width: 16px; height: 1px; background: rgba(255,100,0,0.3); transition: width 0.3s, background 0.3s; }
.faq-cat-btn:hover, .faq-cat-btn.active { border-color: var(--orange); color: var(--orange); }
.faq-cat-btn:hover::before, .faq-cat-btn.active::before { width: 24px; background: var(--orange); }

.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.4em; color: var(--orange); text-transform: uppercase;
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.faq-group-title::before { content: ''; width: 20px; height: 1px; background: var(--orange); }

.faq-item { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%; padding: 24px 0; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left; transition: all 0.3s;
}
.faq-question h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
  color: var(--white); line-height: 1.4; transition: color 0.3s;
}
.faq-question:hover h3 { color: var(--orange-light); }
.faq-toggle {
  width: 36px; height: 36px; border: 1px solid rgba(255,100,0,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s; position: relative;
}
.faq-toggle::before, .nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); opacity: 0; transition: opacity 0.3s;
}
.nav-cta:hover::before { opacity: 0.1; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 20px); left: -20px; background: rgba(6,4,26,0.98); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05); border-top: 2px solid var(--orange);
  list-style: none; padding: 10px 0; min-width: 200px; border-radius: 0 0 4px 4px;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.dropdown::before { content: ''; position: absolute; top: -30px; left: 0; right: 0; height: 30px; }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown li { margin: 0; }
.dropdown li a {
  display: block; padding: 12px 24px; font-size: 14px; color: var(--silver); transition: all 0.3s;
  text-transform: none; letter-spacing: 0; font-weight: 500; font-family: 'DM Sans', sans-serif;
}
.dropdown li a:hover { background: rgba(255,100,0,0.1); color: var(--orange); padding-left: 30px; }

.menu-btn { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 200; position: relative; }
.menu-line { width: 30px; height: 1px; background: var(--white); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.menu-btn.active .menu-line:nth-child(1) { transform: translateY(3.5px) rotate(45deg); background: var(--orange); }
.menu-btn.active .menu-line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); background: var(--orange); }

.faq-toggle::after { width: 1px; height: 14px; }
.faq-item.open .faq-toggle { border-color: var(--orange); background: rgba(255,100,0,0.08); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 0 28px; }
.faq-answer p {
  font-size: 15px; line-height: 1.85; color: var(--silver); max-width: 560px;
  padding-left: 0; border-left: 2px solid rgba(255,100,0,0.2); padding-left: 20px;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── INDUSTRIES ── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.industry-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 48px 40px; transition: all 0.4s ease; border-radius: 4px; position: relative; overflow: hidden; }
.industry-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0; transition: opacity 0.4s; }
.industry-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.04); border-color: rgba(255,100,0,0.2); box-shadow: 0 40px 60px -20px rgba(0,0,0,0.5); }
.industry-card:hover::before { opacity: 1; }
.ind-icon { font-size: 40px; margin-bottom: 24px; filter: grayscale(1) invert(0.8) sepia(1) hue-rotate(340deg) saturate(3); opacity: 0.8; transition: all 0.4s; }
.industry-card:hover .ind-icon { filter: grayscale(0); transform: scale(1.1); opacity: 1; }
.ind-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.ind-desc { font-size: 15px; line-height: 1.8; color: var(--silver); }

/* ── NAVIGATION VISIBILITY ── */
.desktop-nav { display: flex; }
.mobile-nav { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: flex; }
  .nav-logo .logo-img { height: 48px; }
  nav { padding: 20px 24px !important; display: flex; flex-direction: column; }
  nav.scrolled { padding: 14px 24px !important; }
  
  .nav-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
  
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(6,4,26,0.98); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; padding: 40px 32px; gap: 8px;
    transform: translateX(-100%); opacity: 0; pointer-events: none;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 150; overflow-y: auto; justify-content: flex-start; align-items: flex-start;
  }
  .nav-links.active { transform: translateX(0); opacity: 1; pointer-events: auto; }
  
  .nav-links li {
    width: 100%; display: flex; align-items: stretch; padding: 0;
  }
  
  .nav-links li a {
    width: 100%; padding: 14px 16px; color: var(--white); font-size: 18px;
    display: flex; align-items: center; transition: all 0.3s ease;
  }
  
  .nav-links li a:hover { color: var(--orange); }
  
  /* Category headers */
  .menu-category {
    font-size: 18px; font-weight: 700; color: var(--white); padding: 20px 16px 12px 16px !important;
    margin-top: 8px; font-style: normal; display: block !important;
    border-left: 3px solid var(--orange); padding-left: 13px !important;
  }
  
  /* Indented menu items under categories */
  .menu-item-indented { padding-left: 40px !important; font-size: 16px; color: var(--silver); }
  .menu-item-indented:hover { color: var(--orange); background: rgba(255,100,0,0.08); }
  
  /* Dividers between groups */
  .menu-divider {
    height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0; display: block !important;
    width: 100%; padding: 0 !important;
  }
  
  /* Close button - make hamburger more prominent */
  .menu-btn { position: relative; z-index: 201; }
  
  .nav-cta { 
    width: 100%; padding: 14px 16px; margin-top: 16px; text-align: center;
    background: var(--orange); color: var(--black); font-weight: 600;
    border-radius: 6px; transition: all 0.3s ease;
  }
  .nav-cta:hover { background: #ff7e00; }
  
  .hero { padding: 140px 24px 60px; flex-direction: column; align-items: flex-start; justify-content: flex-start; min-height: auto; }
  .hero-ring { display: none; }
  .hero-content { margin-top: 0; margin-bottom: 60px; }
  .hero-stats { position: relative; bottom: auto; left: auto; right: auto; margin-top: 0; border-top: 1px solid var(--border-subtle); padding-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; width: 100%; }
  .hero-actions, .cta-actions { flex-wrap: wrap; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .why-us, .services, .about, .testimonials { padding: 80px 24px; }
  .certifications { padding: 60px 24px; flex-direction: column; gap: 40px; }
  .cert-label { margin-right: 0; }
  .cert-divider { display: none; }
  .cta-section { padding: 100px 24px; }
  .footer-inner { padding: 0 24px 0; }
  .why-grid, .about-grid, .contact-grid, .industry-split, .industry-grid { grid-template-columns: 1fr !important; gap: 60px; }
  .about-mission { grid-template-columns: 1fr; }
  .services-body { grid-template-columns: 1fr; }
  .testi-grid, .blog-grid-3, .team-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .services-cta-strip { flex-direction: column; gap: 20px; text-align: center; padding: 28px 24px; }
  .page-hero { padding: 140px 24px 60px; }
  .contact-section { padding: 60px 24px; }
  .featured-article { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-section { padding: 60px 24px; }
  section { padding-left: 24px !important; padding-right: 24px !important; }
  [style*="section"] { padding: 40px 24px !important; }
  .faq-sidebar { position: static; }
  /* Inline-styled grid sections on enriched pages */
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px !important; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns: 2fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 100px"] { grid-template-columns: 1fr !important; gap: 60px !important; }
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 2px"] { grid-template-columns: 1fr !important; }
  [style*="padding: 140px 60px"] { padding: 80px 24px !important; }
  [style*="padding: 100px 60px"] { padding: 60px 24px !important; }
  [style*="padding: 80px 60px"] { padding: 60px 24px !important; }
  [style*="padding: 60px 60px"] { padding: 40px 24px !important; }
}
/* ── PAGINATION ── */
.pagination-wrapper { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 60px; padding: 40px 0; }
.pagination-btn { font-family: 'DM Sans', sans-serif; font-size: 12px; padding: 10px 14px; background: var(--navy); border: 1px solid rgba(255,100,0,0.2); color: var(--white); cursor: pointer; transition: all 0.3s ease; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.pagination-btn:hover { background: var(--deep); border-color: var(--orange); color: var(--orange); }
.pagination-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-btn:disabled:hover { background: var(--navy); border-color: rgba(255,100,0,0.2); color: var(--white); }
.pagination-info { color: var(--silver); font-size: 12px; display: flex; align-items: center; gap: 12px; margin-top: 20px; text-align: center; justify-content: center; }

/* ── BLOG RESPONSIVENESS ── */
@media (max-width: 1200px) {
  .blog-body { padding: 28px 24px; }
  .blog-body h3 { font-size: 20px; margin-bottom: 12px; }
  .blog-excerpt { font-size: 14px; line-height: 1.6; }
  .featured-article .featured-body { padding: 32px; }
  .featured-article .featured-body h2 { font-size: 26px; }
  .blog-thumb { height: 200px; }
}

@media (max-width: 1200px) {
  #blog-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .blog-body { padding: 24px 20px; }
  .blog-body h3 { font-size: 18px; }
  .blog-excerpt { font-size: 13px; line-height: 1.5; }
  .blog-thumb { height: 160px; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-thumb { height: 240px; }
  .featured-article .featured-body { padding: 28px; }
  .featured-article .featured-body h2 { font-size: 24px; }
  .featured-article .featured-body p { font-size: 13px; }
}

@media (max-width: 700px) {
  #blog-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .blog-card { border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
  .blog-body { padding: 20px; }
  .blog-body h3 { font-size: 18px; margin-bottom: 10px; }
  .blog-excerpt { font-size: 13px; line-height: 1.6; }
  .blog-meta { flex-direction: column; gap: 14px; font-size: 10px; }
  .blog-thumb { height: 180px; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-thumb { height: 220px; margin-bottom: 20px; }
  .featured-article .featured-body { padding: 20px; }
  .featured-article .featured-body h2 { font-size: 22px; margin-bottom: 16px; }
  .featured-article .featured-body p { font-size: 13px; margin-bottom: 16px; }
  .featured-article .featured-body .btn-primary { width: fit-content; }
}

@media (max-width: 500px) {
  #blog-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .blog-card { display: flex; flex-direction: column; }
  .blog-body { padding: 16px; }
  .blog-body h3 { font-size: 16px; margin-bottom: 8px; }
  .blog-excerpt { font-size: 12px; line-height: 1.5; margin-bottom: 12px; }
  .blog-meta { flex-direction: row; justify-content: space-between; gap: 8px; font-size: 9px; }
  .blog-thumb { height: 150px; }
  .blog-read { font-size: 8px; }
  .featured-thumb { height: 180px; margin-bottom: 16px; }
  .featured-article .featured-body { padding: 16px; }
  .featured-article .featured-body h2 { font-size: 18px; margin-bottom: 12px; }
  .featured-article .featured-body p { font-size: 12px; margin-bottom: 12px; }
  .pagination-wrapper { gap: 4px; flex-wrap: wrap; margin-top: 40px; padding: 20px 0; }
  .pagination-btn { padding: 6px 8px; font-size: 10px; min-width: 32px; }
  .pagination-info { flex-direction: column; gap: 6px; font-size: 11px; margin-top: 12px; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr !important; }
  [style*="padding: 40px 24px"] { padding: 20px 16px !important; }
  [style*="padding: 60px 24px"] { padding: 30px 16px !important; }
  section { padding-left: 16px !important; padding-right: 16px !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(40px, 10vw, 52px); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; margin-bottom: 20px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; justify-content: center; width: 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .cert-badges { gap: 60px; }
}

@media (max-width: 400px) {
  #blog-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .blog-body { padding: 12px; }
  .blog-body h3 { font-size: 14px; margin-bottom: 6px; }
  .blog-excerpt { font-size: 11px; line-height: 1.4; margin-bottom: 8px; }
  .blog-meta { gap: 4px; font-size: 8px; }
  .blog-tag { font-size: 7px; }
  .featured-article .featured-body p { font-size: 11px; }
}

/* Certifications note */
.cert-note {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--silver);
  margin-top: 24px;
  width: 100%;
  opacity: 0.8;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

