:root {
  --green-950: #062f24;
  --green-900: #0b5137;
  --green-800: #135e43;
  --green-700: #1e6c4d;
  --green-500: #68a86b;
  --gold-600: #b58b2a;
  --gold-500: #d4b478;
  --sand-100: #f5f3ec;
  --sand-50: #faf9f5;
  --white: #fff;
  --charcoal-900: #202623;
  --charcoal-700: #4a514d;
  --border: #e6e2d8;
  --shadow-sm: 0 8px 24px rgba(6, 47, 36, .08);
  --shadow-lg: 0 24px 64px rgba(6, 47, 36, .16);
  --radius-sm: .6rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --container: 1240px;
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal-900);
  background: var(--sand-50);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; color: var(--charcoal-700); }
h1, h2, h3, h4 { margin: 0; color: var(--green-950); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.65rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; background: var(--white); color: var(--green-950); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section--compact { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--white { background: var(--white); }
.section--sand { background: var(--sand-100); }
.section--dark { position: relative; overflow: hidden; color: var(--white); background: var(--green-950); }
.section--dark::before { content: ""; position: absolute; inset: 0; opacity: .09; background: radial-gradient(circle at 88% 12%, var(--gold-500), transparent 28%), repeating-linear-gradient(120deg, transparent 0 44px, rgba(255,255,255,.18) 45px 46px); pointer-events: none; }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: .9rem; color: var(--green-700); font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: var(--gold-600); }
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--gold-500); }
.section-heading { max-width: 760px; margin-bottom: 2.6rem; }
.section-heading p { max-width: 680px; margin-top: 1.2rem; font-size: 1.08rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { margin-inline: auto; }
.kicker { color: var(--gold-600); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .6rem; padding: .78rem 1.2rem; border: 1px solid transparent; border-radius: .35rem; background: var(--gold-600); color: var(--white); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); background: #9f7720; }
.button--outline { border-color: rgba(255,255,255,.65); background: transparent; }
.button--outline:hover { background: var(--white); color: var(--green-950); }
.button--green { background: var(--green-900); }
.button--light { border-color: var(--border); background: var(--white); color: var(--green-950); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--green-800); font-weight: 800; }
.text-link::after { content: "\2192"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); color: var(--white); transition: background .3s ease, box-shadow .3s ease, height .3s ease; }
.site-header.is-scrolled, .site-header.inner-header { height: 72px; background: rgba(6, 47, 36, .97); box-shadow: 0 8px 28px rgba(0,0,0,.14); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 2rem; }
.brand { z-index: 2; display: inline-flex; flex: 0 0 auto; align-items: center; gap: .55rem; }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.brand-name { display: grid; color: var(--white); font-size: .74rem; font-weight: 850; letter-spacing: .07em; line-height: 1.05; }
.brand-name small { margin-top: .2rem; font-size: .55rem; letter-spacing: .32em; }
.nav { display: flex; flex: 1; align-items: center; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: clamp(.8rem, 1.7vw, 1.7rem); }
.nav-link, .dropdown-toggle { position: relative; padding: 1.6rem 0; border: 0; background: transparent; color: inherit; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.nav-link::after, .dropdown-toggle::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 1rem; height: 2px; background: var(--gold-500); transition: right .25s ease; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after, .dropdown-toggle:hover::after { right: 0; }
.dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: .35rem; }
.dropdown-toggle span { font-size: .68rem; transition: transform .2s ease; }
.dropdown-menu { position: absolute; top: calc(100% - .5rem); left: -.9rem; width: 270px; padding: .65rem; visibility: hidden; opacity: 0; transform: translateY(10px); border: 1px solid rgba(255,255,255,.08); border-radius: .7rem; background: var(--white); color: var(--green-950); box-shadow: var(--shadow-lg); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.dropdown-menu a { display: block; padding: .65rem .75rem; border-radius: .35rem; font-size: .82rem; font-weight: 650; }
.dropdown-menu a:hover { background: var(--sand-100); color: var(--green-800); }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown.is-open .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.lang-link { min-height: 44px; padding: .5rem; border: 0; background: transparent; color: var(--white); font-family: Arial, sans-serif; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.3); border-radius: .35rem; background: transparent; color: var(--white); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .2s ease; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero { position: relative; min-height: min(860px, 94vh); display: grid; align-items: end; color: var(--white); background: var(--green-950); overflow: hidden; }
.hero-media, .hero-media img, .page-hero-media, .page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media img { object-position: center 42%; animation: heroScale 12s ease-out both; }
.hero::after, .page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,29,22,.94) 0%, rgba(4,47,35,.68) 45%, rgba(6,47,36,.16) 74%), linear-gradient(0deg, rgba(6,47,36,.5), transparent 45%); }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 11rem 0 clamp(5rem, 9vw, 8rem); }
.hero h1, .hero p { color: var(--white); }
.hero h1 span { display: block; color: var(--gold-500); }
.hero p { max-width: 650px; margin-top: 1.4rem; font-size: clamp(1rem, 2vw, 1.2rem); }
.hero-note { position: absolute; z-index: 2; right: 4vw; bottom: 3.5rem; display: flex; align-items: center; gap: .8rem; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-note::before { content: ""; width: 1px; height: 60px; background: var(--gold-500); }
@keyframes heroScale { from { transform: scale(1.06); } to { transform: scale(1); } }

.intro-grid { display: grid; grid-template-columns: .85fr 1.6fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.intro-copy p { margin-top: 1.3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-block: 1px solid var(--border); }
.stat { padding: 1.6rem .8rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border: 0; }
.stat-icon { display: grid; width: 40px; height: 40px; margin: 0 auto .65rem; place-items: center; border: 1px solid var(--green-500); border-radius: 50%; color: var(--green-800); font-weight: 900; }
.stat strong { display: block; color: var(--green-950); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.1; }
.stat span { display: block; margin-top: .45rem; color: var(--charcoal-700); font-size: .72rem; line-height: 1.35; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 2px 0 rgba(6,47,36,.03); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 1.35rem; }
.card-body p { margin: .65rem 0 1rem; font-size: .9rem; }
.card-icon { display: grid; width: 46px; height: 46px; margin: -2.8rem 0 1rem; position: relative; place-items: center; border: 4px solid var(--white); border-radius: 50%; background: var(--sand-100); color: var(--green-900); font-size: 1.25rem; }
.tag { display: inline-flex; padding: .25rem .55rem; border-radius: 99px; background: #e7f0e5; color: var(--green-800); font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; margin-top: .85rem; color: var(--charcoal-700); font-size: .76rem; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.process-line { position: absolute; left: 10%; right: 10%; top: 40px; height: 2px; overflow: hidden; background: rgba(212,180,120,.25); }
.process-line::after { content: ""; display: block; width: 28%; height: 100%; background: var(--gold-500); animation: flow 4s linear infinite; }
@keyframes flow { from { transform: translateX(-110%); } to { transform: translateX(470%); } }
.process-step { position: relative; z-index: 1; }
.step-number { display: grid; width: 80px; height: 80px; margin-bottom: 1.2rem; place-items: center; border: 1px solid var(--gold-500); border-radius: 50%; background: var(--green-950); color: var(--gold-500); font-size: 1.15rem; font-weight: 800; }
.process-step p { margin-top: .65rem; font-size: .88rem; opacity: .78; }

.feature-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 2rem; align-items: start; }
.project-grid { grid-template-columns: repeat(2, 1fr); }
.company-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.company-card { min-width: 0; }
.company-card { display: flex; flex-direction: column; height: 100%; }
.company-card .card-body { display: flex; flex: 1; flex-direction: column; }
.company-card .text-link { margin-top: auto; }
.company-card .card-media { aspect-ratio: 4 / 3; }
.company-card .card-body { padding: 1.1rem; }
.company-card h3 { font-size: 1rem; letter-spacing: -.02em; }
.company-card p { font-size: .78rem; }
.placeholder-media { display: grid; height: 100%; place-items: end start; padding: 1.2rem; background: linear-gradient(140deg, var(--green-800), var(--green-950)); color: rgba(255,255,255,.68); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.placeholder-media.gold { background: linear-gradient(140deg, #856619, #d4b478); color: var(--white); }

.leadership-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 1.5rem; }
.leader-card { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 360px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.leader-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.leader-copy { display: flex; flex-direction: column; justify-content: end; padding: clamp(1.5rem, 4vw, 2.8rem); }
.leader-copy .role { margin: .45rem 0 1.2rem; color: var(--green-700); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.leader-text-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-lg); background: var(--green-950); }
.leader-text-card h3, .leader-text-card p { color: var(--white); }
.leader-text-card .role { color: var(--gold-500); }

.news-grid { grid-template-columns: repeat(4, 1fr); }
.news-card .card-media { aspect-ratio: 16 / 9; }
.news-card time { display: block; margin-bottom: .6rem; color: var(--green-700); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { font-size: 1.05rem; }

.cta { position: relative; overflow: hidden; color: var(--white); }
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; background: rgba(6,47,36,.88); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta h2, .cta p { color: var(--white); }
.cta p { max-width: 700px; margin-top: .7rem; }

.page-hero { position: relative; min-height: 560px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--green-950); }
.page-hero-content { position: relative; z-index: 1; max-width: 900px; padding: 11rem 0 5.5rem; }
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero p { max-width: 700px; margin-top: 1.3rem; font-size: 1.1rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1.1rem; padding: 0; list-style: none; color: rgba(255,255,255,.7); font-size: .75rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: .45rem; color: var(--gold-500); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.content-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.content-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.check-list { display: grid; gap: .8rem; margin-top: 1.5rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--charcoal-700); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-600); font-weight: 900; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.value-card strong { display: block; margin-bottom: .45rem; color: var(--green-950); font-size: 1.05rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.timeline-item { padding: 1.5rem; border-top: 3px solid var(--gold-600); background: var(--white); }
.timeline-item span { display: block; margin-bottom: .5rem; color: var(--green-700); font-weight: 800; }
.faq-list { display: grid; gap: .8rem; max-width: 880px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: .7rem; background: var(--white); }
.faq-item summary { padding: 1.15rem 3rem 1.15rem 1.2rem; color: var(--green-950); font-weight: 800; cursor: pointer; }
.faq-item p { padding: 0 1.2rem 1.2rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-button { min-height: 44px; padding: .6rem 1rem; border: 1px solid var(--border); border-radius: 99px; background: var(--white); color: var(--green-900); font-size: .78rem; font-weight: 800; }
.filter-button.is-active, .filter-button:hover { border-color: var(--green-900); background: var(--green-900); color: var(--white); }
.filter-card[hidden] { display: none; }

.form-shell { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--green-950); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid #cdc9bd; border-radius: .35rem; background: var(--sand-50); color: var(--charcoal-900); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-700); outline: 3px solid rgba(104,168,107,.2); }
.consent { display: flex; align-items: flex-start; gap: .65rem; font-size: .78rem; }
.consent input { width: 20px; height: 20px; flex: 0 0 auto; }
.form-status { display: none; margin-top: 1rem; padding: .8rem 1rem; border-radius: .4rem; }
.form-status.is-visible { display: block; background: #e5f3e8; color: var(--green-950); }
.honeypot { position: absolute; left: -9999px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.contact-link { color: var(--green-800); font-weight: 800; overflow-wrap: anywhere; }
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.location-card { display: flex; height: 100%; gap: 1rem; padding: clamp(1.3rem, 3vw, 2rem); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.location-card .map-pin { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--gold-500); color: var(--green-950); font-size: 1.35rem; font-weight: 900; }
.location-card strong { display: block; margin: .65rem 0 .35rem; color: var(--green-800); }
.location-card p { font-size: .88rem; }
.uae-map { position: relative; min-height: 280px; margin-top: 1.5rem; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #e9e5d9, #f8f6ef); }
.uae-map::before { content: "UAE"; position: absolute; inset: 50% auto auto 50%; color: rgba(6,47,36,.08); font-size: clamp(6rem, 18vw, 13rem); font-weight: 900; letter-spacing: .1em; transform: translate(-50%,-50%); }
.map-marker { position: absolute; padding: .45rem .7rem; border-radius: 99px; background: var(--green-950); color: var(--white); font-size: .72rem; font-weight: 800; box-shadow: var(--shadow-sm); }
.map-marker::before { content: ""; position: absolute; left: 50%; bottom: -.55rem; width: .8rem; height: .8rem; background: var(--gold-500); transform: translateX(-50%) rotate(45deg); }
.marker-ad { left: 18%; bottom: 24%; }.marker-aa { left: 50%; bottom: 37%; }.marker-rak { right: 12%; top: 20%; }
.map-placeholder { display: grid; min-height: 360px; place-items: center; border-radius: var(--radius-lg); background: linear-gradient(140deg, #e7e3d8, #f7f5ef); color: var(--charcoal-700); text-align: center; }

[dir="rtl"] body { font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif; }
[dir="rtl"] .eyebrow { letter-spacing: .04em; }
[dir="rtl"] .eyebrow::before { order: 2; }
[dir="rtl"] .hero::after, [dir="rtl"] .page-hero::after { background: linear-gradient(270deg, rgba(2,29,22,.94) 0%, rgba(4,47,35,.68) 45%, rgba(6,47,36,.16) 74%), linear-gradient(0deg, rgba(6,47,36,.5), transparent 45%); }
[dir="rtl"] .header-actions { margin-right: auto; margin-left: 0; }
[dir="rtl"] .dropdown-menu { right: -.9rem; left: auto; }
[dir="rtl"] .text-link::after { content: "\2190"; }
[dir="rtl"] .text-link:hover::after { transform: translateX(-4px); }
[dir="rtl"] .breadcrumbs li + li::before { margin-right: 0; margin-left: .45rem; }
[dir="rtl"] .check-list li { padding-right: 1.8rem; padding-left: 0; }
[dir="rtl"] .check-list li::before { right: 0; left: auto; }
[dir="rtl"] .nav-link, [dir="rtl"] .dropdown-toggle { text-align: right; }
[dir="rtl"] .field input, [dir="rtl"] .field select, [dir="rtl"] .field textarea { text-align: right; }
[dir="rtl"] .site-credit, [dir="rtl"] .footer-links, [dir="rtl"] .footer-heading { text-align: right; }

.site-footer { position: relative; padding-top: 4.5rem; color: rgba(255,255,255,.78); background: #04271e; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 2.2rem; padding-bottom: 3.5rem; }
.footer-brand img { width: 180px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.68); font-size: .82rem; }
.footer-heading { margin-bottom: .9rem; color: var(--gold-500); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .8rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-credit { margin: 0; color: rgba(255,255,255,.6); font-size: inherit; }
.site-credit a { color: var(--gold-500); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .header-actions .button { display: none; }
  .nav-list { gap: 1rem; }
  .company-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .menu-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .nav { position: fixed; inset: 72px 0 0; display: block; padding: 1.5rem; visibility: hidden; opacity: 0; overflow-y: auto; background: var(--green-950); transition: opacity .2s ease, visibility .2s; }
  .nav.is-open { visibility: visible; opacity: 1; }
  .nav-list { display: grid; align-items: stretch; }
  .nav-link, .dropdown-toggle { width: 100%; justify-content: space-between; padding: .8rem 0; text-align: left; font-size: 1rem; }
  .nav-link::after, .dropdown-toggle::after { bottom: .5rem; }
  .dropdown-menu { position: static; display: none; width: 100%; margin: .25rem 0 .75rem; visibility: visible; opacity: 1; transform: none; box-shadow: none; }
  .dropdown.is-open .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu:not(:focus-within) { display: none; }
  .dropdown.is-open:hover .dropdown-menu { display: block; }
  .intro-grid, .feature-layout, .content-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .service-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding: 4rem 0; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: .68rem; }
  .lang-link { padding: .35rem; font-size: .7rem; }
  .hero { min-height: 760px; }
  .hero-content { padding-bottom: 4rem; }
  .hero-note { display: none; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-child(3) { border-right: 1px solid var(--border); }
  .stat:nth-child(even), .stat:last-child { border-right: 0; }
  .service-grid, .card-grid, .project-grid, .company-grid, .news-grid, .value-grid, .timeline, .contact-cards { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .location-card .button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 62px 1fr; column-gap: 1rem; }
  .step-number { width: 62px; height: 62px; grid-row: 1 / 3; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-card img { height: 360px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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