/* ---- GLOBAL ---- */
.lr-page {
  font-family: 'DM Sans', sans-serif;
  background: #080D1A;
  color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.lr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,13,26,0.97);
  position: sticky;
  top: 0;
  z-index: 999;
}
.lr-logo img {
  height: 40px;
  width: auto;
  display: block;
  background: #ffffff;
  border-radius: 4px;
  padding: 3px 10px;
}
.lr-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lr-nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.lr-nav-links a:hover { color: #ffffff; }
.lr-nav-cta {
  background: #3A47A8;
  color: #ffffff !important;
  border: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s;
}
.lr-nav-cta:hover { background: #4f5ec4; }

/* ---- HERO ---- */
.lr-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.lr-hero-left {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0A0F1E;
  position: relative;
}
.lr-hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(110,198,230,0.2);
}
.lr-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6EC6E6;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lr-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #6EC6E6;
  border-radius: 2px;
  flex-shrink: 0;
}
.lr-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 24px;
}
.lr-headline .accent { color: #6EC6E6; }
.lr-subhead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-bottom: 40px;
}
.lr-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lr-btn-primary {
  background: #3A47A8;
  color: #ffffff !important;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s;
}
.lr-btn-primary:hover { background: #4f5ec4; }
.lr-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s;
}
.lr-btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff !important;
}
.lr-hero-right {
  position: relative;
  background: #0C1224;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 560px;
}
.lr-hero-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(110,198,230,0.045) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(110,198,230,0.045) 40px);
  pointer-events: none;
}
.lr-hero-photo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lr-hero-photo-wrap img.project-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.lr-hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(110,198,230,0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.lr-hero-photo-placeholder img {
  width: 160px;
  opacity: 0.1;
  filter: brightness(10);
}
.lr-hero-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(58,71,168,0.18);
  border: 1px solid rgba(58,71,168,0.4);
  border-radius: 8px;
  padding: 16px 20px;
  z-index: 2;
}
.lr-hero-badge2 {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(110,198,230,0.07);
  border: 1px solid rgba(110,198,230,0.2);
  border-radius: 8px;
  padding: 12px 18px;
  z-index: 2;
}
.lr-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #6EC6E6;
  line-height: 1;
}
.lr-badge-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- STATS BAR ---- */
.lr-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #080D1A;
}
.lr-stat {
  padding: 28px 36px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.lr-stat:last-child { border-right: none; }
.lr-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}
.lr-stat-num .accent { color: #6EC6E6; }
.lr-stat-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
  margin-bottom: 0;
}

/* ---- SECTION SHARED ---- */
.lr-section {
  padding: 80px 48px;
  background: #080D1A;
}
.lr-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6EC6E6;
  margin-bottom: 12px;
}
.lr-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 48px;
  line-height: 1.1;
  max-width: 500px;
}

/* ---- SERVICES ---- */
.lr-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}
.lr-service-card {
  background: #0C1224;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none !important;
}
.lr-service-card:hover { background: #0F172E; }
.lr-service-card:hover .lr-service-arrow {
  color: #6EC6E6;
  transform: translate(3px,-3px);
}
.lr-service-icon {
  width: 40px;
  height: 40px;
  background: rgba(58,71,168,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lr-service-icon svg {
  width: 19px;
  height: 19px;
  stroke: #6EC6E6;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lr-service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0;
}
.lr-service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.lr-service-arrow {
  font-size: 16px;
  color: rgba(255,255,255,0.18);
  transition: all 0.2s;
  align-self: flex-end;
  display: block;
}

/* ---- MARKETS ---- */
.lr-markets {
  padding: 0 48px 80px;
  background: #080D1A;
}
.lr-markets-grid {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.lr-market-card {
  flex: 1;
  min-width: 160px;
  background: #0C1224;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
  text-decoration: none !important;
}
.lr-market-card:hover { border-color: rgba(110,198,230,0.38); }
.lr-market-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3A47A8;
  margin-bottom: 4px;
}
.lr-market-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.lr-market-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ---- TESTIMONIALS ---- */
.lr-testimonials {
  padding: 0 48px 80px;
  background: #080D1A;
}
.lr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.lr-tcard {
  background: #0C1224;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lr-tcard-stars {
  color: #3A47A8;
  font-size: 14px;
  letter-spacing: 3px;
}
.lr-tcard-quote {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  flex: 1;
  margin: 0;
}
.lr-tcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lr-tcard-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(58,71,168,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #6EC6E6;
  flex-shrink: 0;
}
.lr-tcard-name {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}
.lr-tcard-role {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ---- CTA / CONTACT ---- */
.lr-cta-section {
  padding: 0 48px 80px;
  background: #080D1A;
}
.lr-cta-box {
  background: linear-gradient(120deg, #0E1838 0%, #0A0F1E 60%);
  border: 1px solid rgba(58,71,168,0.3);
  border-radius: 14px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.lr-cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(58,71,168,0.06);
  pointer-events: none;
}
.lr-cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  max-width: 400px;
  margin: 0 0 12px;
}
.lr-cta-headline .accent { color: #6EC6E6; }
.lr-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  max-width: 360px;
  line-height: 1.65;
  margin: 0;
}
.lr-cta-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

/* Style CF7 / WPForms inside the CTA box */
.lr-cta-form .wpcf7-form-control,
.lr-cta-form input[type="text"],
.lr-cta-form input[type="email"],
.lr-cta-form input[type="tel"],
.lr-cta-form textarea {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  outline: none !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: border-color 0.2s;
}
.lr-cta-form input::placeholder,
.lr-cta-form textarea::placeholder {
  color: rgba(255,255,255,0.25) !important;
}
.lr-cta-form input:focus,
.lr-cta-form textarea:focus {
  border-color: #6EC6E6 !important;
}
.lr-cta-form input[type="submit"],
.lr-cta-form .wpcf7-submit,
.lr-cta-form button[type="submit"] {
  background: #3A47A8 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: 'DM Sans', sans-serif !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s;
}
.lr-cta-form input[type="submit"]:hover,
.lr-cta-form .wpcf7-submit:hover,
.lr-cta-form button[type="submit"]:hover {
  background: #4f5ec4 !important;
}

/* ---- FOOTER ---- */
.lr-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: #080D1A;
}
.lr-footer-logo img {
  height: 34px;
  width: auto;
  background: #fff;
  border-radius: 3px;
  padding: 2px 8px;
  display: block;
  margin-bottom: 8px;
}
.lr-footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}
.lr-footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.lr-footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.lr-footer-links a:hover { color: rgba(255,255,255,0.65); }
.lr-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.lr-creds { display: flex; gap: 8px; }
.lr-cred {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lr-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .lr-nav { padding: 12px 20px; }
  .lr-nav-links { display: none; }
  .lr-hero { grid-template-columns: 1fr; }
  .lr-hero-right { display: none; }
  .lr-headline { font-size: 48px; }
  .lr-hero-left { padding: 48px 24px; }
  .lr-stats { grid-template-columns: repeat(2,1fr); }
  .lr-section { padding: 48px 24px; }
  .lr-services-grid { grid-template-columns: 1fr; }
  .lr-markets { padding: 0 24px 48px; }
  .lr-markets-grid { flex-direction: column; }
  .lr-testimonials { padding: 0 24px 48px; }
  .lr-testimonials-grid { grid-template-columns: 1fr; }
  .lr-cta-section { padding: 0 24px 48px; }
  .lr-cta-box { flex-direction: column; padding: 40px 28px; }
  .lr-cta-form { min-width: unset; width: 100%; }
  .lr-footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .lr-footer-right { align-items: flex-start; }
}
@media (max-width: 540px) {
  .lr-stats { grid-template-columns: 1fr 1fr; }
  .lr-headline { font-size: 40px; }
}