/* ===== CSS ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f7fa;
  --navy: #0b1a2b;
  --navy-2: #132840;
  --navy-glass: rgba(11, 26, 43, .55);
  --text: #16202b;
  --grey: #69707c;
  --grey-light: #9aa1ab;
  --line: #e7e9ee;
  --orange: #ff6a2b;
  --orange-dark: #e85a1f;
  --blue: #2f6bff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--navy);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--orange);
  display: inline-block;
}

.section-head {
  max-width: 620px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}

.section-head p {
  color: var(--grey);
  margin-top: 14px;
  font-size: 15.5px;
  max-width: 500px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 106, 43, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.btn-primary .arrow {
  transition: transform .3s var(--ease);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.btn-outline.dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline.dark:hover {
  background: var(--navy);
  color: #fff;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
}

.loader-mark span {
  color: var(--orange);
}

.loader-line {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -40%;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: sweep 1.1s ease-in-out infinite;
}

@keyframes sweep {
  0% { left: -40%; }
  100% { left: 100%; }
}

.loader-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
}

/* ===== CURSOR - Windows Style ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--orange);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) rotate(0deg);
  display: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 106, 43, 0.25);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s ease, background .3s ease;
  display: none;
}

.cursor-ring.expand {
  width: 56px;
  height: 56px;
  background: rgba(255, 106, 43, 0.06);
  border-color: var(--orange);
}

.cursor-ring.view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-color: var(--orange);
}

.cursor-ring.view::after {
  content: 'VIEW';
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
  body { cursor: none; }
  a, button, input, textarea { cursor: none; }
}

/* ===== NAV ===== */
header#nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top .4s var(--ease);
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-glass);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 10px 12px 10px 22px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
  gap: 8px;
}

header#nav.scrolled { top: 14px; }
header#nav.scrolled .nav-inner {
  background: rgba(11, 26, 43, .92);
  box-shadow: 0 14px 34px rgba(11, 26, 43, .22);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: 0;
  color: #fff;
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16.5px;
}

.logo-text b { color: var(--orange); font-weight: 600; }

@media (max-width: 900px) {
  .logo { gap: 6px; }
  .logo img { height: 38px; }
  .logo-text { font-size: 14px; }
}

@media (max-width: 600px) {
  .logo { gap: 5px; }
  .logo img { height: 32px; }
  .logo-text { font-size: 12px; letter-spacing: -0.02em; }
  .logo-text b { font-size: 12px; }
  .nav-inner { padding: 8px 10px 8px 14px; gap: 4px; }
}

@media (max-width: 420px) {
  .logo img { height: 28px; }
  .logo-text { font-size: 10px; letter-spacing: -0.03em; }
  .logo-text b { font-size: 10px; }
  .nav-inner { padding: 6px 8px 6px 10px; border-radius: 50px; gap: 4px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .82);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  background: #fff;
  color: var(--navy);
  transition: transform .3s var(--ease), background .3s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--orange);
  color: #fff;
}

.nav-cta .desktop-text { display: inline; }
.nav-cta .mobile-text { display: none; }

@media (max-width: 600px) {
  .nav-cta { font-size: 11px; padding: 8px 14px; }
}

@media (max-width: 420px) {
  .nav-cta { font-size: 0; padding: 6px 12px; }
  .nav-cta .desktop-text { display: none; }
  .nav-cta .mobile-text { display: inline; font-size: 9px; font-weight: 600; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 6px 4px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s var(--ease);
  position: relative;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.nav-toggle span {
  height: 2px;
  width: 20px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
  position: absolute;
}

.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 9px; }

.nav-toggle.open {
  background: rgba(255, 106, 43, 0.15);
  border-color: var(--orange);
}

.nav-toggle.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  width: 20px;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: rgba(255, 106, 43, 0.2);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s var(--ease);
}

.nav-toggle:active::before {
  opacity: 1;
  transform: scale(1.2);
  transition: all 0.15s var(--ease);
}

.nav-toggle:active { transform: scale(0.92); }

.nav-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 10px 12px 10px 18px; }
}

@media (max-width: 480px) {
  .nav-toggle { width: 38px; height: 38px; padding: 8px 5px; }
  .nav-toggle span { width: 22px; height: 2.5px; }
  .nav-toggle span:nth-child(1) { top: 11px; }
  .nav-toggle span:nth-child(3) { bottom: 11px; }
  .nav-toggle.open span:nth-child(1),
  .nav-toggle.open span:nth-child(3) { width: 22px; }
}

header#nav.scrolled .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

header#nav.scrolled .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

header#nav.scrolled .nav-toggle.open {
  background: rgba(255, 106, 43, 0.15);
  border-color: var(--orange);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 43, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  opacity: 0;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
}

.mobile-menu a:hover {
  color: var(--orange);
  transform: translateX(8px);
}

.mobile-menu a::after {
  content: '→';
  position: absolute;
  right: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease);
  color: var(--orange);
}

.mobile-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu .nav-cta {
  margin-top: 32px;
  display: inline-block;
  width: fit-content;
  font-size: 16px;
  padding: 14px 40px;
  background: var(--orange);
  border-radius: 100px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.mobile-menu .nav-cta:hover {
  transform: scale(1.05);
  background: var(--orange-dark);
}

.mobile-menu .nav-cta::after { display: none; }

.mobile-menu::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 106, 43, 0.05), transparent 70%);
  pointer-events: none;
}

.mobile-menu::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(47, 107, 255, 0.03), transparent 70%);
  pointer-events: none;
}

.mobile-menu.open a {
  animation: slideIn 0.5s var(--ease) forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu.open a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.30s; }
.mobile-menu.open a:nth-child(7) { animation-delay: 0.35s; }

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 480px) {
  .mobile-menu { padding: 0 20px; }
  .mobile-menu a { font-size: 22px; padding: 14px 0; }
}

/* ===== HERO ===== */
#home {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 43, .72) 0%, rgba(11, 26, 43, .55) 40%, rgba(8, 17, 28, .92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  text-align: center;
}

.hero-content .eyebrow {
  justify-content: center;
  color: var(--orange);
}

.hero-content .eyebrow::before { display: none; }

.hero-headline {
  font-size: clamp(38px, 6vw, 68px);
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  letter-spacing: -.03em;
}

.hero-sub {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16.5px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-top: 8px;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-trust {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 0 32px;
}

.hero-trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 22px;
}

.trust-tags {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}

.trust-tags span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-tags span i { font-size: 16px; }

.hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 44px;
  padding: 34px 32px 46px;
}

.hero-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-bottom-copy h4 {
  color: #fff;
  font-size: 17px;
  max-width: 340px;
  font-family: var(--font-body);
  font-weight: 600;
}

.hero-bottom-copy p {
  color: rgba(255, 255, 255, .65);
  font-size: 13.5px;
  margin-top: 6px;
  max-width: 340px;
}

.hero-stats {
  display: flex;
  gap: 44px;
}

.hero-stat b {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  display: block;
}

.hero-stat span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
}

@media (max-width: 760px) {
  .hero-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats { gap: 34px; }
}

/* ===== ABOUT ===== */
#about {
  padding: 130px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

.about-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.about-copy h2 .accent { color: var(--orange); }

.about-copy p {
  color: var(--grey);
  margin-top: 20px;
  max-width: 460px;
  font-size: 15.5px;
}

.about-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text);
}

.about-list .chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 106, 43, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange-dark);
  font-size: 11px;
}

.about-copy .btn { margin-top: 32px; }

.about-imgs {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}

.about-imgs .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-imgs .col:first-child { padding-top: 36px; }

.about-imgs img {
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 20px 40px -18px rgba(11, 26, 43, .3);
}

.about-imgs .tall { aspect-ratio: 3/4; }
.about-imgs .short { aspect-ratio: 4/3; }

.about-badge {
  background: var(--navy);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 4/3;
}

.about-badge b {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--orange);
}

.about-badge span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .68);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
#services {
  padding: 0 0 130px;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.s-card {
  background: #fff;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s var(--ease);
}

.s-card:hover { background: var(--bg-alt); }

.s-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 106, 43, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  font-size: 19px;
}

.s-card h3 {
  font-size: 14.5px;
  font-family: var(--font-body);
  font-weight: 600;
}

.s-card p {
  font-size: 12.5px;
  color: var(--grey);
}

/* ===== SOLUTIONS ===== */
#solutions {
  padding: 0 0 20px;
  background: var(--bg-alt);
}

.sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.sol-row:nth-child(even) .sol-text { order: 2; }
.sol-row:nth-child(even) .sol-media { order: 1; }

@media (max-width: 860px) {
  .sol-row { grid-template-columns: 1fr; }
  .sol-row:nth-child(even) .sol-text { order: 1; }
  .sol-row:nth-child(even) .sol-media { order: 2; }
}

.sol-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.sol-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .7s var(--ease);
}

.sol-row:hover .sol-media img { transform: scale(1.06); }

.sol-text {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 640px) {
  .sol-text { padding: 48px 26px; }
}

.sol-text .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-dark);
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.sol-text h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.sol-text p {
  color: var(--grey);
  margin-top: 14px;
  max-width: 420px;
  font-size: 15px;
}

.sol-tags {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.sol-tags span {
  font-size: 12px;
  font-family: var(--font-mono);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--grey);
}

/* ===== SOLAR FLOW ===== */
#solar-flow {
  padding: 130px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.solar-flow-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 960px) {
  .solar-flow-inner { grid-template-columns: 1fr; }
}

.solar-flow-inner .eyebrow { color: var(--orange); }

.solar-flow-inner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.solar-flow-inner p {
  color: rgba(255, 255, 255, .65);
  margin-top: 18px;
  max-width: 440px;
}

.flow-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .85);
}

.flow-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.flow-svg-wrap {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 20px;
}

.flow-svg-wrap svg {
  width: 100%;
  height: auto;
}

.flow-path {
  stroke: rgba(255, 255, 255, .15);
  stroke-width: 2;
  fill: none;
}

.flow-path-anim {
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 10 220;
  filter: drop-shadow(0 0 6px rgba(255, 106, 43, .7));
  animation: flowMove 3.2s linear infinite;
}

@keyframes flowMove {
  to { stroke-dashoffset: -460; }
}

.flow-node {
  fill: rgba(255, 255, 255, .06);
  stroke: rgba(255, 255, 255, .25);
  stroke-width: 1;
}

.flow-node-label {
  font-family: var(--font-body);
  font-size: 12px;
  fill: #fff;
  font-weight: 600;
}

.flow-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  fill: rgba(255, 255, 255, .5);
}

/* ===== BACKUP ===== */
#backup {
  padding: 130px 0;
  background: var(--bg-alt);
}

.bp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.bp-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 150px;
  text-align: center;
}

.bp-node .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--navy);
}

.bp-node.active .ic {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 8px 22px -6px rgba(255, 106, 43, .4);
}

.bp-node span {
  font-size: 12px;
  color: var(--grey);
  font-family: var(--font-mono);
}

.bp-connector {
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  margin-top: -30px;
}

.bp-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: bpFlow 2.6s linear infinite;
}

@keyframes bpFlow {
  to { left: 150%; }
}

@media (max-width: 760px) {
  .bp-flow { flex-direction: column; }
  .bp-connector {
    width: 1px;
    height: 44px;
    margin-top: 0;
  }
  .bp-connector::after {
    left: 0;
    top: -50%;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
  }
  @keyframes bpFlow {
    to { top: 150%; }
  }
}

/* ===== PROJECTS ===== */
#projects {
  padding: 100px 0;
  background: var(--bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(11, 26, 43, 0.2);
}

.project-card .proj-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card .proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .proj-img img { transform: scale(1.05); }

.project-card .proj-body { padding: 24px; }

.project-card .proj-body .proj-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(255, 106, 43, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

.project-card .proj-body h3 {
  font-size: 18px;
  margin: 10px 0 6px;
}

.project-card .proj-body p {
  font-size: 13.5px;
  color: var(--grey);
}

.project-card .proj-body .proj-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--grey-light);
}

.project-card .proj-body .proj-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-card .proj-body .proj-results {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  border-left: 3px solid var(--orange);
}

/* ===== INDUSTRIES ===== */
#industries {
  padding: 80px 0;
  background: var(--bg-alt);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
}

.industry-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.industry-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -12px rgba(11, 26, 43, 0.12);
}

.industry-card .industry-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.industry-card h3 { font-size: 17px; }
.industry-card p {
  font-size: 13.5px;
  color: var(--grey);
  margin-top: 6px;
}

/* ===== MAINTENANCE ===== */
#maintenance {
  padding: 80px 0;
  background: var(--navy);
  color: #fff;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .maintenance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .maintenance-grid { grid-template-columns: 1fr; }
}

.maintenance-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease);
}

.maintenance-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.maintenance-card .maint-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.maintenance-card h4 {
  color: #fff;
  font-size: 16px;
}

.maintenance-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  margin-top: 6px;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 80px 0;
  background: var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--bg-alt);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text);
  margin: 14px 0;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card .client-name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-card .client-company {
  font-size: 13px;
  color: var(--grey);
}

/* ===== FAQ ===== */
#faq {
  padding: 80px 0;
  background: var(--bg-alt);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  transition: all 0.3s var(--ease);
}

.faq-item:last-child { border-bottom: none; }

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s var(--ease);
}

.faq-toggle:hover { color: var(--orange); }

.faq-toggle .faq-icon {
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-toggle.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-top: 12px;
  color: var(--grey);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-answer.show { display: block; }

/* ===== PARTNERS ===== */
#partners {
  padding: 60px 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-alt);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track img {
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
  height: 60px;
}

.marquee-track img:hover {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-track { gap: 40px; }
  .marquee-track img { height: 40px !important; }
}

/* ===== GALLERY ===== */
#gallery {
  padding: 130px 0;
  background: var(--bg);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--grey);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.gallery-filter-btn:hover {
  border-color: var(--orange);
  color: var(--text);
}

.gallery-filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -20px rgba(11, 26, 43, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 26, 43, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay .cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
}

.gallery-item .overlay .title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.gallery-item .overlay .view-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .overlay .view-badge { opacity: 1; }

.gallery-note {
  margin-top: 36px;
  font-size: 13px;
  color: var(--grey-light);
  text-align: center;
}

/* ===== GALLERY PAGE SPECIFIC STYLES ===== */
.gallery-page {
  padding: 160px 0 80px;
  background: var(--bg);
}

.gallery-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.gallery-page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 20px;
  transition: gap 0.3s ease;
}

.gallery-page-header .back-link:hover {
  gap: 16px;
}

.gallery-page-header h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
}

.gallery-page-header p {
  color: var(--grey);
  font-size: 16px;
}

.gallery-page .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-page .gallery-filter-btn {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--grey);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.gallery-page .gallery-filter-btn:hover {
  border-color: var(--orange);
  color: var(--text);
}

.gallery-page .gallery-filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: 1fr; }
}

.gallery-page-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery-page-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -20px rgba(11, 26, 43, 0.3);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-page-item:hover img {
  transform: scale(1.06);
}

.gallery-page-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 26, 43, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-page-item:hover .overlay {
  opacity: 1;
}

.gallery-page-item .overlay .cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
}

.gallery-page-item .overlay .title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.gallery-page-item .overlay .view-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-page-item:hover .overlay .view-badge {
  opacity: 1;
}

.gallery-page-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--grey-light);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 43, 0.92);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lb-btn {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}

.lb-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

.lb-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.lb-close { top: 30px; right: 30px; }

@media (max-width: 640px) {
  .lb-close { top: 16px; right: 16px; width: 40px; height: 40px; }
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

@media (max-width: 640px) {
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-btn { width: 40px; height: 40px; }
  .lb-btn svg { width: 16px; height: 16px; }
}

.lb-stage {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
}

.lb-stage img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lb-caption {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 26, 43, 0.85);
  backdrop-filter: blur(8px);
  padding: 16px 28px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-caption .lb-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: block;
}

.lb-caption h4 {
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
  margin-bottom: 4px;
}

.lb-caption .lb-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .lb-caption {
    padding: 12px 18px;
    min-width: auto;
    width: 90%;
    bottom: -8px;
  }
  .lb-caption h4 { font-size: 14px; }
}

/* ===== WHY / PROCESS ===== */
#why {
  padding: 130px 0;
  background: var(--bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.why-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.why-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 106, 43, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 18px;
}

.why-item h3 { font-size: 15.5px; }
.why-item p {
  font-size: 13px;
  color: var(--grey);
  margin-top: 8px;
}

#process {
  padding: 130px 0;
  background: var(--bg);
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.t-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.t-step:last-child { padding-bottom: 0; }

.t-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--grey);
  z-index: 2;
}

.t-step.in-view .t-num {
  border-color: var(--orange);
  color: var(--orange-dark);
  box-shadow: 0 0 0 4px var(--bg), 0 6px 16px -4px rgba(255, 106, 43, .3);
}

.t-content h3 { font-size: 18px; }
.t-content p {
  font-size: 13.5px;
  color: var(--grey);
  margin-top: 6px;
  max-width: 520px;
}

/* ===== CONTACT ===== */
#contact {
  padding: 130px 0;
  background: var(--navy);
  color: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

@media (max-width: 960px) {
  .contact-inner { grid-template-columns: 1fr; }
}

.contact-copy .eyebrow { color: var(--orange); }

.contact-copy h2 {
  color: #fff;
  font-size: clamp(30px, 4.2vw, 48px);
}

.contact-copy p {
  color: rgba(255, 255, 255, .65);
  margin-top: 16px;
  max-width: 420px;
}

.contact-channels {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.channel:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--orange);
}

.channel .l {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
}

.channel .l i {
  color: var(--orange);
  font-size: 16px;
  width: 16px;
}

.channel .r {
  color: rgba(255, 255, 255, .5);
}

.q-form {
  background: #fff;
  border-radius: 18px;
  padding: 42px;
  color: var(--text);
}

@media (max-width: 640px) {
  .q-form { padding: 26px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--grey);
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color .3s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: none;
  background: #fff;
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #d94b4b;
}

.field .err-msg {
  font-size: 11.5px;
  color: #c53d3d;
  margin-top: 6px;
  display: none;
}

.field.error .err-msg { display: block; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.submit-btn:disabled {
  opacity: .6;
  transform: none;
}

.form-note {
  font-size: 12px;
  color: var(--grey-light);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show { display: block; }

.form-success .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 106, 43, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--orange-dark);
  font-size: 22px;
}

.form-success h3 { font-size: 19px; }
.form-success p {
  color: var(--grey);
  font-size: 13.5px;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: #080f1a;
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  margin-top: 14px;
  max-width: 280px;
  font-size: 13px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  padding: 5px 0;
  transition: color .3s var(--ease);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
}

.footer-social a i { font-size: 13px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1f9e56;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  transition: transform .3s var(--ease);
  color: #fff;
  font-size: 28px;
}

.wa-float:hover { transform: scale(1.08); }

/* ===== SECURITY SECTION FIXES ===== */
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 960px) {
  .security-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sec-visual {
  position: relative;
}

.sec-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
}

.sec-corner.tl { top: 12px; left: 12px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.sec-corner.tr { top: 12px; right: 12px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); }
.sec-corner.bl { bottom: 12px; left: 12px; border-bottom: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.sec-corner.br { bottom: 12px; right: 12px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }

@keyframes scanMove {
  0% { top: 8%; }
  50% { top: 90%; }
  100% { top: 8%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

/* ===== SOLUTIONS MEDIA FIX ===== */
.sol-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 280px;
  padding: 12px;
  background: var(--bg-alt);
}

.sol-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: static !important;
}

@media (max-width: 860px) {
  .sol-media {
    min-height: 200px;
    padding: 8px;
  }
}

/* ===== ALL ICONS ORANGE ===== */
.sec-feat h4 i,
.sec-feat h4,
.sol-tags span,
.sol-text .num,
.eyebrow {
  color: var(--orange) !important;
}

.sol-tags span {
  border-color: var(--orange) !important;
}

/* ===== SOLUTIONS SECTION - RESTYLED ===== */
.sol-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 6px;
}

.sol-row-modern .sol-text {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sol-row-modern .sol-text .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: .12em;
  margin-bottom: 10px;
  font-weight: 500;
}

.sol-row-modern .sol-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.sol-row-modern .sol-text p {
  color: var(--grey);
  margin-top: 8px;
  max-width: 400px;
  font-size: 15px;
  line-height: 1.6;
}

.sol-row-modern .sol-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.sol-row-modern .sol-tags span {
  font-size: 12px;
  font-family: var(--font-mono);
  border: 1.5px solid var(--orange);
  padding: 5px 16px;
  border-radius: 50px;
  color: var(--orange);
  font-weight: 500;
  background: rgba(255,106,43,0.06);
}

.sol-row-modern .sol-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  background: var(--bg-alt);
  min-height: 240px;
}

.sol-row-modern .sol-images .img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sol-row-modern .sol-images .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sol-row-modern .sol-images .img-wrap:hover img {
  transform: scale(1.04);
}

/* Image swap for even rows */
.sol-row-modern.even .sol-text { order: 2; }
.sol-row-modern.even .sol-images { order: 1; }

@media (max-width: 860px) {
  .sol-row-modern {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .sol-row-modern .sol-text {
    padding: 32px 24px;
    order: 1 !important;
  }
  .sol-row-modern .sol-images {
    padding: 12px;
    min-height: 160px;
    order: 2 !important;
  }
  .sol-row-modern .sol-text h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .sol-row-modern .sol-images {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
    min-height: 120px;
  }
  .sol-row-modern .sol-text {
    padding: 24px 16px;
  }
  .sol-row-modern .sol-text h3 {
    font-size: 19px;
  }
  .sol-row-modern .sol-tags span {
    font-size: 10px;
    padding: 4px 12px;
  }
}

/* ===== SOLUTIONS SECTION - BIGGER IMAGES ON MOBILE ===== */

@media (max-width: 860px) {
  
  /* Each solution row becomes 1 column */
  .sol-row,
  .sol-row-modern {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }
  
  /* Text content - keep it compact */
  .sol-row .sol-text,
  .sol-row-modern .sol-text {
    padding: 24px 18px !important;
    order: 1 !important;
  }
  
  .sol-row .sol-text h3,
  .sol-row-modern .sol-text h3 {
    font-size: 22px !important;
  }
  
  .sol-row .sol-text p,
  .sol-row-modern .sol-text p {
    font-size: 14px !important;
    max-width: 100% !important;
  }
  
  .sol-row .sol-text .num,
  .sol-row-modern .sol-text .num {
    font-size: 10px !important;
  }
  
  /* Image container - BIGGER */
  .sol-row [style*="grid-template-columns: 1fr 1fr"],
  .sol-row-modern .sol-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
    min-height: 220px !important;
    order: 2 !important;
    background: var(--bg-alt);
  }
  
  /* Each image wrapper - bigger */
  .sol-row [style*="grid-template-columns: 1fr 1fr"] > div,
  .sol-row-modern .sol-images .img-wrap {
    aspect-ratio: 4/3 !important;
    border-radius: 12px !important;
    min-height: 140px !important;
    overflow: hidden !important;
  }
  
  .sol-row [style*="grid-template-columns: 1fr 1fr"] > div img,
  .sol-row-modern .sol-images .img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  
  /* Tags - keep them clean */
  .sol-row .sol-tags,
  .sol-row-modern .sol-tags {
    gap: 8px !important;
    margin-top: 14px !important;
  }
  
  .sol-row .sol-tags span,
  .sol-row-modern .sol-tags span {
    font-size: 11px !important;
    padding: 4px 14px !important;
  }
  
  /* Even rows - fix order */
  .sol-row:nth-child(even) .sol-text,
  .sol-row-modern.even .sol-text {
    order: 1 !important;
  }
  .sol-row:nth-child(even) [style*="grid-template-columns: 1fr 1fr"],
  .sol-row-modern.even .sol-images {
    order: 2 !important;
  }
}

/* Extra small phones - make images even bigger */
@media (max-width: 480px) {
  .sol-row [style*="grid-template-columns: 1fr 1fr"],
  .sol-row-modern .sol-images {
    gap: 8px !important;
    padding: 12px !important;
    min-height: 180px !important;
  }
  
  .sol-row [style*="grid-template-columns: 1fr 1fr"] > div,
  .sol-row-modern .sol-images .img-wrap {
    min-height: 120px !important;
    border-radius: 10px !important;
  }
  
  .sol-row .sol-text,
  .sol-row-modern .sol-text {
    padding: 18px 14px !important;
  }
  
  .sol-row .sol-text h3,
  .sol-row-modern .sol-text h3 {
    font-size: 19px !important;
  }
  
  .sol-row .sol-text p,
  .sol-row-modern .sol-text p {
    font-size: 13px !important;
  }
  
  .sol-row .sol-tags span,
  .sol-row-modern .sol-tags span {
    font-size: 10px !important;
    padding: 3px 10px !important;
  }
}
/* ===== HERO BACKGROUND - MINIMIZE ON MOBILE ===== */

/* Hero background image - better sizing */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* For mobile - make the image smaller/less prominent */
@media (max-width: 768px) {
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This crops the image to focus on the center */
    object-position: center 30%;
    /* Or use this to make it more subtle - blurs it slightly */
    /* filter: blur(2px) brightness(0.7); */
  }
  
  /* Darker overlay to make text more readable */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 26, 43, 0.85) 0%, rgba(11, 26, 43, 0.75) 40%, rgba(8, 17, 28, 0.95) 100%);
  }
  
  /* Smaller hero content on mobile */
  .hero-content {
    padding-top: 100px !important;
  }
  
  .hero-headline {
    font-size: clamp(28px, 8vw, 38px) !important;
    max-width: 100% !important;
  }
  
  .hero-sub {
    font-size: 14px !important;
    max-width: 100% !important;
    padding: 0 16px !important;
  }
  
  .hero-tagline {
    font-size: 12px !important;
  }
  
  .hero-ctas {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  
  .hero-ctas .btn {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
  
  /* Trust tags - smaller on mobile */
  .hero-trust {
    margin-top: 30px !important;
    padding: 0 16px !important;
  }
  
  .trust-tags {
    gap: 16px !important;
  }
  
  .trust-tags span {
    font-size: 12px !important;
  }
  
  /* Hero bottom stats - smaller */
  .hero-bottom {
    padding: 20px 16px 30px !important;
    margin-top: 24px !important;
  }
  
  .hero-bottom-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  
  .hero-bottom-copy h4 {
    font-size: 15px !important;
    max-width: 100% !important;
  }
  
  .hero-bottom-copy p {
    font-size: 12px !important;
  }
  
  .hero-stats {
    gap: 24px !important;
    width: 100% !important;
    justify-content: space-around !important;
  }
  
  .hero-stat b {
    font-size: 28px !important;
  }
  
  .hero-stat span {
    font-size: 11px !important;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 80px !important;
  }
  
  .hero-headline {
    font-size: clamp(24px, 7vw, 30px) !important;
  }
  
  .hero-sub {
    font-size: 13px !important;
  }
  
  .hero-ctas .btn {
    max-width: 240px !important;
    font-size: 13px !important;
    padding: 12px 20px !important;
  }
  
  .trust-tags {
    gap: 12px !important;
  }
  
  .trust-tags span {
    font-size: 11px !important;
  }
  
  .hero-stats {
    gap: 16px !important;
  }
  
  .hero-stat b {
    font-size: 24px !important;
  }
}