:root {
  --navy-950: #101a3b;
  --navy-900: #182348;
  --navy-800: #28345f;
  --navy-700: #33416f;
  --ink: #172247;
  --ink-soft: #344064;
  --cream: #f7f7f5;
  --line: #e2e5ea;
  --soft: #f0f1f3;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 26, 59, 0.12);
  --shadow-deep: 0 26px 70px rgba(12, 20, 50, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "IBM Plex Sans Arabic", Tahoma, sans-serif; line-height: 1.7; }
body, button, input, select, textarea { font: inherit; font-family: "IBM Plex Sans Arabic", Tahoma, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.12rem; height: 1.12rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; flex: 0 0 auto; }
.skip-link { position: fixed; top: 10px; right: 10px; z-index: 20; padding: 8px 14px; background: var(--white); color: var(--ink); border-radius: 7px; transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }
.pattern-bg { position: relative; overflow: hidden; background-color: var(--navy-900); background-image: url("public/pattern.svg"); background-repeat: repeat; background-size: 180px 180px; }
.pattern-bg::after { content: ""; position: absolute; inset: -18%; z-index: 0; pointer-events: none; background-image: url("public/pattern.svg"); background-repeat: repeat; background-size: 180px 180px; opacity: .14; transform: translate3d(-2%, -1%, 0) rotate(-1deg); animation: pattern-drift 28s ease-in-out infinite alternate; }
.pattern-bg > .container, .pattern-bg > .scroll-cue { position: relative; z-index: 1; }
.values-band::after { opacity: .22; animation: values-pattern-flow 18s ease-in-out infinite alternate; }

@keyframes pattern-drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-1deg); }
  to { transform: translate3d(2%, 1%, 0) rotate(1deg); }
}

@keyframes values-pattern-flow {
  from { transform: translate3d(-4%, -1%, 0) rotate(-1.5deg) scale(1.02); }
  to { transform: translate3d(4%, 1%, 0) rotate(1.5deg) scale(1.04); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header { position: sticky; top: 0; z-index: 10; color: var(--white); background: rgba(16, 26, 59, 0.96); border-bottom: 1px solid rgba(255,255,255,.11); }
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 92px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.25vw, 32px); font-size: 0.92rem; }
.main-nav a { color: rgba(255,255,255,.8); white-space: nowrap; }
.main-nav a:not(.nav-cta) { transition: color .18s ease, background-color .18s ease; }
.main-nav a:not(.nav-cta):hover, .main-nav a:not(.nav-cta):focus-visible, .main-nav a.is-active:not(.nav-cta) { color: var(--white); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--white); color: var(--ink) !important; border-radius: 5px; font-weight: 700; }
.nav-cta .icon { transform: rotate(180deg); }
.menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.22); border-radius: 7px; }

.hero { min-height: 700px; display: flex; align-items: center; color: var(--white); background-color: var(--navy-900); }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(16, 26, 59, .22); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; align-items: center; padding: 110px 0 115px; }
.hero-copy { width: 100%; max-width: none; animation: hero-copy-in .65s ease-out both; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--navy-800); font-size: .78rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 2px; background: currentColor; opacity: .75; }
.eyebrow.light { color: rgba(255,255,255,.7); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: inherit; line-height: 1.33; }
.hero h1 { max-width: 1100px; margin-bottom: 23px; font-size: clamp(2.65rem, 5.5vw, 5.25rem); font-weight: 700; letter-spacing: -.045em; }
.hero h1 strong, h2 em { color: #d4d9e6; font-style: normal; }
.hero-description { width: min(860px, 100%); max-width: none; margin-bottom: 30px; color: rgba(255,255,255,.77); font-size: 1.08rem; line-height: 2; animation: hero-copy-in .58s .08s ease-out both; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: hero-copy-in .58s .16s ease-out both; }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 10px; padding: 10px 20px; border-radius: 5px; font-weight: 700; transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--ink); }
.button-primary .icon, .button-dark .icon { transform: rotate(180deg); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-trust { display: flex; gap: 22px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.68); font-size: .84rem; flex-wrap: wrap; animation: hero-copy-in .58s .24s ease-out both; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .icon { color: #dbe0ec; }
.scroll-cue { position: absolute; right: 50%; bottom: 22px; display: flex; align-items: center; gap: 10px; transform: translateX(50%); color: rgba(255,255,255,.55); font-size: .76rem; }
.scroll-cue span { width: 8px; height: 8px; border-radius: 50%; background: var(--white); }

.section { padding: 115px 0; }
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: clamp(50px, 10vw, 150px); }
.section-heading { max-width: 510px; }
.section-heading h2, .section-topline h2, .centered-heading h2, .contact-copy h2 { margin-bottom: 22px; color: var(--ink); font-size: clamp(2.05rem, 4vw, 3.8rem); }
.section-heading h2 em, .section-topline h2 em, .centered-heading h2 em, .contact-copy h2 em { color: var(--navy-700); }
.section-heading > p:not(.eyebrow), .centered-heading > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1rem; line-height: 2; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--navy-800); font-weight: 700; }
.text-link .icon { transform: rotate(180deg); transition: transform .18s ease; }
.text-link:hover .icon, .text-link:focus-visible .icon { transform: translateX(-4px) rotate(180deg); }
.about-card-stack { position: relative; min-height: 430px; }
.about-card { position: absolute; width: 58%; min-height: 280px; padding: 30px; background: var(--soft); border-radius: 7px; }
.about-card-main { top: 0; right: 0; color: var(--white); background: var(--navy-800); box-shadow: var(--shadow); }
.about-card-side { bottom: 0; left: 0; width: 55%; padding: 25px; background: #eceef1; }
.card-number { display: block; color: currentColor; opacity: .56; font-size: .8rem; font-weight: 700; }
.feature-icon { width: 48px; height: 48px; margin: 35px 0 18px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.about-card h3 { margin-bottom: 12px; font-family: inherit; font-size: 1.35rem; line-height: 1.7; }
.about-card p { margin: 0; color: inherit; opacity: .72; font-size: .9rem; }

.vision-section { background: var(--cream); }
.vision-topline { margin-bottom: 38px; }
.vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.vision-card { min-height: 325px; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; transition: transform .18s ease, box-shadow .18s ease; }
.vision-card:hover, .vision-card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow); }
.vision-card-main { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); }
.vision-label { display: block; margin-bottom: 22px; color: var(--navy-700); font-size: .82rem; font-weight: 700; }
.vision-card-main .vision-label { color: rgba(255,255,255,.7); }
.vision-icon { width: 42px; height: 42px; margin-bottom: 25px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.vision-card h3 { margin-bottom: 14px; font-size: 1.35rem; line-height: 1.55; }
.vision-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 2; }
.vision-card-main p { color: rgba(255,255,255,.72); }

.principles-section { padding: 105px 0; color: var(--white); background-color: var(--navy-800); }
.principles-topline { margin-bottom: 42px; }
.principles-topline h2 { margin-bottom: 0; color: var(--white); }
.principles-topline h2 strong { color: #d7dce8; }
.principles-topline .section-intro { color: rgba(255,255,255,.68); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.principle-card { min-height: 190px; padding: 25px 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: rgba(255,255,255,.035); transition: transform .18s ease, box-shadow .18s ease; }
.principle-card:hover, .principle-card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow); }
.principle-icon { width: 35px; height: 35px; margin-bottom: 20px; fill: none; stroke: var(--white); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.principle-card h3 { margin-bottom: 8px; font-size: 1rem; }
.principle-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.9; }

.values-band { padding: 78px 0 88px; color: var(--white); background-color: var(--navy-800); }
.band-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 55px; }
.band-heading h2, .process-section h2, .team-section h2 { margin: 0; color: var(--white); font-size: clamp(2.2rem, 4vw, 4.1rem); }
.band-heading h2 strong, .process-section h2 strong, .team-section h2 strong { color: #d7dce8; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.values-band .eyebrow.light, .values-band .band-heading h2, .values-band .band-heading h2 strong { color: var(--white); }
.value-item { padding: 24px 22px 0; border-inline-start: 1px solid rgba(255,255,255,.34); }
.value-icon { width: 41px; height: 41px; margin-bottom: 24px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.values-band .value-item h3, .values-band .value-item p { color: var(--white); }
.value-item h3 { margin-bottom: 7px; font-size: 1.05rem; font-weight: 700; }
.value-item p { margin: 0; color: var(--white); font-size: .88rem; font-weight: 500; line-height: 1.95; }

.services-section { background: var(--cream); }
.section-topline { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.section-topline h2 { margin-bottom: 0; }
.section-intro { max-width: 360px; margin: 0 0 5px; color: var(--ink-soft); font-size: 1rem; line-height: 1.95; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { display: flex; flex-direction: column; min-height: 465px; padding: 27px 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.service-card, .package-card, .team-card, .about-card { transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover, .service-card:focus-within, .package-card:hover, .package-card:focus-within, .team-card:hover, .about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reveal-item { opacity: 0; transform: translateY(18px); transition: opacity .55s ease-out, transform .55s ease-out; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item.is-visible.service-card:hover, .reveal-item.is-visible.package-card:hover, .reveal-item.is-visible.team-card:hover, .reveal-item.is-visible.about-card:hover, .reveal-item.is-visible.vision-card:hover, .reveal-item.is-visible.principle-card:hover, .reveal-item.is-visible.detail-card-full:hover { transform: translateY(-4px); }
.service-card:nth-child(2), .package-card:nth-child(2), .team-card:nth-child(2), .value-item:nth-child(2) { transition-delay: 70ms; }
.service-card:nth-child(3), .package-card:nth-child(3), .team-card:nth-child(3), .value-item:nth-child(3) { transition-delay: 140ms; }
.service-card:nth-child(4), .team-card:nth-child(4), .value-item:nth-child(4) { transition-delay: 210ms; }
.service-card-featured { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); }
.service-card-wide { grid-column: span 2; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 47px; }
.service-index { color: var(--navy-800); font-size: .8rem; font-weight: 700; }
.service-card-featured .service-index { color: rgba(255,255,255,.63); }
.service-icon { width: 41px; height: 41px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 13px; font-family: inherit; font-size: 1.2rem; line-height: 1.65; }
.service-card p { min-height: 64px; margin-bottom: 17px; color: var(--ink-soft); font-size: .88rem; line-height: 1.9; }
.service-card-featured p { color: rgba(255,255,255,.7); }
.service-card ul, .package-card ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; color: var(--ink-soft); font-size: .82rem; }
.service-card-featured ul { color: rgba(255,255,255,.82); }
.service-card li, .package-card li { position: relative; padding-inline-start: 17px; }
.service-card li::before, .package-card li::before { content: ""; position: absolute; top: .78em; right: 0; width: 5px; height: 5px; border-radius: 50%; background: #b9bec9; }
.service-card-featured li::before { background: rgba(255,255,255,.62); }
.service-card .text-link { margin-top: auto; color: inherit; }

.details-section { background: var(--cream); }
.details-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detail-card-full { min-height: 260px; padding: 26px 23px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; transition: transform .18s ease, box-shadow .18s ease; }
.detail-card-full:hover, .detail-card-full:focus-within { transform: translateY(-4px); box-shadow: var(--shadow); }
.detail-card-full-wide { grid-column: span 3; min-height: auto; background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.detail-card-full h3 { margin-bottom: 18px; color: var(--navy-800); font-size: 1.15rem; line-height: 1.55; }
.detail-card-full-wide h3 { color: var(--white); }
.detail-card-full ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.detail-card-full li { position: relative; padding-inline-start: 17px; color: var(--ink-soft); font-size: .82rem; line-height: 1.8; }
.detail-card-full-wide li { color: rgba(255,255,255,.75); }
.detail-card-full li::before { content: ""; position: absolute; top: .78em; right: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--navy-700); }
.detail-card-full-wide li::before { background: rgba(255,255,255,.65); }

.packages-section { background: var(--white); }
.centered-heading { max-width: 610px; margin: 0 auto 55px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 475px; padding: 27px 25px 25px; overflow: hidden; background: #f0f1f2; border-radius: 6px 6px 85px 6px; }
.package-card::after { content: ""; position: absolute; left: -30px; bottom: -36px; width: 150px; height: 150px; border: 3px solid rgba(40,52,95,.11); border-radius: 50%; }
.package-card-highlighted { color: var(--white); background: var(--navy-800); }
.package-tag { align-self: flex-start; padding: 10px 17px; background: var(--navy-800); border-radius: 4px 4px 0 26px; color: var(--white); font-size: .85rem; font-weight: 700; }
.package-card-highlighted .package-tag { background: var(--white); color: var(--ink); }
.package-icon { width: 43px; height: 43px; margin: auto 0 17px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.package-card h3 { margin-bottom: 7px; font-family: inherit; font-size: 1.35rem; }
.package-summary { margin-bottom: 17px; color: var(--ink-soft); font-size: .87rem; }
.package-card-highlighted .package-summary, .package-card-highlighted ul { color: rgba(255,255,255,.78); }
.package-card .button { align-self: flex-start; margin-top: auto; }
.button-outline { color: var(--ink); border: 1px solid rgba(40,52,95,.36); }
.button-outline:hover, .button-outline:focus-visible { color: var(--white); background: var(--navy-800); }
.button-light { color: var(--ink); background: var(--white); }


.process-section { padding: 105px 0; color: var(--white); background: var(--navy-950); }
.process-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px, 10vw, 150px); align-items: center; }
.process-copy { max-width: 420px; margin: 22px 0 29px; color: rgba(255,255,255,.67); line-height: 2; }
.process-list { display: grid; }
.process-step { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.process-step:first-child { border-top: 1px solid rgba(255,255,255,.17); }
.process-step > span { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; color: var(--navy-950); background: var(--white); border-radius: 50%; font-size: .8rem; font-weight: 700; }
.process-step h3 { margin-bottom: 6px; font-size: 1.07rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.process-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.process-channels > div { display: grid; gap: 5px; padding: 15px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: rgba(255,255,255,.035); }
.process-channels strong { color: var(--white); font-size: .8rem; }
.process-channels span { color: rgba(255,255,255,.55); font-size: .68rem; line-height: 1.6; }

.team-section { padding: 105px 0 125px; color: var(--white); background-color: var(--navy-800); }
.team-topline { margin-bottom: 43px; }
.light-copy { color: rgba(255,255,255,.68); }
.team-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 26px; align-items: end; }
.team-lead { position: relative; min-height: 490px; overflow: hidden; background: #222e59; border-radius: 7px; }
.team-photo-lead { height: 445px; padding-top: 19px; text-align: center; background: #252f5a; }
.team-photo-lead img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.team-caption { position: absolute; right: 20px; bottom: 18px; left: 20px; padding: 14px 18px; background: rgba(16,26,59,.9); border-radius: 5px; }
.team-caption span, .team-card p { color: rgba(255,255,255,.61); font-size: .78rem; }
.team-caption h3 { margin: 1px 0 0; font-family: inherit; font-size: 1.65rem; }
.team-caption p { margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.team-card { min-height: 226px; padding: 0 10px 13px; text-align: center; background: #222e59; border-radius: 6px; overflow: hidden; }
.team-card img { width: 100%; height: 165px; object-fit: contain; object-position: center bottom; }
.team-card h3 { margin: 0; font-size: .9rem; line-height: 1.6; }
.team-card p { margin: 0; }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.contact-copy { padding-top: 12px; }
.contact-copy > p:not(.eyebrow) { max-width: 420px; color: var(--ink-soft); font-size: 1rem; line-height: 2; }
.contact-details { display: grid; gap: 20px; margin-top: 43px; }
.contact-details a, .contact-details > div { display: flex; align-items: center; gap: 14px; }
.contact-details .icon { width: 22px; height: 22px; color: var(--navy-800); }
.contact-details span { display: grid; gap: 1px; font-size: .92rem; }
.contact-details small { color: #82899d; font-size: .68rem; }
.contact-details .location-link { padding: 13px 14px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.contact-details .location-link:hover, .contact-details .location-link:focus-visible { transform: translateY(-2px); border-color: var(--navy-700); box-shadow: var(--shadow); }
.location-link strong { color: var(--ink); font-size: .86rem; font-weight: 600; }
.location-link em { color: var(--navy-800); font-size: .72rem; font-style: normal; font-weight: 700; }
.social-links, .footer-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links { margin-top: 30px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 6px; font-size: .76rem; font-weight: 700; transition: transform .18s ease, color .18s ease, border-color .18s ease, background-color .18s ease; }
.social-link:hover, .social-link:focus-visible { transform: translateY(-2px); color: var(--navy-800); border-color: var(--navy-700); }
.social-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.social-icon-fill { fill: currentColor; stroke: none; }
.contact-form { padding: 36px; background: var(--white); box-shadow: var(--shadow); border-radius: 7px; }
.form-heading { display: grid; gap: 4px; margin-bottom: 26px; }
.form-heading span { color: var(--navy-700); font-size: .76rem; font-weight: 700; }
.form-heading strong { font-family: inherit; font-size: 1.45rem; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--ink-soft); font-size: .8rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 11px 13px; color: var(--ink); background: #fafafa; border: 1px solid var(--line); border-radius: 4px; outline: none; font-size: .85rem; }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(40,52,95,.1); }
.button-dark { width: 100%; color: var(--white); background: var(--navy-800); }
.form-message { min-height: 1.5em; margin: 12px 0 0; color: #2e6c53; font-size: .82rem; line-height: 1.8; }
.form-message a { color: var(--navy-800); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 70px 0 25px; color: var(--white); background-color: var(--navy-900); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-brand img { width: 140px; }
.footer-meta { display: grid; gap: 8px; padding-top: 5px; color: rgba(255,255,255,.7); font-size: .82rem; }
.footer-meta span:last-child { color: rgba(255,255,255,.45); }
.footer-links { display: flex; justify-content: flex-start; gap: 18px; padding-top: 5px; color: rgba(255,255,255,.65); font-size: .79rem; flex-wrap: wrap; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--white); }
.footer-socials { grid-column: 2 / -1; }
.footer-socials .social-link { color: rgba(255,255,255,.78); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.16); }
.footer-socials .social-link:hover, .footer-socials .social-link:focus-visible { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.43); font-size: .72rem; }
.mobile-contact-bar { display: none; }

@media (max-width: 980px) {
  .main-nav { gap: 12px; font-size: .76rem; }
  .nav-cta { padding-inline: 12px; }
  .hero-grid, .about-grid, .process-grid, .contact-grid { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid-full { grid-template-columns: repeat(2, 1fr); }
  .detail-card-full-wide { grid-column: span 2; }
  .service-card { min-height: 420px; }
  .team-layout { grid-template-columns: .8fr 1.2fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 600px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 84px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: var(--navy-950); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-deep); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .main-nav .nav-cta { justify-content: center; margin-top: 8px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 78px 0 86px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.55rem); }
  .hero-description { font-size: .98rem; }
  .scroll-cue { display: none; }
  .section { padding: 78px 0; }
  .about-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-channels { grid-template-columns: 1fr; }
  .vision-grid, .principles-grid, .details-grid-full { grid-template-columns: 1fr; }
  .detail-card-full-wide, .service-card-wide { grid-column: auto; }
  .about-card-stack { display: grid; gap: 16px; min-height: 0; }
  .about-card, .about-card-main, .about-card-side { position: relative; inset: auto; width: 100%; min-height: 0; }
  .about-card { padding: 28px 24px; }
  .band-heading, .section-topline { display: block; }
  .band-heading { margin-bottom: 34px; }
  .band-heading h2 { margin-top: 20px; }
  .section-intro { margin-top: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 15px; }
  .value-item { padding-top: 15px; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 400px; }
  .team-layout { grid-template-columns: 1fr; }
  .team-lead { min-height: 500px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card:last-child { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .footer-socials { grid-column: auto; }
  .footer-bottom { grid-column: auto; margin-top: 12px; }
  .site-footer { padding-bottom: 105px; }
  .mobile-contact-bar { position: fixed; right: 16px; bottom: 12px; left: 16px; z-index: 9; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 6px; color: var(--white); background: rgba(16,26,59,.96); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; box-shadow: var(--shadow-deep); }
  .mobile-contact-bar a { display: flex; min-height: 42px; align-items: center; justify-content: center; gap: 6px; color: var(--white); border-radius: 5px; font-size: .72rem; font-weight: 700; transition: background-color .18s ease, transform .18s ease; }
  .mobile-contact-bar a:hover, .mobile-contact-bar a:focus-visible { background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .mobile-contact-bar a:last-child { color: var(--ink); background: var(--white); }
  .mobile-contact-bar .icon, .mobile-contact-bar .social-icon { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-actions .button { justify-content: center; }
  .hero-trust { gap: 12px; }
  .about-card-stack { min-height: 0; }
  .about-card, .about-card-side { width: 100%; }
  .services-grid, .values-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .team-grid { gap: 10px; }
  .team-card { padding-inline: 5px; }
  .contact-form { padding: 25px 18px; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
