:root {
  --navy: #07264b;
  --navy-deep: #031c39;
  --blue: #078fca;
  --cyan: #19b6de;
  --violet: #7962b4;
  --ink: #081f3f;
  --muted: #5f6f82;
  --line: #dfe6ed;
  --paper: #f7f9fb;
  --white: #ffffff;
  --texture: rgba(7, 38, 75, .055);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, a { font-family: Arial, Helvetica, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(7, 38, 75, .45), 0 4px 10px rgba(0,0,0,.15);
  z-index: 999;
 }
 .wa-float:hover { background: var(--blue); }
 .wa-float svg { width: 34px; height: 34px; fill: #fff; display: block; margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(8,31,63,.08);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { height: 64px; width: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 38px; margin-left: auto; }
.main-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #102542;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 30px rgba(7,38,75,.13); }
.button-primary:hover { background: #0a3568; box-shadow: 0 14px 34px rgba(7,38,75,.22); }
.button-outline { color: var(--navy); background: var(--white); border-color: var(--navy); }
.button-outline:hover { color: var(--white); background: var(--navy); }
.header-cta { flex: 0 0 auto; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: .25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  height: 520px;
  min-height: 520px;
  background:
    radial-gradient(circle at 1px 1px, var(--texture) 1px, transparent 1.2px) 0 0 / 18px 18px,
    linear-gradient(110deg, #fff 0%, #fff 46%, #f3f7fa 46%, #f3f7fa 100%);
}
.hero::before {
  position: absolute;
  top: 34px;
  left: max(24px, calc((100vw - 1180px) / 2));
  width: 72px;
  height: 72px;
  content: "";
  border-top: 2px solid rgba(25,182,222,.7);
  border-left: 2px solid rgba(25,182,222,.7);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.22fr); height: 520px; min-height: 520px; }
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 54px 70px 18px;
}
.hero-copy h1 {
  max-width: 500px;
  margin: 13px 0 18px;
  font-size: clamp(42px,3.65vw,56px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 800;
}
.hero-copy p { max-width: 455px; margin: 0; color: #354c65; font-size: 15px; line-height: 1.6; }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 27px; }
.hero-media {
  position: relative;
  min-width: calc((100vw - min(1180px, calc(100vw - 48px))) / 2 + 100%);
  clip-path: polygon(7% 0,100% 0,100% 88%,0 100%);
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 42% center; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7,38,75,.16) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(7,38,75,.16) 1px, transparent 1px) 0 0 / 72px 72px;
  opacity: .28;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  top: 58px;
  left: max(24px,calc((100vw - 1180px) / 2 - 105px));
  color: transparent;
  font-size: 330px;
  font-weight: 900;
  line-height: .95;
  -webkit-text-stroke: 2px rgba(7,38,75,.045);
  transform: skewX(-8deg);
  pointer-events: none;
}

.strengths {
  position: relative;
  overflow: hidden;
  margin-top: -55px;
  padding: 92px 0 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 1.2px) 0 0 / 22px 22px,
    linear-gradient(110deg,var(--navy-deep),var(--navy));
  clip-path: polygon(0 9%,100% 0,100% 100%,0 100%);
}
.strengths-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); }
.strength { min-height: 158px; padding: 0 35px; text-align: center; border-right: 1px solid rgba(255,255,255,.28); }
.strength:first-child { padding-left: 0; }
.strength:last-child { padding-right: 0; border-right: 0; }
.line-icon, .service-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--cyan); }
.line-icon { width: 52px; height: 52px; margin-bottom: 14px; }
.line-icon svg, .service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.strength h2 { margin: 0 0 10px; font-size: 17px; }
.strength p { max-width: 205px; margin: 0 auto; color: #c9d7e6; font-size: 13px; line-height: 1.55; }
.strengths-watermark {
  position: absolute;
  right: -34px;
  bottom: -78px;
  color: transparent;
  font-size: 300px;
  font-weight: 900;
  -webkit-text-stroke: 2px rgba(255,255,255,.07);
  transform: skewX(-8deg);
}

.section { padding: 92px 0; }
.about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 86%, rgba(25,182,222,.055) 86% 87%, transparent 87%),
    var(--white);
}
.about::after {
  position: absolute;
  right: 4vw;
  bottom: 42px;
  width: 92px;
  height: 92px;
  content: "";
  border: 1px solid rgba(7,143,202,.18);
  transform: rotate(45deg);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 95px; }
.about-media { position: relative; width: min(100%,455px); aspect-ratio: 1; border-radius: 47% 53% 55% 45% / 52% 44% 56% 48%; }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: inherit; }
.about-ring { position: absolute; inset: -18px 12px 12px -18px; z-index: -1; border: 1px solid rgba(25,182,222,.5); border-radius: inherit; }
.about-copy h2, .section-heading h2, .case-copy h2, .final-cta h2 { letter-spacing: -.035em; }
.about-copy h2, .section-heading h2, .case-copy h2, .final-cta h2 { font-weight: 800; }
.about-copy h2 { max-width: 670px; margin: 13px 0 18px; font-size: clamp(36px,3.4vw,51px); line-height: 1.08; }
.title-line { display: block; width: 42px; height: 3px; margin-bottom: 28px; background: var(--cyan); }
.about-copy p { max-width: 690px; margin: 0 0 21px; color: #4c5f73; font-size: 16px; line-height: 1.75; }

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(7,38,75,.045) 1px, transparent 1.2px) 0 0 / 20px 20px,
    var(--paper);
}
.section-heading { margin-bottom: 36px; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(35px,3.2vw,49px); }
.services-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 345px;
  background: var(--white);
  border: 1px solid #d9e1e9;
  border-radius: 2px 2px 18px 2px;
  box-shadow: 0 15px 32px rgba(12,37,68,.055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(25,182,222,.55); box-shadow: 0 22px 44px rgba(12,37,68,.12); }
.service-image { height: 128px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-image img[src*="firefighter"] { object-position: center 15%; }
.service-image img[src*="cleaning"] { object-position: center 15%; }
.service-image img[src*="access"] { object-position: center 15%; }
.service-image img[src*="patrol"] { object-position: center 65%; }
.service-image img[src*="security"] { object-position: center 55%; }
.service-detail-media img[src*="security"] { object-position: center 55%; }
.service-image img[src*="support"] { object-position: center 70%; }
.service-icon {
  position: absolute;
  top: 103px;
  left: 22px;
  width: 49px;
  height: 49px;
  padding: 11px;
  color: var(--white);
  background: linear-gradient(145deg,var(--blue),var(--violet));
  border: 4px solid var(--white);
  border-radius: 50%;
}
.service-body { padding: 31px 22px 21px; }
.service-body h3 { margin: 0 0 10px; font-size: 18px; }
.service-body p { min-height: 72px; margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.service-body a { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; color: var(--navy); font-size: 13px; font-weight: 800; }
.service-body a b { color: var(--cyan); font-size: 20px; }
.services-mark {
  position: absolute;
  top: 25%;
  right: -65px;
  color: transparent;
  font-size: 470px;
  font-weight: 900;
  -webkit-text-stroke: 2px rgba(7,38,75,.035);
  transform: skewX(-8deg);
}

.case-study { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1.22fr; min-height: 355px; background: var(--white); }
.case-study::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  content: "";
  background: linear-gradient(135deg, transparent 49.5%, rgba(25,182,222,.14) 50%, transparent 50.5%);
  pointer-events: none;
}
.case-media img { width: 100%; height: 100%; object-fit: cover; }
.case-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 700px;
  padding: 55px 72px;
}
.case-copy h2 { max-width: 600px; margin: 10px 0 15px; font-size: clamp(31px,3vw,47px); line-height: 1.08; }
.case-copy p { max-width: 580px; margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
.text-link { padding-bottom: 6px; border-bottom: 1px solid var(--navy); font-size: 13px; font-weight: 800; }
.text-link span { margin-left: 10px; }
.case-mark {
  position: absolute;
  right: -20px;
  bottom: -70px;
  color: transparent;
  font-size: 280px;
  font-weight: 900;
  -webkit-text-stroke: 2px rgba(7,38,75,.055);
  transform: skewX(-8deg);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, transparent 0 72%, rgba(25,182,222,.07) 72% 72.4%, transparent 72.4%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.065) 1px, transparent 1.2px) 0 0 / 20px 20px,
    var(--navy-deep);
}
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .9fr auto; align-items: center; gap: 60px; }
.final-cta h2 { margin: 0; font-size: clamp(31px,3vw,44px); line-height: 1.12; }
.final-cta h2 span { color: var(--cyan); }
.final-cta p { margin: 0; padding-left: 44px; color: #c8d7e6; font-size: 14px; line-height: 1.6; border-left: 1px solid rgba(255,255,255,.35); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { background: var(--cyan); }
.cta-mark {
  position: absolute;
  bottom: -82px;
  left: -40px;
  color: transparent;
  font-size: 250px;
  font-weight: 900;
  -webkit-text-stroke: 2px rgba(255,255,255,.08);
  transform: skewX(-8deg);
}

.site-footer { background: #0a1a35; color: #fff; margin-top: 80px; }
.site-footer .footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; align-items: start; gap: 64px; padding: 72px 0 48px; }
.site-footer .footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 380px; }
.site-footer .footer-brand img { height: 72px; width: auto; object-fit: contain; align-self: flex-start; }
.site-footer .footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65; margin: 0; }
.site-footer .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; justify-content: end; }
.site-footer .footer-col { display: flex; flex-direction: column; gap: 16px; }
.site-footer .footer-col-title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-col ul a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.site-footer .footer-col ul a:hover { color: #fff; }
.site-footer .footer-social-links { display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-social-links a { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.site-footer .footer-social-links a:hover { color: rgba(255,255,255,0.7); }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer .footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.55); }
.site-footer .footer-top { color: #fff; font-weight: 600; text-decoration: none; }
.site-footer .footer-top:hover { color: rgba(255,255,255,0.75); }

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 1.2px) 0 0 / 20px 20px,
    linear-gradient(115deg, var(--navy-deep), var(--navy));
}
.page-hero::after {
  position: absolute;
  top: -105px;
  right: 7%;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(255,255,255,.13);
  transform: rotate(45deg);
}
.page-hero-content { position: relative; z-index: 2; padding: 74px 0; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero h1 { max-width: 760px; margin: 12px 0 18px; font-size: clamp(42px,5vw,66px); line-height: 1.02; letter-spacing: -.05em; }
.page-hero p { max-width: 650px; margin: 0; color: #c9d8e7; font-size: 17px; line-height: 1.65; }
.breadcrumb { display: flex; gap: 8px; margin-top: 26px; color: #a8bfd4; font-size: 12px; font-weight: 700; }
.breadcrumb a { color: var(--white); }

.content-section { position: relative; overflow: hidden; padding: 88px 0; }
.content-section.alt {
  background:
    radial-gradient(circle at 1px 1px, var(--texture) 1px, transparent 1.2px) 0 0 / 20px 20px,
    var(--paper);
}
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 84px; }
.content-image { position: relative; min-height: 460px; }
.content-image img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; border-radius: 2px 2px 40px 2px; }
.content-image::before { position: absolute; inset: 18px -18px -18px 18px; z-index: -1; content: ""; border: 1px solid rgba(25,182,222,.45); }
.content-copy h2 { margin: 12px 0 20px; font-size: clamp(34px,3.7vw,52px); line-height: 1.08; letter-spacing: -.04em; }
.content-copy p { margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.values-grid, .segments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card, .segment-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px 2px 20px 2px;
  box-shadow: 0 14px 32px rgba(12,37,68,.055);
}
.value-card::after, .segment-card::after { position: absolute; right: -25px; bottom: -25px; width: 72px; height: 72px; content: ""; border: 1px solid rgba(25,182,222,.25); transform: rotate(45deg); }
.card-number { display: block; margin-bottom: 26px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.value-card h3, .segment-card h3 { margin: 0 0 10px; font-size: 20px; }
.value-card p, .segment-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.check-list { padding: 0; margin: 16px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 18px; margin: 10px 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.check-list li::before { position: absolute; top: .72em; left: 0; width: 6px; height: 6px; content: ""; background: var(--cyan); border-radius: 50%; }

.services-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 38px; }
.services-intro h2 { max-width: 690px; margin: 10px 0 0; font-size: clamp(34px,3.7vw,50px); line-height: 1.08; letter-spacing: -.04em; }
.services-intro p { margin: 0 0 5px; padding-left: 30px; color: var(--muted); line-height: 1.65; border-left: 2px solid var(--cyan); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.service-detail {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid #d8e2eb;
  border-radius: 3px 3px 24px 3px;
  box-shadow: 0 14px 35px rgba(7,38,75,.065);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-detail:hover { transform: translateY(-7px); border-color: rgba(25,182,222,.65); box-shadow: 0 24px 48px rgba(7,38,75,.13); }
.service-detail-media { position: relative; overflow: hidden; height: 230px; }
.service-detail-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 50%, rgba(3,28,57,.58)); pointer-events: none; }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-detail:hover .service-detail-media img { transform: scale(1.045); }
.service-detail-media > span { position: absolute; right: 20px; bottom: 16px; z-index: 2; color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.service-detail-content { position: relative; display: flex; flex: 1; flex-direction: column; padding: 35px 28px 24px; }
.service-detail-icon {
  position: absolute;
  top: -28px;
  left: 27px;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--violet));
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(7,38,75,.18);
}
.service-detail-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-content .eyebrow { margin-left: 70px; min-height: 18px; }
.service-detail h2 { margin: 17px 0 10px; font-size: 25px; letter-spacing: -.025em; }
.service-detail p { margin: 0 0 24px; color: var(--muted); line-height: 1.65; }
.service-detail-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; color: var(--navy); border-top: 1px solid var(--line); font-size: 13px; font-weight: 900; }
.service-detail-link b { width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-size: 18px; transition: transform .25s ease, background .25s ease; }
.service-detail-link:hover b { background: var(--cyan); transform: translateX(3px); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; }
.contact-info h2, .contact-form h2 { margin: 10px 0 20px; font-size: clamp(32px,3.5vw,48px); letter-spacing: -.04em; }
.contact-info > p { color: var(--muted); line-height: 1.7; }
.contact-channel { display: block; margin-top: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-channel small { display: block; margin-bottom: 6px; color: var(--blue); font-weight: 900; letter-spacing: .12em; }
.contact-channel strong { font-size: 17px; }
.contact-form { padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: 2px 2px 28px 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.field label { color: var(--ink); font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 14px; color: var(--ink); background: var(--white); border: 1px solid #ccd7e1; border-radius: 2px; font: inherit; }
.field textarea { min-height: 125px; resize: vertical; }
.contact-form .button { margin-top: 20px; cursor: pointer; }
.form-status { display: none; margin: 0 0 20px; padding: 13px 15px; border: 1px solid transparent; font-size: 14px; line-height: 1.45; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #0a4f2c; background: #e8f7ee; border-color: #b9e3c8; }
.form-status.is-error { color: #7a1f1f; background: #fff0f0; border-color: #f0c1c1; }

.reveal { opacity: 1; transform: none; }
.hero-media, .service-card, .segment-card, .card { overflow: hidden; }

@media (max-width: 1020px) {
  .main-nav { gap: 22px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 30px; }
  .strengths-grid { grid-template-columns: repeat(2,1fr); gap: 38px 0; }
  .strength:nth-child(2) { border-right: 0; }
  .about-grid { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .cta-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid .button { grid-column: 2; justify-self: start; }
  .intro-grid { gap: 48px; }
  .services-intro { gap: 40px; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 34px,620px); }
  .site-header { height: 72px; }
  .brand img { height: 38px; }
  .menu-toggle { position: relative; z-index: 102; display: block; margin-left: auto; cursor: pointer; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(7,38,75,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: .25s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid #edf1f5; }
  .main-nav a::after { display: none; }
  .hero { height: auto; min-height: auto; }
  .hero-grid { display: flex; flex-direction: column; height: auto; min-height: auto; }
  .hero-copy { padding: 52px 0 38px 12px; }
  .hero-copy h1 { font-size: clamp(38px,11vw,50px); }
  .hero-copy p { font-size: 16px; }
  .hero-media { min-width: calc(100% + 34px); height: 330px; margin-right: -17px; margin-left: -17px; clip-path: polygon(0 7%,100% 0,100% 100%,0 100%); }
  .hero-watermark { top: 55px; left: -20px; font-size: 320px; }
  .strengths { margin-top: 0; padding: 74px 0 52px; clip-path: polygon(0 4%,100% 0,100% 100%,0 100%); }
  .strengths-grid { grid-template-columns: 1fr; gap: 0; }
  .strength { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .strength:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-media { width: min(88%,420px); margin: auto; }
  .about-copy h2 { font-size: 39px; }
  .services-grid { grid-template-columns: 1fr; }
  .case-study { grid-template-columns: 1fr; }
  .case-media { height: 330px; }
  .case-copy { padding: 55px 24px 70px; }
  .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .final-cta p { padding-left: 0; border-left: 0; }
  .cta-grid .button { grid-column: auto; justify-self: start; }
  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 32px; }
  .site-footer .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; justify-content: start; }
  .site-footer .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 58px 0; }
  .page-hero h1 { font-size: 42px; }
  .content-section { padding: 68px 0; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .content-image, .content-image img { min-height: 360px; }
  .values-grid, .segments-grid { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 22px; }
  .services-intro p { padding: 0; border-left: 0; }
  .service-list { grid-template-columns: 1fr; }
  .service-detail-media { height: 225px; }
}

@media (max-width: 460px) {
  .hero-copy { padding: 34px 0 26px 10px; }
  .hero-copy h1 { margin: 10px 0 14px; font-size: 34px; line-height: 1; }
  .hero-copy p { font-size: 14px; line-height: 1.5; }
  .hero-actions { gap: 10px; margin-top: 20px; }
  .hero-actions .button { min-height: 44px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-media { height: 220px; }
  .section-heading h2, .about-copy h2, .case-copy h2 { font-size: 34px; }
  .service-card { min-height: 330px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero p { font-size: 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form { padding: 24px 18px; }
  .service-detail-content { padding: 34px 21px 21px; }
  .service-detail h2 { font-size: 23px; }
  .service-detail-media { height: 205px; }
}

.site-footer .footer-credit { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); text-decoration: none; }
.site-footer .footer-credit img { height: 34px; width: auto; }
.site-footer .footer-credit:hover { color: #fff; }
