/* =====================================================
   Soar Infrastructure Ltd — Stylesheet
   Editorial / image-forward design (Adani Infra style)
   ===================================================== */
:root {
  --ink: #0e1116;
  --ink-70: rgba(14, 17, 22, 0.7);
  --paper: #ffffff;
  --mist: #f4f5f7;
  --gray: #5b6472;
  --line: #e6e8ec;
  --accent: #1a56db;
  --grad: linear-gradient(90deg, #1a56db, #7b2ff7, #c81d5e);
  --font-head: 'Archivo', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1280px, 90%); margin: 0 auto; }
.container.narrow { width: min(1020px, 90%); }

h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: -0.02em; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Small label with gradient tick ---------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 22px;
}
.label::before {
  content: '';
  width: 34px;
  height: 3px;
  background: var(--grad);
}
.label.on-dark { color: rgba(255, 255, 255, 0.75); }

/* ---------- Arrow link ---------- */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 6px;
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}
.arrow-link::after { content: '→'; transition: transform 0.25s var(--ease); }
.arrow-link:hover { color: var(--accent); border-color: var(--accent); gap: 16px; }
.arrow-link.on-dark { color: #fff; border-color: #fff; }
.arrow-link.on-dark:hover { color: #cfd8ff; border-color: #cfd8ff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.ghost.on-dark { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.btn.ghost.on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =====================================================
   Header
   ===================================================== */
header.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s;
  padding: 0;
}
header.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: padding 0.35s;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  background: var(--grad);
  flex-shrink: 0;
}
.brand .word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.2;
  transition: color 0.35s;
}
.brand .word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.35s;
}

nav.desktop-nav { display: flex; align-items: center; gap: 38px; }
nav.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}
nav.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after { width: 100%; }
nav.desktop-nav a.contact-link {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 10px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
nav.desktop-nav a.contact-link::after { display: none; }
nav.desktop-nav a.contact-link:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Solid header once scrolled (or on pages that opt in) */
header.site-header.scrolled,
header.site-header.solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
header.site-header.scrolled .bar,
header.site-header.solid .bar { padding: 14px 0; }
header.site-header.scrolled .brand .word,
header.site-header.solid .brand .word { color: var(--ink); }
header.site-header.scrolled .brand .word small,
header.site-header.solid .brand .word small { color: var(--gray); }
header.site-header.scrolled nav.desktop-nav a,
header.site-header.solid nav.desktop-nav a { color: var(--ink); }
header.site-header.scrolled nav.desktop-nav a.contact-link,
header.site-header.solid nav.desktop-nav a.contact-link { border-color: var(--ink); }
header.site-header.scrolled nav.desktop-nav a.contact-link:hover,
header.site-header.solid nav.desktop-nav a.contact-link:hover { background: var(--ink); color: #fff; }

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.35s;
}
header.scrolled .burger span, header.solid .burger span { background: var(--ink); }
body.menu-open .burger span { background: #fff !important; }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Fullscreen menu (mobile) */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #0b0e13;
  z-index: 1200;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
body.menu-open .fullscreen-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.fullscreen-menu ul { list-style: none; width: min(1280px, 88%); margin: 0 auto; }
.fullscreen-menu a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 6.5vw, 3.4rem);
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 0;
  letter-spacing: -0.02em;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.fullscreen-menu a:hover, .fullscreen-menu a.active { color: #fff; transform: translateX(14px); }
.fullscreen-menu .menu-meta {
  margin-top: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* =====================================================
   Hero slider
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #0b0e13;
}
.hero .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero .slide.active { opacity: 1; pointer-events: auto; }
.hero .slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero .slide.active .bg { transform: scale(1); }
.hero .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(5, 8, 14, 0.82) 15%, rgba(5, 8, 14, 0.35) 60%, rgba(5, 8, 14, 0.15));
}
.hero .slide .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 130px;
  color: #fff;
}
.hero .slide h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  max-width: 830px;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease 0.25s, transform 0.9s var(--ease) 0.25s;
}
.hero .slide p {
  margin-top: 22px;
  max-width: 560px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s var(--ease) 0.4s;
}
.hero .slide .arrow-link {
  margin-top: 34px;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease 0.55s, transform 0.9s var(--ease) 0.55s;
}
.hero .slide.active h1,
.hero .slide.active p,
.hero .slide.active .arrow-link { opacity: 1; transform: none; }

.hero .slide-nav {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  bottom: 54px;
  width: min(1280px, 90%);
  display: flex;
  gap: 14px;
}
.hero .slide-nav button {
  flex: 0 0 64px;
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero .slide-nav button .fill {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero .slide-nav button.active .fill {
  animation: fillbar 6.5s linear forwards;
}
@keyframes fillbar { to { transform: scaleX(1); } }

.hero .scroll-hint {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .scroll-hint::after {
  content: '';
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.5);
  animation: drip 2s ease infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =====================================================
   Sections
   ===================================================== */
section.block { padding: 120px 0; }
section.block.tight { padding: 90px 0; }
section.block.mist { background: var(--mist); }
section.block.dark { background: #0b0e13; color: #fff; }

/* Editorial two-column intro */
.editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
  align-items: start;
}
.editorial h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
}
.editorial h2 .dim { color: #b9bec7; }
.editorial .side p { color: var(--gray); margin-bottom: 20px; font-size: 1.02rem; }
.editorial .side .arrow-link { margin-top: 8px; }

/* Feature trio */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 90px;
}
.trio .cell { border-top: 2px solid var(--ink); padding-top: 28px; }
.trio .cell .num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
}
.trio .cell h3 { font-size: 1.3rem; font-weight: 700; margin: 12px 0 12px; }
.trio .cell p { color: var(--gray); font-size: 0.94rem; }

/* =====================================================
   Sector carousel
   ===================================================== */
.carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}
.carousel-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; line-height: 1.08; }
.carousel-controls { display: flex; gap: 10px; flex-shrink: 0; }
.carousel-controls button {
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.carousel-controls button:hover { background: var(--ink); color: #fff; }
section.dark .carousel-controls button { border-color: rgba(255,255,255,0.6); color: #fff; }
section.dark .carousel-controls button:hover { background: #fff; color: var(--ink); }

.sector-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.sector-track::-webkit-scrollbar { display: none; }
.sector-card {
  position: relative;
  flex: 0 0 min(380px, 82vw);
  height: 500px;
  scroll-snap-align: start;
  overflow: hidden;
  display: block;
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.sector-card:hover img { transform: scale(1.07); }
.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 14, 0.85) 0%, rgba(5, 8, 14, 0.18) 45%, rgba(5, 8, 14, 0.12));
}
.sector-card .idx {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}
.sector-card .meta {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: #fff;
}
.sector-card .meta h3 { font-size: 1.35rem; font-weight: 700; line-height: 1.2; }
.sector-card .meta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.5s;
}
.sector-card:hover .meta p { max-height: 120px; opacity: 1; }
.sector-card .meta .go {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 4px;
}

/* =====================================================
   Stats
   ===================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
}
.stats-row .stat { border-top: 1.5px solid rgba(255, 255, 255, 0.25); padding-top: 26px; }
section:not(.dark) .stats-row .stat { border-top-color: var(--ink); }
.stats-row .num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
.stats-row .num sup { font-size: 0.45em; color: var(--accent); font-weight: 700; }
section.dark .stats-row .num sup { color: #8fa8ff; }
.stats-row .lbl {
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
section.dark .stats-row .lbl { color: rgba(255, 255, 255, 0.55); }

/* =====================================================
   Edge split (big image + content)
   ===================================================== */
.edge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}
.edge .visual { position: relative; min-height: 560px; overflow: hidden; }
.edge .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.edge .panel {
  background: #0b0e13;
  color: #fff;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.edge .panel h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; line-height: 1.1; margin-bottom: 26px; }
.edge .panel p { color: rgba(255, 255, 255, 0.72); margin-bottom: 18px; }
.edge .panel .list { list-style: none; margin: 20px 0 36px; }
.edge .panel .list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 18px;
  align-items: baseline;
  font-weight: 500;
}
.edge .panel .list li::before {
  content: '—';
  color: #8fa8ff;
  font-weight: 700;
}

/* =====================================================
   Clients strip
   ===================================================== */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 36px 50px;
  padding: 20px 0;
}
.clients-strip .client {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: #b3b9c3;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  cursor: default;
}
.clients-strip .client:hover { color: var(--ink); }
.clients-strip .client small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9ced6;
}

/* =====================================================
   CTA banner
   ===================================================== */
.cta {
  position: relative;
  padding: 150px 0;
  color: #fff;
  overflow: hidden;
}
.cta .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta::after { content: ''; position: absolute; inset: 0; background: rgba(5, 8, 14, 0.74); }
.cta .container { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.08; max-width: 720px; }
.cta p { margin: 22px 0 40px; max-width: 540px; color: rgba(255, 255, 255, 0.78); }

/* =====================================================
   Inner page hero
   ===================================================== */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #0b0e13;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 14, 0.85), rgba(5, 8, 14, 0.35));
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 70px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
}
.page-hero .crumb {
  margin-top: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.page-hero .crumb a:hover { color: #fff; }

/* =====================================================
   Directors
   ===================================================== */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.director {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.director:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(14, 17, 22, 0.1); }
.director .portrait {
  aspect-ratio: 4 / 4.4;
  background: linear-gradient(150deg, #14181f, #232a36);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.director .portrait .initials {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
}
.director .portrait::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad);
}
.director .portrait img { width: 100%; height: 100%; object-fit: cover; }
.director .info { padding: 24px 24px 28px; }
.director .info h3 { font-size: 1.12rem; font-weight: 700; }
.director .info .role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}
.director .info p { font-size: 0.87rem; color: var(--gray); margin-top: 12px; }

/* =====================================================
   Values / pillars
   ===================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px; }
.pillar { border-top: 2px solid var(--ink); padding-top: 28px; }
section.dark .pillar { border-top-color: rgba(255, 255, 255, 0.35); }
.pillar h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.pillar p { color: var(--gray); font-size: 0.94rem; }
section.dark .pillar p { color: rgba(255, 255, 255, 0.65); }

/* =====================================================
   Service rows (services page)
   ===================================================== */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:first-of-type { padding-top: 0; }
.service-row:last-of-type { border-bottom: none; }
.service-row.rev .visual { order: 2; }
.service-row .visual { overflow: hidden; }
.service-row .visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-row .visual:hover img { transform: scale(1.05); }
.service-row h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.12; margin-bottom: 18px; }
.service-row > div > p { color: var(--gray); }
.service-row .list { list-style: none; margin-top: 26px; }
.service-row .list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-weight: 500;
  font-size: 0.95rem;
}
.service-row .list li::before { content: '—'; color: var(--accent); font-weight: 700; }

/* =====================================================
   Licenses
   ===================================================== */
.license-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.license-slot {
  border: 1px dashed #c3c9d2;
  background: var(--paper);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 28px;
  transition: border-color 0.3s;
}
.license-slot:hover { border-color: var(--ink); }
.license-slot .doc-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  color: var(--gray);
  margin-bottom: 16px;
}
.license-slot h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; }
.license-slot p { font-size: 0.82rem; color: var(--gray); }
.license-slot img { width: 100%; height: 100%; object-fit: contain; }

/* =====================================================
   Contact
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 90px; align-items: start; }
.contact-side h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 34px; }
.contact-side .c-item { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-side .c-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.contact-side .c-item span { font-size: 1.02rem; font-weight: 500; }

form.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
form.contact-form .field { margin-bottom: 26px; }
form.contact-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #c3c9d2;
  background: transparent;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s;
  border-radius: 0;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus { outline: none; border-bottom-color: var(--ink); }

/* =====================================================
   Footer
   ===================================================== */
footer.site-footer { background: #0b0e13; color: rgba(255, 255, 255, 0.6); }
footer .foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 90px 0 70px;
}
footer .foot-brand .word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
footer .foot-brand .word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}
footer .foot-brand p { margin-top: 24px; font-size: 0.88rem; max-width: 340px; }
footer h4 {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 12px; font-size: 0.9rem; }
footer a { transition: color 0.25s; }
footer a:hover { color: #fff; }
footer .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  font-size: 0.74rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer .foot-bottom .credits { opacity: 0.55; max-width: 640px; }
footer .foot-bottom a { color: rgba(255, 255, 255, 0.8); }

/* =====================================================
   Reveal
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* =====================================================
   Responsive — tablets
   ===================================================== */
@media (max-width: 1024px) {
  section.block { padding: 90px 0; }
  .editorial { grid-template-columns: 1fr; gap: 44px; }
  .trio { grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 64px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .edge { grid-template-columns: 1fr; }
  .edge .visual { min-height: 380px; }
  .edge .panel { padding: 70px 8vw; }
  .directors-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .service-row.rev .visual { order: 0; }
  .license-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  footer .foot-top { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* =====================================================
   Responsive — phones
   ===================================================== */
@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .burger { display: flex; }

  .hero { min-height: 560px; }
  .hero .slide .content { padding-bottom: 120px; }
  .hero .slide-nav { bottom: 46px; }
  .hero .slide-nav button { flex: 0 0 44px; }
  .hero .scroll-hint { display: none; }

  section.block { padding: 70px 0; }
  .trio { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sector-card { height: 420px; }
  .carousel-head { flex-direction: column; align-items: flex-start; }
  .directors-grid { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: 1fr; }
  .service-row .visual img { height: 300px; }
  form.contact-form .row { grid-template-columns: 1fr; gap: 0; }
  .page-hero { height: 52vh; }
  .cta { padding: 100px 0; }
  .btn { width: 100%; text-align: center; }
  footer .foot-top { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 50px; }
  footer .foot-bottom { flex-direction: column; }
}
