/* ============================================================
   ASTRA GROUP — corporate site
   Design system (Bootstrap 5.3 override layer)
   Clean corporate-industrial language: full-bleed photography,
   deep navy + white, Astra green accent, generous whitespace.
   ============================================================ */

:root {
  /* Brand — deep navy + blue (complements the green logo) */
  --astra-navy:      #0e2a47;   /* deep corporate navy — dark sections */
  --astra-navy-700:  #143a60;
  --astra-blue:      #155fa0;   /* primary blue — buttons / links / text */
  --astra-blue-600:  #1c74bd;
  --astra-green:     #1c74bd;   /* accent (repointed to blue, was the lime) */
  --astra-green-700: #155fa0;
  --logo-green:      #aebf2e;   /* tiny tie-in to the green logo — eyebrow ticks only */

  /* Neutrals */
  --ink:        #11212e;
  --body:       #44545f;
  --muted:      #6b7a86;
  --line:       #e3e9ee;
  --line-soft:  #eef2f5;
  --surface:    #f4f7f9;
  --surface-2:  #eaf0f4;
  --white:      #ffffff;

  /* Type */
  --font-head: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Bootstrap remap */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--body);
  --bs-primary: var(--astra-blue);
  --bs-primary-rgb: 21, 95, 160;

  --shadow-sm: 0 2px 10px rgba(15, 40, 60, .06);
  --shadow-md: 0 14px 38px rgba(11, 42, 69, .12);
  --shadow-lg: 0 30px 70px rgba(11, 42, 69, .18);

  --container-max: 1240px;
}

* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

a { color: var(--astra-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--astra-navy); }

.container { max-width: var(--container-max); }

/* ---------- Reusable type helpers ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--astra-blue);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: #8fc1ec; }

.display-1, .display-2 { font-family: var(--font-head); letter-spacing: -0.03em; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--astra-navy); color: rgba(255,255,255,.82); }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4 { color: #fff; }

.lead-muted { color: var(--muted); font-size: 1.15rem; }
.text-accent { color: var(--astra-green-700); }
.kicker-rule { width: 56px; height: 3px; background: var(--logo-green); border: 0; opacity: 1; margin: 0 0 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 8px;
  padding: .8rem 1.7rem;
  transition: all .22s ease;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.btn svg { width: 17px; height: 17px; transition: transform .22s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--astra-blue);
  border-color: var(--astra-blue);
  color: #fff;
}
.btn-primary:hover { background: var(--astra-navy); border-color: var(--astra-navy); color: #fff; }

.btn-accent {
  background: var(--astra-blue);
  border-color: var(--astra-blue);
  color: #fff;
}
.btn-accent:hover { background: var(--astra-navy); border-color: var(--astra-navy); color:#fff; }

.btn-outline-dark2 {
  background: transparent;
  border: 1.5px solid var(--astra-navy);
  color: var(--astra-navy);
}
.btn-outline-dark2:hover { background: var(--astra-navy); color:#fff; }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--astra-navy); border-color:#fff; }

.btn-ghost-blue {
  padding: 0;
  color: var(--astra-blue);
  border: 0;
  font-family: var(--font-head);
  font-weight: 600;
}
.btn-ghost-blue:hover { color: var(--astra-navy); }

/* link with arrow */
.arrow-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--astra-blue);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--astra-navy);
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar a { color: rgba(255,255,255,.72); }
.topbar a:hover { color: #fff; }
.topbar .topbar-inner { display:flex; align-items:center; justify-content:space-between; height:42px; }
.topbar .sep { opacity:.3; margin:0 .85rem; }
.lang-toggle { font-family: var(--font-head); font-weight:600; }
.lang-toggle .active { color:#fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.navbar-astra { padding: 0; }
.navbar-astra .navbar-brand { display: inline-flex; }
.navbar-astra .navbar-brand img { height: 46px; width: auto; transition: height .25s ease; }
.site-header.scrolled .navbar-brand img { height: 40px; }

/* mobile offcanvas nav logo (the_custom_logo() output isn't a plain <img>
   with a sizing class, so target it specifically here) */
.offcanvas-logo { display: inline-flex; }
.offcanvas-logo img { height: 38px; width: auto; }

.navbar-astra .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  padding: 1.7rem .95rem !important;
  position: relative;
  letter-spacing: .005em;
  transition: color .2s ease;
}
.site-header.scrolled .navbar-astra .nav-link { padding-top:1.45rem !important; padding-bottom:1.45rem !important; }
.navbar-astra .nav-link::after {
  content:"";
  position:absolute;
  left:.95rem; right:.95rem; bottom: 1.2rem;
  height:2.5px;
  background: var(--astra-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.navbar-astra .nav-link:hover,
.navbar-astra .nav-link.active { color: var(--astra-blue); }
.navbar-astra .nav-link:hover::after,
.navbar-astra .nav-link.active::after { transform: scaleX(1); }

.header-actions { display:flex; align-items:center; gap:.35rem; }
.icon-btn {
  width:42px; height:42px;
  display:inline-flex; align-items:center; justify-content:center;
  border:0; background:transparent; color:var(--ink);
  border-radius:3px;
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover { background: var(--surface); color: var(--astra-blue); }
.icon-btn svg { width:20px; height:20px; }

/* search drawer */
.search-drawer {
  position: fixed; inset: 0 0 auto 0;
  background: #fff;
  box-shadow: var(--shadow-md);
  z-index: 1040;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.16,.84,.44,1);
  padding: 1.4rem 0;
}
.search-drawer.open { transform: translateY(0); }
.search-drawer input {
  border:0; border-bottom:2px solid var(--line);
  font-size:1.5rem; font-family:var(--font-head); font-weight:600;
  padding:.6rem 0; width:100%;
}
.search-drawer input:focus { outline:0; border-color:var(--astra-blue); }

/* mobile offcanvas nav links */
.offcanvas .nav-link {
  font-family: var(--font-head); font-weight:600; font-size:1.15rem;
  color: var(--ink); padding:.85rem 0; border-bottom:1px solid var(--line-soft);
}
.offcanvas .nav-link.active { color: var(--astra-blue); }
.offcanvas-lang { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
.lang-toggle-mobile { font-size: .95rem; color: var(--muted); }
.lang-toggle-mobile .active { color: var(--ink); }
.lang-toggle-mobile a { color: var(--muted); }
.lang-toggle-mobile a:hover { color: var(--astra-blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--astra-navy); }
.hero .carousel, .hero .carousel-inner { height: auto; }
.hero .carousel-item { min-height: 86vh; max-height: none; }
.hero .hero-slide {
  min-height: 86vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 0;
}
.hero .hero-slide::after {
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,28,45,.20) 0%, rgba(8,28,45,.05) 35%, rgba(8,28,45,.55) 78%, rgba(8,28,45,.85) 100%),
    linear-gradient(90deg, rgba(8,28,45,.70) 0%, rgba(8,28,45,.20) 55%, transparent 100%);
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero .hero-eyebrow {
  font-family: var(--font-head); font-weight:600;
  letter-spacing:.26em; text-transform:uppercase;
  font-size:.82rem; color: #8fc1ec;
  margin-bottom:1.4rem; display:flex; align-items:center; gap:.7rem;
}
.hero h1 {
  color:#fff; font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height:1.06; max-width: 16ch; margin-bottom:1.6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero p.hero-sub {
  color: rgba(255,255,255,.9); font-size: clamp(1.05rem,1.5vw,1.3rem);
  max-width: 46ch; margin-bottom: 2.2rem;
}
.hero .hero-cta-row { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; align-items: center; }

/* hero indicators */
.hero .carousel-indicators { left: auto; right: auto; margin: 0; justify-content:flex-start; bottom: 2.5rem; }
.hero .carousel-indicators [data-bs-target] {
  width: 44px; height:4px; border-radius:0; background: rgba(255,255,255,.35);
  border:0; margin:0 8px 0 0; transition: background .25s ease;
}
.hero .carousel-indicators .active { background: var(--astra-green); }

.hero .carousel-control-prev, .hero .carousel-control-next { width: 5%; opacity:.65; z-index:4; }
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover { opacity:1; }

/* quick links overlapping hero */
.quicklinks { position: relative; z-index: 5; margin-top: -68px; }
.quicklinks .ql-card {
  background:#fff;
  padding: 1.9rem 1.7rem;
  border-top: 3px solid var(--astra-green);
  box-shadow: var(--shadow-md);
  height:100%;
  display:flex; flex-direction:column; gap:.55rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quicklinks .ql-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quicklinks .ql-card .ql-icon { color: var(--astra-blue); }
.quicklinks .ql-card .ql-icon svg { width:30px; height:30px; }
.quicklinks .ql-card h3 { font-size:1.15rem; margin:.4rem 0 .15rem; }
.quicklinks .ql-card p { font-size:.92rem; color:var(--muted); margin:0; flex:1; }
.quicklinks .ql-card .arrow-link { font-size:.9rem; margin-top:.4rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size:1.12rem; margin:0; }
.head-row { display:flex; align-items:flex-end; justify-content:space-between; gap:2rem; flex-wrap:wrap; }

/* ============================================================
   ABOUT / FEATURE SPLIT
   ============================================================ */
.feature-img-wrap { position: relative; }
.feature-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.feature-img-wrap.with-accent::before {
  content:""; position:absolute; left:-22px; bottom:-22px;
  width:55%; height:55%; background: var(--astra-green); z-index:-1;
}
.feature-img-wrap.with-accent.navy::before { background: var(--astra-navy); }

.stat-badge {
  position:absolute; right:-20px; bottom:-30px;
  background: var(--astra-navy); color:#fff;
  padding:1.5rem 1.8rem; box-shadow: var(--shadow-md);
  max-width: 220px;
}
.stat-badge .num { font-family:var(--font-head); font-weight:800; font-size:2.6rem; line-height:1; color:#fff; }
.stat-badge .lbl { font-size:.82rem; letter-spacing:.04em; opacity:.8; margin-top:.4rem; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--astra-navy); position:relative; overflow:hidden; }
.stats-strip .stat-item { text-align:center; padding: 1rem; color:#fff; position:relative; z-index:2; }
.stats-strip .stat-item .stat-icon { color: var(--astra-green); margin-bottom:.9rem; }
.stats-strip .stat-item .stat-icon svg { width:34px; height:34px; }
.stats-strip .stat-num { font-family:var(--font-head); font-weight:800; font-size: clamp(2.6rem,4.5vw,3.6rem); line-height:1; color:#fff; }
.stats-strip .stat-num .suffix { color: var(--astra-green); }
.stats-strip .stat-lbl { color: rgba(255,255,255,.7); font-size:.95rem; margin-top:.6rem; letter-spacing:.02em; }
.stats-strip .divider-col { border-right: 1px solid rgba(255,255,255,.12); }

/* ============================================================
   INDUSTRIES GRID
   ============================================================ */
.industry-card {
  display:flex; flex-direction:column; gap:1rem;
  background:#fff; border:1px solid var(--line);
  padding: 2rem 1.6rem; height:100%;
  text-decoration:none; color:var(--ink);
  position:relative; overflow:hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.industry-card::before {
  content:""; position:absolute; left:0; top:0; height:3px; width:0;
  background: var(--astra-green); transition: width .3s ease;
}
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color:transparent; color:var(--ink); }
.industry-card:hover::before { width:100%; }
.industry-card .ind-icon {
  width:58px; height:58px; border-radius:50%;
  background: var(--surface-2); color: var(--astra-blue);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s ease, color .25s ease;
}
.industry-card:hover .ind-icon { background: var(--astra-blue); color:#fff; }
.industry-card .ind-icon svg { width:26px; height:26px; }
.industry-card h3 { font-size:1.12rem; margin:0; line-height:1.25; }
.industry-card .ind-more { margin-top:auto; color:var(--astra-blue); display:flex; align-items:center; gap:.4rem; font-family:var(--font-head); font-weight:600; font-size:.85rem; opacity:0; transform:translateY(6px); transition:all .25s ease; }
.industry-card:hover .ind-more { opacity:1; transform:translateY(0); }

/* ============================================================
   COMPANY CARDS
   ============================================================ */
.company-card {
  background:#fff; border:1px solid var(--line);
  height:100%; display:flex; flex-direction:column; overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.company-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.company-card .cc-img { aspect-ratio: 16/10; overflow:hidden; }
.company-card .cc-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.company-card:hover .cc-img img { transform: scale(1.06); }
.company-card .cc-body { padding:1.6rem; display:flex; flex-direction:column; flex:1; }
.company-card .cc-tag { font-family:var(--font-head); font-weight:600; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--astra-green-700); margin-bottom:.55rem; }
.company-card h3 { font-size:1.25rem; margin-bottom:.6rem; }
.company-card p { font-size:.95rem; color:var(--muted); margin-bottom:1.2rem; flex:1; }

/* ============================================================
   EXCELLENCE / VALUE CARDS
   ============================================================ */
.value-card {
  background:#fff; border:1px solid var(--line); padding:1.7rem;
  height:100%; display:flex; gap:1.1rem; align-items:flex-start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform:translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card .v-icon {
  width:50px; height:50px; flex-shrink:0; border-radius:6px;
  background: var(--surface-2); color: var(--astra-blue);
  display:flex; align-items:center; justify-content:center;
}
.value-card .v-icon svg { width:24px; height:24px; }
.value-card h3 { font-size:1.08rem; margin-bottom:.3rem; }
.value-card p { font-size:.92rem; color:var(--muted); margin:0; }

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.sustain { background: var(--astra-navy); position:relative; overflow:hidden; }
.sustain .sus-item { display:flex; gap:1.1rem; padding:1.5rem 0; border-bottom:1px solid rgba(255,255,255,.12); }
.sustain .sus-item:last-child { border-bottom:0; }
.sustain .sus-icon { width:48px; height:48px; border-radius:50%; background: rgba(28,116,189,.16); color:#8fc1ec; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sustain .sus-icon svg { width:22px; height:22px; }
.sustain .sus-item h3 { color:#fff; font-size:1.15rem; margin-bottom:.3rem; }
.sustain .sus-item p { color:rgba(255,255,255,.72); font-size:.95rem; margin:0; }

/* ============================================================
   NEWS
   ============================================================ */
.news-card { background:#fff; border:1px solid var(--line); height:100%; display:flex; flex-direction:column; overflow:hidden; transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform:translateY(-6px); box-shadow: var(--shadow-md); }
.news-card .nc-img { aspect-ratio:16/10; overflow:hidden; position:relative; }
.news-card .nc-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.news-card:hover .nc-img img { transform:scale(1.06); }
.news-card .nc-cat { position:absolute; top:1rem; left:1rem; background:var(--astra-blue); color:#fff; font-family:var(--font-head); font-weight:600; font-size:.72rem; letter-spacing:.05em; padding:.3rem .8rem; }
.news-card .nc-body { padding:1.6rem; display:flex; flex-direction:column; flex:1; }
.news-card .nc-date { font-size:.82rem; color:var(--muted); margin-bottom:.6rem; }
.news-card h3 { font-size:1.2rem; line-height:1.3; margin-bottom:.6rem; }
.news-card p { font-size:.93rem; color:var(--muted); margin-bottom:1.1rem; flex:1; }

/* ============================================================
   CAREERS / CTA BANDS
   ============================================================ */
.cta-band { background: var(--astra-navy); position:relative; overflow:hidden; }
.cta-band .cta-pattern { position:absolute; inset:0; opacity:.05; pointer-events:none; }
.careers-stat { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); padding:2.4rem; text-align:center; }
.careers-stat .num { font-family:var(--font-head); font-weight:800; font-size:3.4rem; color:#fff; line-height:1; }
.careers-stat .lbl { color:rgba(255,255,255,.72); margin-top:.6rem; }

.contact-band { background:
   linear-gradient(120deg, var(--astra-navy) 0%, var(--astra-navy-700) 100%); }
.highlight-green { background: var(--astra-green); color: var(--astra-navy); padding:.05em .35em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #07202f; color: rgba(255,255,255,.65); position:relative; overflow:hidden; }
.site-footer .footer-main { padding: 72px 0 48px; position:relative; z-index:2; }
.site-footer .f-logo { height:42px; margin-bottom:1.4rem; filter: brightness(0) invert(1); opacity:.92; display: inline-flex; }
.site-footer .f-logo img { height: 100%; width: auto; }
.site-footer h4 { color:#fff; font-size:1rem; font-family:var(--font-head); letter-spacing:.04em; margin-bottom:1.3rem; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer ul li { margin-bottom:.7rem; }
.site-footer a { color: rgba(255,255,255,.65); font-size:.95rem; }
.site-footer a:hover { color: #8fc1ec; }
.site-footer p { font-size:.95rem; }
.footer-social { display:flex; gap:.7rem; margin-top:1.2rem; }
.footer-social a { width:42px; height:42px; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; border-radius:50%; color:rgba(255,255,255,.75); transition: all .22s ease; }
.footer-social a:hover { background: var(--astra-blue); border-color:var(--astra-blue); color:#fff; }
.footer-social svg { width:18px; height:18px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding:1.4rem 0; position:relative; z-index:2; }
.footer-bottom .fb-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.8rem; font-size:.88rem; }
.footer-bottom a { font-size:.88rem; }
.footer-legal-nav li + li { position: relative; padding-left: 1rem; }
.footer-legal-nav li + li::before { content: "|"; position: absolute; left: -.15rem; opacity: .4; }
.footer-deco { position:absolute; right:4%; top:-40px; font-family:var(--font-head); font-weight:800; font-size:18rem; line-height:1; color:rgba(255,255,255,.02); pointer-events:none; z-index:1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed; right: 26px; bottom: 26px; z-index: 1035;
  width: 50px; height: 50px; border-radius: 4px;
  background: var(--astra-blue); color:#fff; border:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform: translateY(12px);
  transition: all .3s ease;
}
#backToTop.show { opacity:1; visibility:visible; transform: translateY(0); }
#backToTop:hover { background: var(--astra-navy); }
#backToTop svg { width:22px; height:22px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity:0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; }
.reveal.d2 { transition-delay:.16s; }
.reveal.d3 { transition-delay:.24s; }
.reveal.d4 { transition-delay:.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  html { scroll-behavior:auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section { padding: 64px 0; }
  .hero .carousel, .hero .carousel-inner, .hero .carousel-item { height: auto; min-height: 0; max-height:none; }
  .hero .hero-slide { min-height: 78vh; }
  .hero .hero-content { padding-bottom: 5rem; align-items:center; }
  .quicklinks { margin-top: 0; padding-top: 0; }
  .quicklinks .ql-card { box-shadow: var(--shadow-sm); }
  .stat-badge { position:static; margin-top:1.4rem; max-width:none; display:inline-block; }
  .feature-img-wrap.with-accent::before { display:none; }
  .stats-strip .divider-col { border-right:0; }
  .footer-deco { display:none; }
}

@media (max-width: 575.98px) {
  body { font-size: 1rem; }
  .section { padding: 52px 0; }
  .hero h1 { font-size: 2.2rem; }
}

/* ============================================================
   SABIC-LEANING REFINEMENTS — softer rounding, brighter hero
   ============================================================ */
.industry-card,
.company-card,
.news-card,
.value-card,
.quicklinks .ql-card,
.careers-stat { border-radius: 14px; }

.quicklinks .ql-card { border-top: 0; border-bottom: 4px solid var(--astra-green); }
.industry-card .ind-icon { border-radius: 14px; }
.feature-img-wrap img { border-radius: 16px; }
.stat-badge { border-radius: 12px; }
.icon-btn { border-radius: 8px; }
.careers-stat { border-radius: 16px; }
.value-card .v-icon { border-radius: 12px; }
.nc-cat { border-radius: 6px; }
.company-card .cc-tag { color: var(--astra-blue); }

/* brighter, more photographic hero (lighter overlay like SABIC) */
.hero .hero-slide::after {
  background:
    linear-gradient(180deg, rgba(8,22,40,.12) 0%, rgba(8,22,40,0) 38%, rgba(8,22,40,.44) 74%, rgba(8,22,40,.80) 100%),
    linear-gradient(90deg, rgba(8,22,40,.64) 0%, rgba(8,22,40,.16) 52%, transparent 100%);
}
.hero h1 { font-weight: 800; letter-spacing: -0.02em; }

/* softer headings for the humanist face */
h1, h2, h3 { letter-spacing: -0.02em; }
h4, h5, h6 { letter-spacing: -0.01em; }

/* ============================================================
   SABIC-STYLE STRUCTURE LAYER
   full-bleed feature splits · uppercase text-link CTAs ·
   ruled icon grid · big about statement · airy cards
   ============================================================ */

/* ---- Uppercase understated link CTA (the SABIC signature) ---- */
.link-cta {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  color: var(--astra-blue);
  padding-bottom: .4rem; white-space: nowrap; max-width: 100%;
  border-bottom: 2px solid var(--astra-green);
  transition: color .2s ease, border-color .2s ease;
}
.link-cta svg { width: 15px; height: 15px; transition: transform .2s ease; }
.link-cta:hover { color: var(--astra-navy); }
.link-cta:hover svg { transform: translateX(5px); }
.link-cta.on-dark { color: #fff; }
.link-cta.on-dark:hover { color: #8fc1ec; border-color: #8fc1ec; }

/* ---- About statement (big intro, no box) ---- */
.about-statement { padding: clamp(72px, 9vw, 124px) 0; }
.about-statement .as-inner { max-width: 1040px; }
.about-statement .as-text {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.55rem); line-height: 1.3;
  color: var(--ink); letter-spacing: -0.022em; margin: 0 0 2.2rem;
}
.about-statement .as-text strong { color: var(--astra-blue); font-weight: 700; }

/* ---- Full-bleed feature split ---- */
.feature { overflow: hidden; }
.feature .feature-row { display: flex; flex-wrap: wrap; align-items: stretch; }
.feature .feature-media {
  flex: 1 1 50%; min-height: clamp(340px, 42vw, 600px);
  background-size: cover; background-position: center;
}
.feature .feature-body {
  flex: 1 1 50%; display: flex; align-items: center;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 84px);
  background: #fff;
}
.feature.body-surface .feature-body { background: var(--surface); }
.feature .feature-inner { max-width: 540px; }
.feature .feature-inner h2 { font-size: clamp(1.9rem, 3.2vw, 2.85rem); margin-bottom: 1.3rem; }
.feature .feature-inner p { color: var(--muted); font-size: 1.12rem; margin-bottom: 1.9rem; }
.feature.reverse .feature-media { order: 2; }
.feature.reverse .feature-body { order: 1; }

@media (max-width: 991.98px) {
  .feature .feature-media { flex: 1 1 100%; min-height: 280px; }
  .feature .feature-body { flex: 1 1 100%; }
  .feature.reverse .feature-media { order: 0; }
  .feature.reverse .feature-body { order: 1; }
}

/* ---- "At a glance" stats → light & airy ---- */
.stats-strip { background: var(--surface); }
.stats-strip .stat-item, .stats-strip .stat-num { color: var(--ink); }
.stats-strip .stat-lbl { color: var(--muted); }
.stats-strip .stat-icon, .stats-strip .stat-num .suffix { color: var(--astra-blue); }
.stats-strip .divider-col { border-right-color: var(--line); }

/* ---- Our Sectors → ruled icon grid (SABIC "Our Industries") ---- */
.industry-grid { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-card {
  background: #fff; border: 0;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  border-radius: 0;
  align-items: center; text-align: center;
  padding: clamp(2rem, 3vw, 2.8rem) 1rem; gap: 1.15rem;
}
.industry-card::before { display: none; }
.industry-card:hover { transform: none; box-shadow: none; background: #fbfcf7; }
.industry-card .ind-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--surface); }
.industry-card .ind-icon svg { width: 30px; height: 30px; }
.industry-card:hover .ind-icon { background: var(--astra-green); color: var(--astra-navy); }
.industry-card h3 { font-size: 1rem; line-height: 1.3; }
.industry-card .ind-more { display: none; }

/* ---- Cards → airy, borderless (SABIC) ---- */
.company-card, .news-card { border: 0; box-shadow: var(--shadow-sm); }
.company-card:hover, .news-card:hover { box-shadow: var(--shadow-md); }

/* ---- Section labels uppercase like SABIC ---- */
.section-head h2, .feature-inner h2 { letter-spacing: -0.02em; }

/* ---- Careers/feature dark overlay variant (text on image) ---- */
.feature-media.tinted { position: relative; }
.feature-media.tinted::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,22,40,.55), rgba(8,22,40,.15));
}

@media (max-width: 575.98px) {
  .about-statement .as-text { font-size: 1.4rem; }
  .industry-card { padding: 1.6rem .6rem; }
}

/* ---- Commitment blocks (Excellence + National Growth) ---- */
.commit-block { height: 100%; padding-top: .5rem; }
.commit-block .commit-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--surface); color: var(--astra-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.commit-block .commit-icon svg { width: 28px; height: 28px; }
.commit-block h2 { font-size: clamp(1.7rem, 2.6vw, 2.25rem); margin-bottom: 1.1rem; }
.commit-block p { color: var(--muted); font-size: 1.08rem; }
#commitment .col-lg-6 + .col-lg-6 .commit-block { position: relative; }
@media (min-width: 992px) {
  #commitment .row { position: relative; }
  #commitment .col-lg-6:first-child .commit-block { padding-right: 2.5rem; border-right: 1px solid var(--line); }
}

/* ---- Contact band panel ---- */
.contact-band .contact-actions {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 2rem;
}
.contact-band .contact-meta { margin-top: .4rem; }
.contact-band .cm-row {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.82); padding: .55rem 0; font-size: .98rem;
}
.contact-band .cm-row svg { width: 19px; height: 19px; color: #8fc1ec; flex-shrink: 0; }
.contact-band .cm-row a { color: rgba(255,255,255,.82); }
.contact-band .cm-row a:hover { color: #8fc1ec; }
