@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --navy: #1b2c5c;
  --navy-deep: #00042a;
  --navy-mid: #1b398f;
  --cyan: #01afe9;
  --cyan-bright: #04e4ff;
  --blue: #009cff;
  --purple: #9536e5;
  --white: #ffffff;
  --gold: #ecc80d;
  --text-muted: rgba(255,255,255,0.72);
  --font: 'Roboto', system-ui, sans-serif;
  --container: min(75vw, 1320px);
  --container-wide: min(96vw, 1600px);
  --section-gap: clamp(48px, 8vmin, 96px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); font-size: 16px; line-height: 1.65;
  color: var(--white); background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.lt-container { width: var(--container); margin: 0 auto; padding: 0 clamp(15px, 3rem, 48px); }
.lt-container-wide { width: var(--container-wide); margin: 0 auto; padding: 0 clamp(15px, 3rem, 48px); }

/* ── Header ── */
.lt-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 80px; transition: background 0.3s, box-shadow 0.3s;
}
.lt-header.scrolled {
  background: rgba(0, 4, 42, 0.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(1,175,233,0.15);
}
.lt-header-inner {
  max-width: 1600px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(15px, 3rem, 48px); gap: 24px;
}
.lt-logo img { height: 36px; width: auto; }
.lt-nav { display: flex; align-items: center; gap: 4px; }
.lt-nav-item { position: relative; }
.lt-nav-item > a, .lt-nav-item > .lt-nav-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--white);
  border-radius: 4px; transition: color 0.2s;
  cursor: pointer;
}
.lt-nav-item:hover > a, .lt-nav-item:hover > .lt-nav-label { color: var(--cyan); }
.lt-nav-item > a .lt-chev { width: 8px; opacity: 0.6; transition: transform 0.2s; }
.lt-nav-item:hover .lt-chev { transform: rotate(180deg); }

.lt-megamenu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; padding: 20px 24px;
  background: rgba(0, 4, 42, 0.98); border: 1px solid rgba(1,175,233,0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 900;
}
.lt-nav-item:hover .lt-megamenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.lt-megamenu-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
}
.lt-megamenu a {
  display: block; padding: 8px 0; font-size: 14px; color: var(--text-muted);
  transition: color 0.15s, padding-left 0.15s;
}
.lt-megamenu a:hover { color: var(--white); padding-left: 6px; }

.lt-header-actions { display: flex; align-items: center; gap: 12px; }
.lt-header-phone {
  font-size: 13px; color: var(--text-muted); display: none;
}
.lt-header-phone strong { color: var(--cyan); font-weight: 500; }

.lt-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.lt-btn-white {
  background: var(--white); color: var(--navy-deep) !important;
}
.lt-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(1,175,233,0.25); }
.lt-btn-outline {
  color: var(--white) !important; background: rgba(1,175,233,0.08);
  border: 2px solid var(--cyan);
}
.lt-btn-outline:hover { background: rgba(1,175,233,0.18); transform: translateY(-2px); }
.lt-btn-cyan {
  background: linear-gradient(231deg, #03d7ff -16%, #0092e2 99%);
  color: var(--white) !important;
}
.lt-btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(1,175,233,0.35); }
.lt-btn .lt-arrow { font-size: 14px; transition: transform 0.2s; }
.lt-btn:hover .lt-arrow { transform: translateX(4px); }

.lt-menu-btn { display: none; padding: 8px; }
.lt-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; }

.lt-header-actions .lt-btn-header {
  background: transparent; color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.85); padding: 12px 22px;
}
.lt-header-actions .lt-btn-header:hover {
  background: rgba(255,255,255,0.08); transform: translateY(-1px);
}
.lt-header.scrolled .lt-btn-header {
  background: var(--white); color: var(--navy-deep) !important; border-color: var(--white);
}

/* ── Hero — Digital Silk split layout ── */
.lt-hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
  padding: 100px 0 60px; background: #070818;
}
.lt-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
}
.lt-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0,4,42,0.92) 0%, rgba(0,4,42,0.55) 42%, rgba(0,4,42,0.25) 68%, rgba(0,4,42,0.45) 100%),
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(149,54,229,0.22) 0%, transparent 70%);
}
.lt-hero-blur {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 1;
}
.lt-hero-blur-1 { top: -5%; right: 10%; background: rgba(149,54,229,0.25); }
.lt-hero-blur-2 { bottom: 0; left: 20%; background: rgba(1,175,233,0.12); }

.lt-hero-grid {
  position: relative; z-index: 2;
  width: var(--container-wide); margin: 0 auto;
  padding: 0 clamp(15px, 3rem, 48px);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.lt-hero-copy { text-align: left; max-width: 560px; }
.lt-pretitle-glow {
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1;
  color: var(--cyan-bright); margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(4,228,255,0.55), 0 0 80px rgba(1,175,233,0.35);
}
.lt-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 700;
  line-height: 1.08; color: var(--white); margin-bottom: 8px;
}
.lt-hero h1 .lt-glow {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--cyan-bright);
  text-shadow: 0 0 48px rgba(4,228,255,0.5), 0 0 100px rgba(1,175,233,0.3);
  margin-bottom: 6px;
}
.lt-hero-subline {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700;
  color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.lt-hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.82);
  max-width: 480px; margin-bottom: 28px; line-height: 1.65;
}
.lt-hero-copy .lt-btn-white {
  padding: 16px 28px; font-size: 11px; color: var(--blue) !important;
}
.lt-hero-copy .lt-btn-white .lt-arrow { color: var(--cyan); font-size: 16px; }

/* Hero trust row — inline like Digital Silk */
.lt-hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.lt-hero-trust-item { display: flex; align-items: center; gap: 14px; }
.lt-trust-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  font-size: 14px;
}
.lt-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; line-height: 1; }
.lt-trust-text { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* Industry strip (replaces client-logo marquee) */
.lt-industry-strip {
  padding: 20px 24px; border-top: 1px solid rgba(1,175,233,0.12);
  border-bottom: 1px solid rgba(1,175,233,0.12);
  background: rgba(0,4,42,0.55); text-align: center;
}
.lt-industry-strip-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.lt-industry-strip-label span { color: rgba(255,255,255,0.45); font-weight: 600; }
.lt-industry-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 0 auto;
}
.lt-industry-pills span {
  padding: 8px 16px; border: 1px solid rgba(1,175,233,0.25);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted);
}

/* Example outcome card (not a testimonial) */
.lt-example-card {
  max-width: 820px; margin: 0 auto; padding: 40px 44px;
  border: 1px solid rgba(1,175,233,0.25); background: rgba(255,255,255,0.04);
}
.lt-example-card blockquote {
  font-size: 1.15rem; line-height: 1.65; font-style: italic; color: var(--white);
  margin: 16px 0 20px; padding-left: 20px; border-left: 3px solid var(--cyan);
}
.lt-example-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.lt-example-note { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Team */
.lt-team-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 720px; }
.lt-team-card {
  padding: 40px; border: 1px solid rgba(1,175,233,0.2);
  background: rgba(255,255,255,0.03);
}
.lt-team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--navy-deep);
}
.lt-team-card h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 6px; }
.lt-team-role {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 20px;
}
.lt-team-meta { font-size: 14px; color: var(--text-muted); margin-top: 20px; }

.lt-trust-text strong { color: var(--white); font-weight: 600; display: block; font-size: 14px; }
.lt-trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.lt-trust-badge-img {
  height: 28px; width: auto; opacity: 0.9; filter: brightness(0) invert(1);
}

/* Portfolio collage — 3D fan like Digital Silk */
.lt-hero-collage {
  position: relative; height: clamp(380px, 52vh, 560px);
  perspective: 1400px; perspective-origin: 50% 50%;
}
.lt-collage-card {
  position: absolute; width: clamp(160px, 22vw, 260px);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease);
  transform-style: preserve-3d;
}
.lt-collage-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.lt-collage-card:hover { z-index: 10 !important; }
.lt-collage-card:nth-child(1) {
  top: 6%; left: 2%; z-index: 2;
  transform: rotateY(-22deg) rotateZ(-6deg) rotateX(4deg);
}
.lt-collage-card:nth-child(2) {
  top: 0; left: 28%; z-index: 3;
  transform: rotateY(-8deg) rotateZ(-2deg);
  width: clamp(180px, 24vw, 280px);
}
.lt-collage-card:nth-child(3) {
  top: 18%; right: 4%; z-index: 5;
  transform: rotateY(-12deg) rotateZ(3deg);
  width: clamp(200px, 28vw, 320px);
}
.lt-collage-card:nth-child(4) {
  bottom: 8%; left: 18%; z-index: 4;
  transform: rotateY(-18deg) rotateZ(-4deg) rotateX(-3deg);
  width: clamp(170px, 23vw, 270px);
}
.lt-collage-card:nth-child(5) {
  bottom: 2%; right: 12%; z-index: 1;
  transform: rotateY(-25deg) rotateZ(5deg);
}

/* Legacy trust strip below hero */
.lt-trust { display: none; }
.lt-pretitle { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.lt-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Marquee — logo strip like Digital Silk */
.lt-marquee-wrap { overflow: hidden; padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.lt-marquee {
  display: flex; align-items: center; gap: 64px; width: max-content;
  animation: lt-scroll 40s linear infinite;
}
.lt-marquee img {
  height: 28px; width: auto; opacity: 0.4; filter: grayscale(1) brightness(1.8);
  transition: opacity 0.2s;
}
.lt-marquee img:hover { opacity: 0.7; }
@keyframes lt-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.lt-section { padding: var(--section-gap) 0; }
.lt-section-light { background: var(--white); color: var(--navy); }
.lt-section-purple { background: linear-gradient(135deg, rgba(149,54,229,0.15) 0%, rgba(0,4,42,1) 100%); }
.lt-section-gradient {
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(27,57,143,0.3) 100%);
}
.lt-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.lt-section-light .lt-eyebrow { color: var(--blue); }
.lt-section h2 {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px;
}
.lt-section-light h2 { color: var(--navy); }
.lt-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-muted);
  max-width: 720px; line-height: 1.65; margin-bottom: 32px;
}
.lt-section-light .lt-lead { color: #5a6572; }
.lt-mark { color: var(--cyan); background: none; font-weight: 700; }
.lt-section-light .lt-mark { color: var(--blue); }

/* Split intro */
.lt-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.lt-split img, .lt-split-video {
  border-radius: 0; width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border: 1px solid rgba(1,175,233,0.2);
}
.lt-split-video-wrap { position: relative; cursor: pointer; }
.lt-split-video-wrap img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border: 1px solid rgba(1,175,233,0.25); }
.lt-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,4,42,0.25); transition: background 0.2s;
}
.lt-play-btn span {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; padding-left: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.lt-split-video-wrap:hover .lt-play-btn { background: rgba(0,4,42,0.4); }
.lt-pillar-list { margin: 28px 0; }
.lt-pillar-list li {
  padding: 12px 0 12px 28px; position: relative;
  font-size: 15px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lt-pillar-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; background: var(--cyan); transform: rotate(45deg);
}

/* Portfolio / case grid */
.lt-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.lt-tab {
  padding: 10px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.lt-tab.active, .lt-tab:hover {
  color: var(--navy-deep); background: var(--cyan); border-color: var(--cyan);
}
.lt-portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lt-portfolio-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid rgba(1,175,233,0.15);
  transition: transform 0.3s var(--ease);
}
.lt-portfolio-card:hover { transform: scale(1.02); }
.lt-portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lt-portfolio-card:hover img { transform: scale(1.08); }
.lt-portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,4,42,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.lt-portfolio-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 8px;
}
.lt-portfolio-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.lt-portfolio-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Testimonial */
.lt-testimonial {
  position: relative; margin: -60px auto 0; max-width: 900px; z-index: 10;
  padding: 40px 48px; background: var(--white); color: var(--navy);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
.lt-testimonial-stars { color: var(--gold); font-size: 20px; margin-bottom: 12px; }
.lt-testimonial blockquote {
  font-size: 1.1rem; font-style: italic; line-height: 1.6; color: var(--navy);
  margin-bottom: 16px;
}
.lt-testimonial cite { font-size: 13px; font-style: normal; font-weight: 700; color: var(--navy); }
.lt-testimonial cite span { display: block; font-weight: 400; color: #5a6572; margin-top: 4px; }
.lt-testimonial-photo {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cyan);
}

/* Service cards (light section) */
.lt-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lt-service-card {
  padding: 36px 28px; border: 1px solid #e8ecf0;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.lt-service-card:hover {
  border-color: var(--cyan); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(1,175,233,0.12);
}
.lt-service-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.3;
}
.lt-service-card p { font-size: 14px; color: #5a6572; line-height: 1.6; margin-bottom: 20px; }
.lt-service-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.lt-service-link:hover { color: var(--purple); }

/* Industries */
.lt-industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lt-industry-card {
  padding: 28px 24px; border: 1px solid rgba(1,175,233,0.15);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s, background 0.25s;
}
.lt-industry-card:hover { border-color: var(--cyan); background: rgba(1,175,233,0.06); }
.lt-industry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.lt-industry-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.lt-industry-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cyan);
}

/* Process accordion */
.lt-process { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.lt-process-nav { display: flex; flex-direction: column; gap: 4px; }
.lt-process-btn {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 20px; text-align: left; width: 100%;
  border: 1px solid transparent; color: var(--text-muted);
  transition: all 0.2s;
}
.lt-process-btn .lt-num {
  font-size: 1.5rem; font-weight: 700; color: rgba(1,175,233,0.35);
  min-width: 36px;
}
.lt-process-btn.active, .lt-process-btn:hover {
  border-color: rgba(1,175,233,0.3); background: rgba(1,175,233,0.08); color: var(--white);
}
.lt-process-btn.active .lt-num, .lt-process-btn:hover .lt-num { color: var(--cyan); }
.lt-process-panel { display: none; padding: 32px; border: 1px solid rgba(1,175,233,0.2); background: rgba(0,4,42,0.5); }
.lt-process-panel.active { display: block; }
.lt-process-panel h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.lt-process-panel p { color: var(--text-muted); line-height: 1.65; }

/* Differentiators */
.lt-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lt-diff-card { padding: 32px 28px; border: 1px solid #e8ecf0; }
.lt-diff-num {
  font-size: 2rem; font-weight: 700; color: var(--cyan);
  margin-bottom: 12px; line-height: 1;
}
.lt-section-light .lt-diff-num { color: var(--blue); }
.lt-diff-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.lt-diff-card p { font-size: 14px; color: #5a6572; line-height: 1.6; }

/* Location */
.lt-location {
  padding: 40px; border: 1px solid rgba(1,175,233,0.25);
  background: linear-gradient(55deg, rgba(1,7,36,0.86), rgba(0,74,131,0.4));
}
.lt-location h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--cyan); }
.lt-location p { color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.lt-location a { color: var(--cyan); }

/* Forms */
.lt-form input, .lt-form textarea, .lt-form select {
  width: 100%; padding: 16px 20px; margin-bottom: 16px;
  background: transparent; border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); font-family: var(--font); font-size: 15px;
  transition: border-color 0.2s;
}
.lt-form input:focus, .lt-form textarea:focus {
  outline: none; border-color: var(--cyan);
}
.lt-form input::placeholder, .lt-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.lt-section-light .lt-form input, .lt-section-light .lt-form textarea {
  border-color: #ccd3db; color: var(--navy);
}
.lt-section-light .lt-form input::placeholder { color: #9aa5b1; }

/* Final CTA */
.lt-final-cta {
  text-align: center; padding: clamp(64px, 10vmin, 120px) 24px;
  background: linear-gradient(345deg, #005b95 0%, #000636 50%, #004a83 100%);
}
.lt-final-cta .lt-pretitle { margin-bottom: 12px; }
.lt-final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  margin-bottom: 32px; line-height: 1.1;
}
.lt-final-form {
  display: flex; flex-wrap: wrap; gap: 12px; max-width: 520px; margin: 0 auto;
  justify-content: center;
}
.lt-final-form input { flex: 1; min-width: 220px; margin-bottom: 0; }

/* Page hero */
.lt-page-hero {
  padding: 140px 0 72px; background: linear-gradient(345deg, rgba(0,91,149,0.5) 0%, var(--navy-deep) 60%);
  border-bottom: 1px solid rgba(1,175,233,0.15);
}
.lt-page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; margin-bottom: 14px; }
.lt-page-hero p { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }
.lt-breadcrumb {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}

.lt-notice {
  padding: 18px 22px; border-left: 3px solid var(--cyan);
  background: rgba(1,175,233,0.08); font-size: 14px; color: var(--text-muted);
  margin-top: 24px;
}
.lt-checklist li {
  padding: 8px 0 8px 24px; position: relative; color: var(--text-muted);
}
.lt-checklist li::before {
  content: "◆"; position: absolute; left: 0; color: var(--cyan); font-size: 8px; top: 12px;
}
.lt-section-light .lt-checklist li { color: #5a6572; }
.lt-section-light .lt-checklist li::before { color: var(--blue); }

/* Footer */
.lt-footer {
  padding: 64px 0 32px; border-top: 1px solid rgba(1,175,233,0.15);
  background: var(--navy-deep);
}
.lt-footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px;
  margin-bottom: 48px;
}
.lt-footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-top: 12px; }
.lt-footer h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.lt-footer a {
  display: block; padding: 5px 0; font-size: 14px; color: var(--text-muted);
  transition: color 0.2s;
}
.lt-footer a:hover { color: var(--white); }
.lt-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.lt-footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35); padding: 0;
  font-size: 14px; font-weight: 700; transition: all 0.2s;
}
.lt-footer-social a:hover { border-color: var(--cyan); background: rgba(1,175,233,0.15); color: var(--cyan); }
.lt-footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.lt-footer-legal { display: flex; gap: 20px; }
.lt-footer-legal a { display: inline; padding: 0; }

/* Mobile nav */
.lt-mobile-nav {
  display: none; position: fixed; inset: 0; top: 80px; z-index: 700;
  background: var(--navy-deep); padding: 24px; overflow-y: auto;
}
.lt-mobile-nav.open { display: block; }
.lt-mobile-nav a {
  display: block; padding: 14px 0; font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lt-mobile-group-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan); padding: 16px 0 8px;
}

@media (min-width: 1113px) {
  .lt-header-phone { display: block; }
}
@media (max-width: 1112px) {
  .lt-nav { display: none; }
  .lt-menu-btn { display: block; }
  .lt-header-actions .lt-btn-white { display: none; }
}
  @media (max-width: 960px) {
  .lt-hero-grid { grid-template-columns: 1fr; }
  .lt-hero-collage { height: 320px; margin-top: 24px; }
  .lt-collage-card:nth-child(n) { width: 140px !important; }
  .lt-collage-card:nth-child(4), .lt-collage-card:nth-child(5) { display: none; }
  .lt-split, .lt-process, .lt-portfolio-grid, .lt-services-grid,
  .lt-industries-grid, .lt-diff-grid, .lt-footer-grid { grid-template-columns: 1fr; }
  .lt-example-card { padding: 28px; }
  .lt-process-nav { flex-direction: row; flex-wrap: wrap; }
  .lt-process-btn { flex: 1; min-width: 140px; }
}
@media (max-width: 766px) {
  .lt-header { height: 60px; }
  .lt-hero { padding-top: 60px; min-height: auto; padding-bottom: 48px; }
  .lt-mobile-nav { top: 60px; }
  .lt-industries-grid { grid-template-columns: 1fr 1fr; }
}
