:root {
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Oswald", "Inter", sans-serif;
  --bg: #10151f;
  --bg-elevated: #151c29;
  --bg-soft: #1d2635;
  --text: #f5f7fb;
  --muted: #a7b1c2;
  --border: rgba(255, 255, 255, 0.12);
  --primary: #f97316;
  --primary-strong: #ea580c;
  --accent: #06b6d4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --container: 1180px;
  --header-h: 78px;
}

:root[data-theme="light"] {
  --bg: #f7f9fc;
  --bg-elevated: #ffffff;
  --bg-soft: #edf2f8;
  --text: #121826;
  --muted: #506072;
  --border: rgba(15, 23, 42, 0.14);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(249, 115, 22, 0.32);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.04;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 16px;
  left: 16px;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--primary);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 21, 31, 0.82);
  border-color: var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

[data-theme="light"] .site-header.is-scrolled,
[data-theme="light"] .site-header.is-open {
  background: rgba(255, 255, 255, 0.82);
}

.site-header__inner {
  width: min(1320px, calc(100% - 32px));
  min-height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.site-brand__mark img,
.site-brand__mark .custom-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-brand__text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.site-brand__text span {
  color: var(--primary);
}

[data-theme="light"] .site-header:not(.is-scrolled) .site-brand__text,
[data-theme="light"] .site-header:not(.is-scrolled) .primary-nav a,
[data-theme="light"] .site-header:not(.is-scrolled) .theme-toggle {
  color: #f5f7fb;
}

[data-theme="light"] .site-header:not(.is-scrolled) .primary-nav a {
  opacity: 0.82;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.primary-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--primary);
  transition: right 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--sm {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.78rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.28);
}

.button--glass,
.button--outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: inset 7px -5px 0 currentColor;
}

[data-theme="light"] .theme-toggle__icon {
  box-shadow: inset 0 0 0 currentColor;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #090d14;
}

.hero-section__media,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.hero-section__overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.94), rgba(5, 8, 14, 0.72) 42%, rgba(5, 8, 14, 0.26) 72%, rgba(5, 8, 14, 0.18)),
    linear-gradient(180deg, rgba(5, 8, 14, 0.2), rgba(5, 8, 14, 0.5)),
    radial-gradient(circle at 72% 44%, rgba(6, 182, 212, 0.12), transparent 36%),
    radial-gradient(circle at 77% 72%, rgba(249, 115, 22, 0.15), transparent 30%);
}

.hero-section__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 48px) 0 104px;
}

.hero-section h1 {
  max-width: 830px;
  margin-top: 18px;
  font-size: clamp(3.35rem, 8vw, 7.8rem);
  color: #f5f7fb;
}

.hero-section h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, var(--primary), #f97316 48%, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-section p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 24px;
  color: #d4dbe7;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-section .button--glass {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  margin-bottom: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
}

.section:nth-of-type(even) {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  margin-top:50px;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  z-index: 2;
}

.image-frame img {
  position: relative;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.section-copy h2,
.section-heading h2,
.split-heading h2,
.cta-band h2,
.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.section-copy p,
.section-heading p:not(.eyebrow),
.leader-card p,
.premium-card p,
.why-card p,
.product-card p,
.testimonial-card p,
.faq-list p,
.contact-panel p,
.prose p {
  color: var(--muted);
}

.section-copy p {
  margin-top: 20px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.08rem;
}

.section-heading h2 span {
  color: var(--primary);
}

.leadership-section .section-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(500px, 500px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(10px, 2vw, 18px) 0 0;
}

.leader-card__visual {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 18px 0 34px rgba(6, 182, 212, 0.24);
}

.leader-card__visual h3,
.leader-card__visual p {
  padding-inline: 20px;
}

.leader-card__visual h3 {
  margin-top: 18px;
  font-size: 1.4rem;
}

.leader-card__visual p {
  padding-bottom: 20px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.leader-card blockquote {
  margin: 0 0 26px;
  padding-left: 24px;
  border-left: 2px solid var(--primary);
  color: var(--text);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
}

.leader-card blockquote::before {
  content: "''";
  display: block;
  margin-left: -38px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-style: normal;
  line-height: 0.4;
}

.leader-card__content > p + p {
  margin-top: 14px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.sector-grid div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.sector-grid strong,
.sector-grid span {
  display: block;
}

.sector-grid strong {
  color: var(--primary);
}

.sector-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.card-grid,
.product-grid,
.testimonial-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card,
.why-card,
.product-card,
.testimonial-card,
.contact-panel,
.contact-form-wrap,
.post-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.premium-card,
.why-card,
.testimonial-card,
.post-card {
  padding: 28px;
}

.premium-card::after,
.product-card::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 28px;
  height: 28px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.premium-card h3,
.why-card h3,
.product-card h3,
.testimonial-card h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding-inline: 8px;
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  font-weight: 900;
}

.premium-card p,
.why-card p,
.product-card p {
  margin-top: 14px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.split-heading h2 {
  max-width: 780px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
}

.product-card__number {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.06;
}

.product-card__category {
  color: var(--accent) !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.stats-grid div {
  padding: 18px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.stats-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  color: var(--text);
  font-size: 1.04rem;
}

.testimonial-card h3 {
  margin-top: 24px;
  font-size: 1.15rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-list summary {
  padding: 20px 24px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--primary);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 24px 22px;
}

.cta-band {
  padding: 54px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(6, 182, 212, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.04));
  border-block: 1px solid var(--border);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.65fr);
  gap: 24px;
}

.contact-panel,
.contact-form-wrap {
  padding: 30px;
}

.contact-panel {
  display: grid;
  gap: 26px;
}

.contact-panel strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form,
.newsletter-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  outline: 0;
}

.contact-form input,
.contact-form select,
.newsletter-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.newsletter-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

/* ══════════════════════════════════════════
   FOOTER  —  professional 3-zone layout
   Zone 1: Brand (left)
   Zone 2: Quick Links + Services (middle, side-by-side sub-grid)
   Zone 3: Newsletter (right, fills space fully)
   ══════════════════════════════════════════ */

.site-footer {
  padding: 60px 0 0;
  background: #0d1320;
  border-top: 3px solid var(--primary);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 320px at 0% 100%, rgba(249,115,22,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 500px 250px at 100% 0%,  rgba(249,115,22,0.04) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── outer 3-column grid ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr 320px;
  gap: 56px;
  align-items: start;
  position: relative;
}

/* ─── Brand column ─── */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .site-brand {
  margin-bottom: 18px;
}

.footer-brand .site-brand__text,
.site-footer .site-brand__text {
  color: #f0f6ff;
}

.footer-brand > p {
  color: #7e96b0;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0 0 24px;
}

/* ─── Social icons ─── */
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: #7e96b0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ─── Middle zone: sub-grid (Quick Links | Services) ─── */
.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ─── Column headings ─── */
.site-footer h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ─── Link lists ─── */
.site-footer li,
.site-footer p {
  color: #7e96b0;
  font-size: 0.875rem;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer ul a {
  color: #7e96b0;
  font-size: 0.875rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.18s ease, gap 0.18s ease;
}

.site-footer ul a::before {
  content: '›';
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-footer ul a:hover {
  color: #f0f6ff;
  gap: 10px;
}

.site-footer ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.site-footer a:hover {
  color: var(--primary);
}

/* ─── Right zone: Newsletter ─── */
.footer-newsletter {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px 28px;
}

.footer-newsletter h2 {
  font-size: 0.68rem;
}

.footer-newsletter > p {
  color: #7e96b0;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 6px;
}

/* contact info inside newsletter panel */
.footer-newsletter .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-newsletter .footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7e96b0;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-newsletter .footer-contact-info a:hover {
  color: var(--primary);
}

.footer-contact-info .fci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(249,115,22,0.12);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* newsletter form */
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1 1 0;
  background: rgba(255,255,255,0.05) !important;
  border: none !important;
  border-radius: 0 !important;
  color: #f0f6ff !important;
  min-height: 46px;
  padding: 0 14px !important;
  font-size: 0.875rem;
  box-shadow: none !important;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #3e5468;
}

.newsletter-form input:focus {
  background: rgba(255,255,255,0.08) !important;
}

.newsletter-form button {
  border: none;
  background: var(--primary);
  color: #fff;
  min-height: 46px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: #d9620f;
}

/* ─── Footer bottom bar ─── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.footer-bottom p {
  color: #4a6075;
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: #5a7085;
  font-size: 0.8rem;
  transition: color 0.18s ease;
}

.footer-bottom a:hover {
  color: var(--primary);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-hero {
  padding: 150px 0 80px;
  background: radial-gradient(circle at 25% 20%, rgba(249, 115, 22, 0.16), transparent 28%), var(--bg);
}

.page-hero.compact {
  min-height: 420px;
  display: grid;
  align-items: end;
}

.content-section {
  padding: 72px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card a {
  display: block;
}

.post-card h2 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: var(--radius);
}

.prose {
  max-width: 850px;
}

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

.prose > * + * {
  margin-top: 1.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 120px) {
  .primary-nav {
    display: none;
  }

  .card-grid--three,
  .card-grid--four,
  .testimonial-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links-group {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-brand__text {
    font-size: 1.25rem;
  }

  .site-brand__mark {
    width: 46px;
    height: 46px;
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-section__overlay {
    background: linear-gradient(180deg, rgba(9, 13, 20, 0.74), rgba(9, 13, 20, 0.95));
  }

  .two-column,
  .leader-card,
  .product-grid,
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .cta-band .container,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .sector-grid,
  .stats-grid,
  .footer-grid,
  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .card-grid--three,
  .card-grid--four,
  .testimonial-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .button-group,
  .button-group .button,
  .cta-band .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
