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

:root {
  --black:     #0a0a0a;
  --dark:      #111827;
  --blue:      #1d4ed8;
  --blue-light:#2563eb;
  --blue-pale: #dbeafe;
  --white:     #ffffff;
  --gray-200:  #e5e7eb;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: #060d1a;
  border-bottom: 1px solid rgba(29, 78, 216, 0.25);
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
}
.top-bar .contact i {
  color: var(--blue-light);
  font-size: 14px;
}
.top-bar .contact a {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: color .2s;
}
.top-bar .contact a:hover { color: var(--white); }
.top-bar .socials {
  display: flex;
  gap: 16px;
}
.top-bar .socials a {
  color: var(--gray-400);
  font-size: 14px;
  transition: color .2s;
}
.top-bar .socials a:hover { color: var(--blue-light); }

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--blue-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-200);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(37, 99, 235, 0.15);
}
.nav-links a i { font-size: 10px; opacity: .7; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-search {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 18px;
  cursor: pointer;
  transition: color .2s;
  padding: 4px;
}
.nav-search:hover { color: var(--white); }
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 4px;
  transition: background .25s, transform .2s;
}
.btn-quote:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.btn-quote i { font-size: 11px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Diagonal image panel */
.hero-image-panel {
  position: absolute;
  inset: 0;
  right: 0;
  width: 55%;
  left: 45%;
  background: url('images/header-image.jpg') center/cover no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(17,24,39,0.5) 60%, rgba(17,24,39,0.2) 100%);
}

/* Dark gradient overlay across full hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(29, 78, 216, 0.10) 0%, transparent 70%),
    linear-gradient(to right, #111827 38%, transparent 75%);
  z-index: 1;
}

/* Decorative dot grid */
.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

/* Decorative circles */
.hero-circle-1,
.hero-circle-2 {
  position: absolute;
  border: 1.5px dashed rgba(29, 78, 216, 0.35);
  border-radius: 50%;
  z-index: 1;
}
.hero-circle-1 {
  width: 160px;
  height: 160px;
  bottom: 18%;
  left: 2%;
}
.hero-circle-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 28%;
}

/* Blue accent bar left edge */
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--blue-light), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 620px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 26px;
}
.hero-eyebrow .icon-roof {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  font-size: 13px;
}

/* Main headline */
.hero-title {
  font-size: clamp(46px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title .highlight {
  color: var(--blue-light);
  display: inline-block;
}

/* Social proof badge */
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 32px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  object-fit: cover;
}
.proof-avatars img:not(:first-child) { margin-left: -10px; }
.proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.proof-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-400);
}
.proof-stars i { color: #f59e0b; font-size: 11px; }
.proof-stars strong { color: var(--white); font-weight: 700; }

/* Description */
.hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-400);
  border-left: 3px solid var(--blue-light);
  padding-left: 18px;
  margin-bottom: 44px;
  max-width: 480px;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.4);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 78, 216, 0.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color .25s, background .25s;
}
.btn-secondary:hover {
  border-color: var(--blue-light);
  background: rgba(29, 78, 216, 0.1);
}
.btn-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--white);
}

/* Stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(6, 13, 26, 0.90);
  border-top: 1px solid rgba(29, 78, 216, 0.2);
  backdrop-filter: blur(10px);
}
.hero-stats .container {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 46px;
  height: 46px;
  background: rgba(29, 78, 216, 0.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.stat-info {}
.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.stat-number span { color: var(--blue-light); }
.stat-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ─── SHARED CONTAINER ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    z-index: 998;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }
  .top-bar .contact { display: none; }
  .hero-image-panel { left: 35%; clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%); }
  .hero-stats .container { flex-wrap: wrap; }
  .hero-stats { position: relative; bottom: auto; }
  .hero { flex-direction: column; align-items: stretch; min-height: auto; padding-top: 60px; }
  .hero-content { padding-bottom: 60px; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .navbar .container { position: relative; }
}
@media (max-width: 600px) {
  .hero-image-panel { display: none; }
  .hero::before { background: linear-gradient(to bottom, #111827, #0a0a0a); }
  .hero-title { font-size: 46px; }
  .stat-item { flex: 0 0 100%; }
  .container { padding: 0 20px; }
}

/* ─── ABOUT US ────────────────────────────────────────────── */
.about {
  background: var(--black);
  padding: 100px 0;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ── Left text column ── */
.about-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--blue-light);
  margin-bottom: 18px;
}

.about-heading {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 22px;
}

.about-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 480px;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 42px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-200);
}

.about-checklist li i {
  color: var(--blue-light);
  font-size: 18px;
  flex-shrink: 0;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 15px 32px;
  border-radius: 4px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.35);
}
.btn-about:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.5);
}

/* ── Right visuals column ── */
.about-visuals {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  border-radius: 10px;
  background: url('images/about-image-main.jpg') center/cover no-repeat;
}

.about-img-secondary {
  position: absolute;
  right: 0;
  top: 20px;
  width: 34%;
  height: 90%;
  border-radius: 10px;
  background: url('images/about-image-secondary.jpg') center/cover no-repeat;
}

/* Badge cards */
.about-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.about-badge p {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

.about-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.about-badge-1 {
  bottom: 120px;
  left: 36%;
}

.about-badge-2 {
  bottom: 40px;
  left: 30%;
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visuals { height: 420px; }
  .about-badge-1 { left: 30%; }
  .about-badge-2 { left: 20%; }
}
@media (max-width: 600px) {
  .about-visuals { height: 320px; }
  .about-badge { display: none; }
  .about-img-secondary { display: none; }
  .about-img-main { width: 100%; }
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services {
  position: relative;
  background: #0d1117;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* Concentric rings decorative background */
.services-rings {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle,
    transparent 20%,
    rgba(255,255,255,0.025) 20.5%, transparent 21%,
    transparent 27%,
    rgba(255,255,255,0.025) 27.5%, transparent 28%,
    transparent 34%,
    rgba(255,255,255,0.025) 34.5%, transparent 35%,
    transparent 41%,
    rgba(255,255,255,0.025) 41.5%, transparent 42%,
    transparent 48%,
    rgba(255,255,255,0.025) 48.5%, transparent 49%
  );
  z-index: 0;
}

/* Left triangle image panel (main - larger) */
.services-panel-a {
  position: absolute;
  top: 0; bottom: 0;
  left: 46%;
  right: 0;
  background: url('images/services-panel-left.jpg') center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
  z-index: 1;
}
.services-panel-a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d1117 0%, rgba(13,17,23,0.45) 55%, rgba(13,17,23,0.1) 100%);
}

/* Right triangle image panel (secondary - narrower) */
.services-panel-b {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 34%;
  background: url('images/services-panel-right.jpg') center/cover no-repeat;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.services-panel-b::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,0.5) 0%, rgba(13,17,23,0.1) 60%, transparent 100%);
}

/* Inner layout */
.services-inner {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  padding-bottom: 90px;
  width: 100%;
}

.services-content {
  max-width: 46%;
}

/* Eyebrow label */
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 24px;
}
.services-eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  font-size: 11px;
  color: var(--white);
}

/* Section heading */
.services-heading {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 44px;
}

/* Numbered service list */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.service-num-wrap {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
}

.service-num {
  font-size: 54px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  display: block;
}

.service-num-icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: var(--blue-light);
  font-size: 15px;
}

.service-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  padding-top: 4px;
}

.service-info p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 400px;
}

/* CTA button */
.btn-services-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.35);
}
.btn-services-learn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .services-panel-a,
  .services-panel-b { display: none; }
  .services-content { max-width: 100%; }
}
@media (max-width: 600px) {
  .services-heading { font-size: 30px; }
}

/* ─── ABOUT THE FOUNDER ──────────────────────────────────── */
.founder {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.founder-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 80px;
}

/* ── Photo column ── */
.founder-photo-wrap {
  position: relative;
  height: 520px;
}

.founder-photo {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: url('images/logo.jpeg') center/contain no-repeat, #0d1117;
}

/* Blue accent border offset behind the photo */
.founder-photo-accent {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid rgba(37, 99, 235, 0.45);
  border-radius: 14px;
  z-index: 0;
}

/* "Since 2003" badge */
.founder-since {
  position: absolute;
  bottom: 28px;
  right: -28px;
  background: var(--blue);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.5);
  z-index: 2;
}

.founder-since-year {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.founder-since-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Text column ── */
.founder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 20px;
}

.founder-eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  font-size: 11px;
  color: var(--white);
}

.founder-heading {
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.founder-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.founder-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: 18px;
  max-width: 560px;
}

.founder-text strong {
  color: var(--white);
  font-weight: 700;
}

/* Stats row */
.founder-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.founder-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.founder-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.founder-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1000px) {
  .founder-inner { grid-template-columns: 1fr 1fr; gap: 50px; }
}
@media (max-width: 768px) {
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo-wrap { height: 380px; }
  .founder-since { right: 10px; }
}
@media (max-width: 600px) {
  .founder-photo-accent { display: none; }
  .founder-stats { flex-wrap: wrap; gap: 20px; }
  .founder-stat-divider { display: none; }
}

/* ─── LATEST PROJECTS ──────────────────────────────── */
.projects {
  background: var(--black);
  padding: 100px 0;
}

/* Header */
.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 16px;
}

.projects-eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  font-size: 11px;
  color: var(--white);
}

.projects-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.projects-subheading {
  font-size: 15px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 2x2 project grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Individual project card */
.project-card {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.project-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.project-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

/* 2x2 photo grid inside each card */
.project-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 3px;
}

.project-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1a1f2b;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.project-photo:hover img {
  transform: scale(1.06);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.45);
  color: var(--white);
  font-size: 22px;
  opacity: 0;
  transition: opacity .25s;
}

.project-photo:hover .photo-overlay {
  opacity: 1;
}

/* ─── LIGHTBOX ──────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  gap: 14px;
}

.lightbox-stage img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.lightbox-caption {
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--blue); }

/* Responsive */
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .project-photos { grid-template-rows: 140px 140px; }
  .lightbox-prev, .lightbox-next { display: none; }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #060d1a;
  border-top: 1px solid rgba(29, 78, 216, 0.25);
}

/* Top section */
.footer-top {
  padding: 72px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Brand column */
.footer-logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--blue-light); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray-400);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Column titles */
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

/* Generic list */
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.55;
}
.footer-list li i {
  color: var(--blue-light);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-list a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color .2s;
}
.footer-list a:hover { color: var(--white); }

/* Hours list */
.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours li:last-child { border-bottom: none; }

.hours-day {
  font-weight: 500;
  color: var(--gray-200);
}
.hours-time {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.hours-time.closed {
  color: var(--gray-600);
  font-weight: 500;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray-600);
}
.footer-bottom p a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom p a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ─── COOKIE BAR ──────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #0d1117;
  border-top: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.cookie-bar.is-visible {
  transform: translateY(0);
}
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 240px;
}
.cookie-text i {
  color: var(--blue-light);
  font-size: 18px;
  flex-shrink: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-accept {
  background: var(--blue);
  color: var(--white);
}
.cookie-accept:hover { background: var(--blue-light); }
.cookie-decline {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-decline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-bar-inner { padding: 16px 20px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
