:root {
  --bg: #f4f7fb;
  --bg-soft: #e9f0f7;
  --surface: #ffffff;
  --surface-2: #eef4fa;
  --text: #102235;
  --muted: #647589;
  --line: rgba(16,34,53,.13);
  --accent: #096b88;
  --accent-2: #23b39c;
  --ink-on-accent: #ffffff;
  --radius: 16px;
  --shadow: 0 22px 60px rgba(16,34,53,.11);
  --hero-overlay: linear-gradient(90deg, rgba(244,247,251,.98) 0%, rgba(244,247,251,.9) 43%, rgba(244,247,251,.28) 100%);
}

html[data-theme="graphite"] {
  --bg: #070b12;
  --bg-soft: #0e1624;
  --surface: #111b2b;
  --surface-2: #17253a;
  --text: #f5f8fb;
  --muted: #aab6c5;
  --line: rgba(255,255,255,.12);
  --accent: #60d7ff;
  --accent-2: #8cffc6;
  --ink-on-accent: #06111a;
  --shadow: 0 28px 70px rgba(0,0,0,.32);
  --hero-overlay: linear-gradient(90deg, rgba(7,11,18,.98) 0%, rgba(7,11,18,.88) 45%, rgba(7,11,18,.28) 100%);
}

html[data-theme="emerald"] {
  --bg: #f2f8f3;
  --bg-soft: #e3f0e5;
  --surface: #ffffff;
  --surface-2: #e8f4eb;
  --text: #12352d;
  --muted: #60746f;
  --line: rgba(18,53,45,.14);
  --accent: #0b7a53;
  --accent-2: #d5ef5b;
  --ink-on-accent: #ffffff;
  --shadow: 0 20px 56px rgba(18,53,45,.1);
  --hero-overlay: linear-gradient(90deg, rgba(242,248,243,.98) 0%, rgba(242,248,243,.9) 43%, rgba(242,248,243,.25) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "DM Sans", Arial, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, blockquote { font-family: Manrope, "DM Sans", sans-serif; }
.noise, .hero-orb, .marquee { display: none; }

.site-header {
  height: 78px;
  padding: 0 clamp(20px,5vw,72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; width: max-content; font-family: Manrope, sans-serif; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink-on-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand-name { font-size: 15px; font-weight: 800; line-height: 1.04; }
.brand-name b { display: block; margin-top: 3px; color: var(--accent); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: var(--muted); font-size: 13px; font-weight: 700; padding: 29px 0; position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--accent); transition: right .22s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--text); }
.site-nav a.active::after { right: 0; }
.header-cta {
  justify-self: end;
  border: 1px solid var(--line);
  background: var(--text);
  color: var(--bg);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 800;
}
.header-cta span, .button span { margin-left: 8px; }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero {
  min-height: 680px;
  padding: clamp(56px,8vw,104px) clamp(22px,7vw,104px) 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: clamp(34px,6vw,76px);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-image-layer {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay), url("../images/server-hero.webp") center right / cover no-repeat;
  opacity: .95;
  transform: scale(1.01);
}
.hero-copy, .hero-visual, .hero-stats { position: relative; z-index: 1; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 800;
}
.hero h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  font-size: clamp(32px,3.9vw,52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.hero-intro { max-width: 650px; color: var(--muted); font-size: clamp(15px,1.25vw,18px); line-height: 1.72; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-pills span { border: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 86%, transparent); border-radius: 999px; padding: 9px 13px; color: var(--text); font: 800 12px Manrope; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 19px;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--accent); color: var(--ink-on-accent); box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 24%, transparent); }
.button-light { background: var(--surface); color: var(--text); }
.text-link { color: var(--text); font-weight: 800; border-bottom: 1px solid var(--line); padding: 9px 0; }
.text-link span { color: var(--accent); }

.hero-visual { justify-self: end; width: min(100%, 470px); }
.service-dashboard {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  animation: panelFloat 7s ease-in-out infinite;
}
.service-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, transparent), transparent 46%);
  pointer-events: none;
}
.service-dashboard > * { position: relative; z-index: 1; }
.dash-top { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.dash-top span { width: 32px; height: 32px; border-radius: 10px; background: var(--accent); }
.dash-top strong { font: 800 15px Manrope; }
.dash-top small { margin-left: auto; color: var(--accent); border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; font-weight: 800; }
.dash-score { background: var(--text); color: var(--bg); border-radius: 18px; padding: 22px; margin-bottom: 14px; }
.dash-score b { display: block; font: 800 38px/1 Manrope; letter-spacing: -.03em; }
.dash-score span { opacity: .76; font-size: 13px; }
.dash-list { display: grid; gap: 10px; margin: 16px 0; }
.dash-list p { display: flex; align-items: center; gap: 10px; margin: 0; border: 1px solid var(--line); background: color-mix(in srgb, var(--surface-2) 62%, transparent); border-radius: 14px; padding: 12px; color: var(--muted); font-size: 13px; }
.dash-list i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-2) 18%, transparent); }
.dash-list strong { margin-left: auto; color: var(--text); font-size: 12px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-grid span { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.dash-grid b { display: block; font: 800 22px Manrope; color: var(--accent); }
.dash-grid small { color: var(--muted); }
.floating-card { display: none; }
.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 32px;
}
.hero-stats div { background: color-mix(in srgb, var(--surface) 92%, transparent); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.hero-stats strong { display: block; font: 800 22px Manrope; }
.hero-stats span { color: var(--muted); font-size: 13px; }

.section { padding: clamp(68px,8vw,112px) clamp(22px,7vw,104px); }
.section-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.65fr); align-items: end; gap: 42px; margin-bottom: 42px; }
.section-heading h2, .page-hero h1 { margin: 14px 0 0; font-size: clamp(26px,3vw,42px); line-height: 1.14; letter-spacing: -.02em; }
.section-heading > p, .page-lead { color: var(--muted); line-height: 1.72; font-size: 16px; }
.standards-section, .industries-section, .process, .team-section { background: var(--bg-soft); }
.standards-grid, .digital-grid, .industry-grid { display: grid; gap: 16px; }
.standards-grid { grid-template-columns: repeat(3,1fr); }
.standards-grid article, .service-card, .office-grid article, .purpose-card, .team-card, .credential-list > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--text) 6%, transparent);
}
.standards-grid article { min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, border-color .25s ease; }
.standards-grid article:hover, .service-card:hover, .team-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.standards-grid span, .service-number { color: var(--accent); font: 800 12px Manrope; letter-spacing: .12em; }
.standards-grid h3 { font-size: 22px; margin: 45px 0 10px; }
.standards-grid p, .service-card p, .digital-grid small, .feature-list small, .team-card p, .office-grid p { color: var(--muted); line-height: 1.65; }

.digital-section { padding-top: 0; }
.digital-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px,5vw,64px);
  align-items: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 24px;
  padding: clamp(34px,5vw,62px);
  overflow: hidden;
}
.digital-panel .eyebrow { color: var(--accent-2); }
.digital-panel h2 { font-size: clamp(26px,3vw,40px); line-height: 1.14; letter-spacing: -.02em; margin: 14px 0; }
.digital-panel p:not(.eyebrow) { color: color-mix(in srgb, var(--bg) 76%, transparent); line-height: 1.72; }
.digital-grid { grid-template-columns: repeat(2,1fr); }
.digital-grid article { min-height: 175px; border: 1px solid color-mix(in srgb, var(--bg) 14%, transparent); border-radius: 16px; padding: 22px; background: color-mix(in srgb, var(--bg) 8%, transparent); display: flex; flex-direction: column; justify-content: space-between; }
.digital-grid span { color: var(--accent-2); font: 800 12px Manrope; }
.digital-grid strong { font: 800 20px/1.18 Manrope; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { min-height: 280px; padding: 28px; position: relative; transition: transform .25s ease, border-color .25s ease; }
.service-card h3 { max-width: 270px; margin: 48px 0 12px; font-size: 22px; line-height: 1.18; }
.card-arrow { position: absolute; right: 26px; top: 24px; color: var(--accent); }
.services-grid.expanded { grid-template-columns: repeat(3,1fr); }

.split-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; padding-top: 0; }
.feature-panel { background: var(--accent); color: var(--ink-on-accent); border-radius: var(--radius); padding: clamp(34px,5vw,62px); }
.feature-panel .eyebrow { color: inherit; opacity: .75; }
.feature-panel h2 { font-size: clamp(27px,3vw,40px); line-height: 1.12; letter-spacing: -.02em; }
.feature-list { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px,5vw,54px); }
.feature-list div { display: flex; gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.feature-list div:last-child { border-bottom: 0; }
.feature-list span { color: var(--accent); font-weight: 800; }
.feature-list p { margin: 0; font: 800 17px Manrope; }
.feature-list small { display: block; margin-top: 6px; font: 400 14px/1.65 "DM Sans"; }

.industry-grid { grid-template-columns: repeat(4,1fr); }
.industry-grid span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 15px 18px; color: var(--text); font-weight: 800; text-align: center; }
.director-strip { display: grid; grid-template-columns: 240px 1fr; gap: 54px; align-items: center; }
.director-monogram { width: 190px; aspect-ratio: 1; border-radius: 24px; background: var(--text); color: var(--bg); display: grid; place-items: center; font: 800 58px Manrope; box-shadow: var(--shadow); }
.director-copy blockquote { margin: 14px 0 22px; font-size: clamp(24px,3vw,38px); line-height: 1.25; letter-spacing: -.02em; }
.director-copy > p { color: var(--muted); }
.profile-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.profile-links a { border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; color: var(--text); font-size: 13px; font-weight: 800; }

.page-hero { padding: clamp(76px,10vw,140px) clamp(22px,10vw,150px); background: var(--bg-soft); }
.page-hero.compact { padding-bottom: 78px; }
.page-lead { max-width: 860px; margin-top: 28px; font-size: 18px; }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 0; }
.purpose-card { min-height: 360px; padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.purpose-card h2 { font-size: clamp(24px,2.6vw,34px); line-height: 1.25; }
.purpose-card.accent { background: var(--accent); color: var(--ink-on-accent); }
.purpose-card.accent .eyebrow { color: inherit; opacity: .72; }
.values-section { text-align: center; }
.value-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.value-cloud span { border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 14px 22px; font: 800 17px Manrope; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.team-card { overflow: hidden; display: grid; grid-template-columns: .68fr 1.32fr; min-height: 360px; transition: transform .25s ease, border-color .25s ease; }
.team-card > div:last-child { padding: 30px; }
.team-photo { min-height: 100%; background: var(--surface-2); display: grid; place-items: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo span { color: var(--accent); font: 800 58px Manrope; }
.team-card h3 { margin: 10px 0 10px; font-size: 26px; }

.process > h2 { margin: 20px 0 42px; font-size: clamp(28px,3.3vw,44px); line-height: 1.14; }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.process-line div { padding: 24px 14px; display: grid; gap: 26px; }
.process-line span { color: var(--accent); font-size: 11px; font-weight: 800; }
.process-line strong { font: 800 18px Manrope; }

.contact-hero { padding: clamp(74px,9vw,126px) clamp(22px,7vw,104px); display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(34px,6vw,74px); align-items: start; }
.contact-hero h1 { font-size: clamp(30px,3.5vw,48px); line-height: 1.12; letter-spacing: -.02em; margin: 16px 0 22px; }
.contact-hero em { color: var(--accent); font-style: normal; }
.contact-hero > div > p:last-child { color: var(--muted); line-height: 1.72; max-width: 520px; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,4vw,48px); display: grid; gap: 20px; box-shadow: var(--shadow); position: relative; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span { color: var(--muted); font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--text); padding: 13px; outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent); }
.contact-form select option { color: #111; }
.contact-form .honey { position: absolute; left: -9999px; }
.form-message { padding: 14px; border-radius: 10px; font-size: 13px; line-height: 1.55; }
.form-message.success { background: color-mix(in srgb, var(--accent-2) 18%, var(--surface)); color: var(--text); }
.form-message.error { background: #ffe8e8; color: #8c1f28; }
.office-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding-top: 0; }
.office-grid article { min-height: 245px; padding: 28px; }
.office-grid h2 { margin: 46px 0 12px; font-size: 24px; }
.office-grid a, .office-grid small { display: block; color: var(--muted); margin-top: 9px; font-size: 13px; }
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-direct a { color: var(--text); font: 800 17px Manrope; word-break: break-word; }

.profile-toolbar { padding: 58px clamp(22px,7vw,104px) 30px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.profile-toolbar h1 { margin: 8px 0 0; font-size: clamp(30px,3.5vw,48px); }
.company-profile { background: #f6f4ed; color: #10201d; max-width: 1180px; margin: 0 auto 90px; box-shadow: var(--shadow); }
.profile-cover { min-height: 640px; padding: 58px; background: #102235; color: #fff; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.profile-cover::after { content: ""; position: absolute; width: 520px; height: 520px; right: -150px; top: 80px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 24%, transparent); }
.profile-cover > * { position: relative; z-index: 1; }
.profile-cover-top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.profile-cover h1 { max-width: 760px; margin: 20px 0; font-size: clamp(42px,6vw,76px); line-height: 1; letter-spacing: -.04em; }
.profile-cover p { font: 800 22px Manrope; color: var(--accent-2); }
.cover-locations { display: flex; gap: 24px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }
.profile-section { padding: 72px 62px; border-bottom: 1px solid rgba(0,0,0,.12); }
.profile-kicker { color: #14785b; text-transform: uppercase; letter-spacing: .16em; font: 800 10px Manrope; }
.profile-intro, .profile-leadership { display: grid; grid-template-columns: .7fr 1.3fr; gap: 54px; }
.profile-section h2 { font-size: clamp(28px,3.6vw,48px); line-height: 1.12; letter-spacing: -.025em; }
.profile-large-text { margin: 0; font: 700 clamp(21px,2.4vw,32px)/1.45 Manrope; }
.facts-grid, .profile-services, .profile-achievements, .profile-team, .profile-footer { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; }
.facts-grid { gap: 0 34px; margin-top: 35px; }
.facts-grid div { padding: 25px 0; border-top: 1px solid rgba(0,0,0,.12); display: grid; gap: 8px; }
.facts-grid span { color: #54706a; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.facts-grid strong { font: 800 17px Manrope; }
.profile-services, .profile-achievements { background: rgba(0,0,0,.12); margin-top: 34px; }
.profile-services > div, .profile-achievements > div { background: #f6f4ed; padding: 28px; min-height: 210px; }
.profile-services h3, .profile-achievements h2 { margin: 24px 0 10px; font-size: 23px; }
.profile-services p, .profile-achievements p, .profile-team p { color: #54706a; line-height: 1.65; }
.profile-dark { background: #102235; color: #fff; }
.profile-dark h2 { max-width: 920px; font-size: clamp(28px,3.4vw,44px); line-height: 1.28; }
.profile-achievements h3 { color: #10201d; font-size: 17px; margin: 0 0 12px; }
.profile-team { gap: 28px; margin-top: 34px; }
.profile-team > div { border-top: 1px solid rgba(0,0,0,.14); padding-top: 24px; }
.profile-team img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; }
.profile-team h2 { font-size: 29px; margin: 16px 0 5px; }
.profile-team h3 { color: #14785b; }
.profile-footer { padding: 62px; background: var(--accent); color: var(--ink-on-accent); gap: 40px; }
.profile-footer h2 { font-size: clamp(28px,3.4vw,42px); margin: 0; }

.site-footer { padding: 70px clamp(22px,7vw,104px) 28px; background: var(--text); color: var(--bg); }
.footer-top { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-bottom: 58px; border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent); }
.footer-top h2 { margin: 24px 0 0; font-size: clamp(28px,3.4vw,44px); line-height: 1.14; letter-spacing: -.02em; }
.footer-top em { color: var(--accent-2); font-style: normal; }
.footer-top > a { border-bottom: 1px solid color-mix(in srgb, var(--bg) 35%, transparent); padding: 12px 0; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 28px; color: color-mix(in srgb, var(--bg) 68%, transparent); font-size: 12px; }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 25; min-width: 56px; height: 56px; padding: 0 16px; display: flex; align-items: center; justify-content: center; gap: 9px; background: #25d366; color: #fff; border-radius: 999px; box-shadow: 0 14px 32px rgba(0,0,0,.25); font-size: 13px; font-weight: 800; }
.whatsapp[href="https://wa.me/"] { display: none; }
.whatsapp svg { width: 28px; height: 28px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes panelFloat { 50% { transform: translateY(-8px); } }

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .site-header { background: var(--bg); }
  .hero-pills span, .hero-stats div { background: var(--surface); }
  .button-primary { box-shadow: var(--shadow); }
  .digital-panel p:not(.eyebrow) { color: var(--bg-soft); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 6px; padding: 10px; }
  .menu-toggle span { width: 24px; height: 2px; background: var(--text); }
  .site-nav { display: none; position: absolute; left: 18px; right: 18px; top: 76px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px; }
  .site-nav a::after { display: none; }
  .hero, .digital-panel, .split-feature, .purpose-grid, .leader-profile, .contact-hero, .profile-intro, .profile-leadership { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { justify-self: start; max-width: 440px; width: 100%; }
  .section-heading { grid-template-columns: 1fr; }
  .standards-grid, .services-grid, .services-grid.expanded, .industry-grid, .office-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .director-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 70px; padding: 0 16px; }
  .brand-name { display: none; }
  .hero { padding: 52px 20px 34px; }
  .hero h1 { font-size: 30px; line-height: 1.16; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { display: none; }
  .hero-stats, .standards-grid, .services-grid, .services-grid.expanded, .digital-grid, .industry-grid, .office-grid, .process-line, .facts-grid, .profile-services, .profile-achievements, .profile-team, .profile-footer { grid-template-columns: 1fr; }
  .section { padding: 58px 20px; }
  .section-heading h2, .page-hero h1, .contact-hero h1 { font-size: 28px; }
  .service-card, .standards-grid article { min-height: auto; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { min-height: 280px; }
  .director-monogram { width: 150px; font-size: 44px; }
  .page-hero, .contact-hero { padding: 62px 20px; }
  .profile-toolbar { align-items: flex-start; flex-direction: column; }
  .company-profile { margin-bottom: 0; }
  .profile-cover { min-height: 560px; padding: 34px; }
  .profile-cover h1 { font-size: 42px; }
  .profile-section { padding: 48px 26px; }
  .profile-footer { padding: 44px 26px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp span { display: none; }
  .whatsapp { width: 56px; padding: 0; }
}

@media print {
  @page { size: A4; margin: 0; }
  .no-print, .site-header, .site-footer, .noise, .whatsapp { display: none !important; }
  body { background: #fff; }
  .company-profile { max-width: none; margin: 0; box-shadow: none; }
  .profile-cover { min-height: 100vh; page-break-after: always; }
  .profile-section, .profile-footer { page-break-inside: avoid; }
}
