:root {
  --ll-color-primary: #1a2b4a;
  --ll-color-secondary: #e8850c;
  --ll-color-background: #ffffff;
  --ll-color-text-primary: #1a2b4a;
  --ll-color-text-secondary: #5a6a7e;
  --ll-font-heading: "Montserrat", sans-serif;
  --ll-font-body: "Open Sans", sans-serif;
  --ll-color-accent-blue: #2a5caa;
  --ll-color-dark: #0d1a30;
  --ll-color-light-bg: #f4f7fb;
  --ll-color-orange-hover: #ff9a1f;
  --ll-color-border: #e0e6ef;
  --ll-shadow-sm: 0 2px 8px rgba(26, 43, 74, 0.08);
  --ll-shadow-md: 0 8px 30px rgba(26, 43, 74, 0.12);
  --ll-shadow-lg: 0 20px 60px rgba(26, 43, 74, 0.15);
  --ll-radius: 12px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ll-font-body);
  color: var(--ll-color-text-primary);
  background: var(--ll-color-background);
  overflow-x: hidden;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.35s ease;
  background: transparent;
  overflow: visible;
}
.nav.scrolled {
  background: rgba(13, 26, 48, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.nav-logo {
  display: none;
}
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 100px 24px 0;
}
.hero-logo-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}
.hero-logo-picture {
  display: block;
  width: 100%;
  max-width: 600px;
}
.hero-logo-picture .hero-logo-img {
  max-width: none;
}
.hero-inner {
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
}
.nav.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ll-color-secondary);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--ll-color-secondary);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 10px 22px;
  border-radius: 8px;
  background: rgba(13, 26, 48, 0.85);
  border: 1.5px solid var(--ll-color-secondary);
}
.nav-phone:hover {
  background: rgba(232, 133, 12, 0.12);
  border-color: var(--ll-color-orange-hover);
  transform: translateY(-2px);
}
.nav.scrolled .nav-phone {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ll-color-secondary);
}
.nav.scrolled .nav-phone:hover {
  background: rgba(232, 133, 12, 0.15);
  border-color: var(--ll-color-orange-hover);
}
.nav-phone-icon {
  width: 16px;
  height: 16px;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(13, 26, 48, 0.85);
  border: 1.5px solid var(--ll-color-secondary);
}
.nav.scrolled .nav-login {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ll-color-secondary);
}
.nav-login:hover {
  background: rgba(232, 133, 12, 0.12);
  border-color: var(--ll-color-orange-hover);
  transform: translateY(-2px);
}
.nav.scrolled .nav-login:hover {
  background: rgba(232, 133, 12, 0.15);
  border-color: var(--ll-color-orange-hover);
}
.nav-login-icon {
  width: 16px;
  height: 16px;
}
.nav-cta {
  display: inline-block;
  background: var(--ll-color-secondary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--ll-color-secondary);
}
.nav-cta:hover {
  background: transparent;
  color: var(--ll-color-secondary);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger-line {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav.scrolled .nav-hamburger-line {
  background: #fff;
}
.hero {
  position: relative;
  min-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--ll-color-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.18);
  transform-origin: center center;
  opacity: 0.3;
  display: block;
}
.hero-bg-media {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 26, 48, 0.92) 0%, rgba(26, 43, 74, 0.8) 50%, rgba(42, 92, 170, 0.7) 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 133, 12, 0.15);
  border: 1px solid rgba(232, 133, 12, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--ll-color-secondary);
  font-family: var(--ll-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.hero-badge-icon {
  width: 18px;
  height: 18px;
}
.hero-title {
  font-family: var(--ll-font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title-highlight {
  background: linear-gradient(135deg, var(--ll-color-secondary), var(--ll-color-orange-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ll-color-secondary), #ff9a1f);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(232, 133, 12, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 133, 12, 0.5);
}
.btn-primary-icon {
  width: 20px;
  height: 20px;
}
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary-outline:hover {
  border-color: var(--ll-color-secondary);
  color: var(--ll-color-secondary);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  text-align: left;
}
.hero-stat-num {
  font-family: var(--ll-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ll-color-secondary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  box-shadow: var(--ll-shadow-lg);
}
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--ll-shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-float-card-1 {
  bottom: 30px;
  left: -20px;
}
.hero-float-card-2 {
  top: 30px;
  right: -20px;
  animation-delay: 1.5s;
}
.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon-orange {
  background: rgba(232, 133, 12, 0.12);
}
.hero-float-icon-blue {
  background: rgba(42, 92, 170, 0.12);
}
.hero-float-text-val {
  font-family: var(--ll-font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ll-color-text-primary);
}
.hero-float-text-lbl {
  font-size: 0.75rem;
  color: var(--ll-color-text-secondary);
}
.trust-bar {
  background: var(--ll-color-light-bg);
  padding: 40px 24px;
  border-bottom: 1px solid var(--ll-color-border);
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.trust-bar-label {
  font-family: var(--ll-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ll-color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.trust-item:hover {
  opacity: 0.8;
}
.trust-item-icon {
  width: 28px;
  height: 28px;
}
.trust-item-text {
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ll-color-text-primary);
}
.section {
  padding: 100px 24px;
}
.section-services {
  padding: 80px 24px 80px;
}
.section-services .section-header {
  margin-bottom: 40px;
}
.section-dark {
  background: var(--ll-color-dark);
  color: #fff;
}
.section-light {
  background: var(--ll-color-light-bg);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ll-color-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-eyebrow-icon {
  width: 20px;
  height: 20px;
}
.section-title {
  font-family: var(--ll-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--ll-color-text-secondary);
  line-height: 1.7;
}
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: var(--ll-radius);
  padding: 32px;
  transition: all 0.35s ease;
  border: 1px solid var(--ll-color-border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ll-color-secondary), var(--ll-color-accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ll-shadow-md);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-primary {
  border-color: rgba(232, 133, 12, 0.25);
  background: linear-gradient(160deg, #fff 0%, rgba(232, 133, 12, 0.04) 100%);
}
.service-card-primary .service-icon-wrap {
  background: linear-gradient(135deg, var(--ll-color-secondary), var(--ll-color-orange-hover));
}
.service-card-primary .service-icon-wrap img {
  filter: brightness(0) invert(1);
}
.service-card-supporting {
  background: #fff;
  border-color: var(--ll-color-border);
}
.service-card-supporting .service-icon-wrap {
  background: rgba(42, 92, 170, 0.1);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 133, 12, 0.1), rgba(42, 92, 170, 0.1));
}
.service-icon {
  width: 24px;
  height: 24px;
}
.service-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-title {
  font-family: var(--ll-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ll-color-text-primary);
  line-height: 1.3;
}
.service-desc {
  color: var(--ll-color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}
.service-primary-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ll-font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ll-color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.service-support-label {
  color: var(--ll-color-accent-blue);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--ll-shadow-lg);
}
.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ll-color-secondary);
  color: #fff;
  padding: 20px 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(232, 133, 12, 0.4);
}
.why-image-badge-num {
  font-family: var(--ll-font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.why-image-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 133, 12, 0.1);
}
.why-item-icon {
  width: 24px;
  height: 24px;
}
.why-item-title {
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--ll-color-text-primary);
}
.why-item-desc {
  color: var(--ll-color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: linear-gradient(90deg, var(--ll-color-secondary), var(--ll-color-accent-blue), var(--ll-color-secondary), var(--ll-color-accent-blue));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--ll-color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ll-color-secondary);
  box-shadow: 0 8px 25px rgba(232, 133, 12, 0.3);
}
.step-num {
  font-family: var(--ll-font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ll-color-secondary);
}
.step-title {
  font-family: var(--ll-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.result-card {
  text-align: center;
  background: #fff;
  border-radius: var(--ll-radius);
  padding: 40px 24px;
  border: 1px solid var(--ll-color-border);
  transition: all 0.3s ease;
}
.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ll-shadow-md);
}
.result-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--ll-color-secondary), var(--ll-color-orange-hover));
}
.result-icon {
  width: 26px;
  height: 26px;
}
.result-number {
  font-family: var(--ll-font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ll-color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  color: var(--ll-color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ll-radius);
  padding: 36px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-star {
  width: 20px;
  height: 20px;
}
.testimonial-quote {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(232, 133, 12, 0.4);
}
.testimonial-name {
  font-family: var(--ll-font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.testimonial-role {
  color: var(--ll-color-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--ll-color-primary) 0%, var(--ll-color-accent-blue) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(232, 133, 12, 0.08);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 133, 12, 0.06);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: var(--ll-font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-form-wrap {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-input {
  padding: 16px 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--ll-font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
}
.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.cta-input:focus {
  border-color: var(--ll-color-secondary);
}
.cta-select {
  padding: 16px 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--ll-font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("https://icons.ll-assets.com/lucide/chevron-down.svg?color=%23ffffff");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}
.cta-select option {
  background: var(--ll-color-dark);
  color: #fff;
  padding: 12px;
}
.cta-select:focus {
  border-color: var(--ll-color-secondary);
}
.cta-form-stacked {
  grid-template-columns: 1fr;
}
.cta-input-full {
  grid-column: 1 / -1;
}
.cta-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ll-color-secondary), #ff9a1f);
  color: #fff;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(232, 133, 12, 0.35);
  cursor: pointer;
}
.cta-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 133, 12, 0.5);
}
.cta-submit-icon {
  width: 20px;
  height: 20px;
}
.cta-consent-wrap {
  grid-column: 1 / -1;
  margin-top: 8px;
}
.cta-required-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}
.cta-consent-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 16px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}
.cta-consent-label:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
.cta-consent-label.checked {
  border-color: var(--ll-color-secondary);
  background: rgba(232, 133, 12, 0.06);
}
.cta-consent-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-consent-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cta-consent-label.checked .cta-consent-checkbox {
  background: var(--ll-color-secondary);
  border-color: var(--ll-color-secondary);
}
.cta-consent-checkmark {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cta-consent-label.checked .cta-consent-checkmark {
  opacity: 1;
}
.cta-consent-text {
  width: 100%;
}
.cta-consent-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 10px;
  padding-left: 4px;
  display: none;
  align-items: center;
  gap: 6px;
}
.cta-consent-error.visible {
  display: flex;
}
.cta-consent-error-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.cta-note-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.cta-note-link:hover {
  color: var(--ll-color-secondary);
}
.cta-form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-form-footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.cta-form-footer-link:hover {
  color: var(--ll-color-secondary);
  text-decoration: underline;
}
.cta-form-footer-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}
.cta-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  animation: successFadeIn 0.6s ease forwards;
}
.cta-success.visible {
  display: flex;
}
.cta-success-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.35);
  animation: successPop 0.5s ease 0.2s both;
}
.cta-success-check {
  width: 44px;
  height: 44px;
}
.cta-success-title {
  font-family: var(--ll-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-success-msg {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
}
.cta-success-details {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-success-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.cta-success-detail-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.midpage-cta-section {
  padding: 60px 24px;
  background: var(--ll-color-light-bg);
  border-top: 1px solid var(--ll-color-border);
  border-bottom: 1px solid var(--ll-color-border);
}
.midpage-cta-dark {
  background: var(--ll-color-dark);
  border-color: rgba(255, 255, 255, 0.08);
}
.midpage-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.midpage-cta-text {
  font-family: var(--ll-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ll-color-text-primary);
}
.midpage-cta-dark .midpage-cta-text {
  color: #fff;
}
.midpage-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.footer {
  background: var(--ll-color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social:hover {
  background: var(--ll-color-secondary);
  transform: translateY(-3px);
}
.footer-social-icon {
  width: 18px;
  height: 18px;
}
.footer-col-title {
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--ll-color-secondary);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.footer-bottom-link:hover {
  color: var(--ll-color-secondary);
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 26, 48, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.mobile-menu-close-icon {
  width: 32px;
  height: 32px;
}
.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.mobile-nav-link:hover {
  color: var(--ll-color-secondary);
}
.mobile-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 32px;
  border-radius: 8px;
  background: rgba(13, 26, 48, 0.85);
  border: 1.5px solid var(--ll-color-secondary);
  margin-bottom: 8px;
  text-decoration: none;
}
.mobile-phone-link:hover {
  background: rgba(232, 133, 12, 0.12);
}
.mobile-login-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 32px;
  border-radius: 8px;
  background: rgba(13, 26, 48, 0.85);
  border: 1.5px solid var(--ll-color-secondary);
  text-decoration: none;
}
.mobile-login-link:hover {
  background: rgba(232, 133, 12, 0.12);
}
#ih5qqe {
  display: inline !important;
}
#nv1lg {
  display: none;
}
#ft1lg-3 {
  object-position: 61% 42%;
}
#flb1t-3 {
  display: inline !important;
}
@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .steps-grid::before {
    display: none;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hero-logo-picture {
    max-width: 90%;
  }
  .hero-logo-wrap picture {
    display: block;
    width: 100%;
    max-width: 360px;
  }
  .hero-logo-img {
    width: 100%;
    max-width: 100%;
  }
  .hero-logo-wrap {
    padding: 90px 16px 0;
    overflow: hidden;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .hero-title {
    font-size: 2.25rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-badge {
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    justify-content: center;
  }
  .hero-badge span {
    min-width: 0;
  }
  .hero-inner {
    overflow: hidden;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-image-wrap,
  .hero-image {
    max-width: 100%;
  }
  .hero-float-card {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 24px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-form {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-stat {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .midpage-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .midpage-cta-text {
    font-size: 1.25rem;
  }
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.18;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-logo-wrap picture {
    max-width: 270px;
  }
  .hero-badge {
    max-width: 270px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.78rem;
  }
  .hero-desc {
    font-size: 1rem;
    max-width: 270px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary-outline {
    justify-content: center;
    width: 100%;
    max-width: 270px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .section {
    padding: 60px 16px;
  }
  .cta-section {
    padding: 60px 16px;
  }
  .cta-form-wrap {
    padding: 24px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* Static export performance fixes */
#i51ap4 {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.form-embed-wrap {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px;
  min-height: 634px;
}
.form-embed-wrap iframe {
  width: 100%;
  height: 634px;
  border: none;
  border-radius: 8px;
  display: block;
}
.form-embed-placeholder {
  width: 100%;
  min-height: 634px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.hero-logo-img,
.hero-bg,
.hero-image,
.why-image,
.testimonial-avatar {
  height: auto;
}
.footer-brand-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
}

/* Footer logo sizing: do not inherit hero image dimensions */
.footer-brand-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
}


@media (max-width: 768px) {
  .hero-bg {
    object-position: center 35%;
    transform: scale(1.22);
  }
}


/* Main-site additions */


/* Premium roofing design upgrade */
:root {
  --premium-ink: #f8fafc;
  --premium-muted: rgba(248, 250, 252, 0.74);
  --premium-soft: rgba(248, 250, 252, 0.12);
  --premium-line: rgba(248, 250, 252, 0.16);
  --premium-orange: var(--ll-color-secondary);
  --premium-blue: #65a4ff;
  --premium-black: #030813;
  --premium-navy: #07111f;
  --premium-card: rgba(255, 255, 255, 0.095);
  --premium-shadow: 0 32px 120px rgba(0, 0, 0, 0.42);
}

body {
  background: var(--premium-black);
}

html,
body {
  overflow-x: hidden;
}

.nav {
  background: linear-gradient(180deg, rgba(3, 8, 19, 0.86), rgba(3, 8, 19, 0));
}

.nav.scrolled {
  background: rgba(3, 8, 19, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta.nav-audit-cta {
  white-space: nowrap;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 14px 36px rgba(232, 133, 12, 0.26);
}

.nav-cta.nav-audit-cta:hover {
  background: rgba(232, 133, 12, 0.12);
}

.premium-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--premium-black);
  color: var(--premium-ink);
  padding: 142px 24px 82px;
  isolation: isolate;
}

.premium-hero-media,
.premium-hero-video,
.premium-hero-bg,
.premium-hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.premium-hero-video,
.premium-hero-bg {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.06) brightness(0.72);
}

.premium-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(232, 133, 12, 0.28), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(42, 92, 170, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(3, 8, 19, 0.98) 0%, rgba(3, 8, 19, 0.86) 38%, rgba(3, 8, 19, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 8, 19, 0.18), rgba(3, 8, 19, 0.88));
  z-index: 1;
}

.premium-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 88%, transparent);
  pointer-events: none;
}

.premium-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 54px;
  align-items: center;
}

.premium-hero-inner > *,
.premium-hero-copy,
.premium-hero-panel,
.premium-chip-row,
.premium-actions {
  min-width: 0;
}

.premium-eyebrow,
.premium-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(232, 133, 12, 0.38);
  border-radius: 999px;
  background: rgba(232, 133, 12, 0.12);
  color: #ffd7a0;
  font-family: var(--ll-font-heading);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 9px 14px;
  margin-bottom: 22px;
}

.premium-title {
  max-width: 820px;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 6.4rem;
  line-height: 0.88;
  letter-spacing: 0;
  margin: 0 0 24px;
  text-wrap: balance;
}

.premium-title span {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #ffcf91 52%, #e8850c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.premium-desc {
  max-width: 680px;
  color: var(--premium-muted);
  font-size: 1.2rem;
  line-height: 1.75;
  margin: 0 0 34px;
}

.premium-actions,
.premium-chip-row,
.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.premium-actions {
  margin-bottom: 30px;
}

.premium-hero .btn-primary,
.premium-section .btn-primary,
.premium-final-cta .btn-primary {
  border-radius: 999px;
  padding: 16px 28px;
  box-shadow: 0 18px 52px rgba(232, 133, 12, 0.34);
}

.premium-hero .btn-secondary-outline,
.premium-section .btn-secondary-outline,
.premium-final-cta .btn-secondary-outline {
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}

.premium-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.07);
  padding: 9px 13px;
  font-weight: 800;
  font-size: 0.88rem;
}

.premium-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--premium-orange);
  box-shadow: 0 0 24px rgba(232, 133, 12, 0.92);
}

.premium-hero-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06)),
    radial-gradient(circle at 30% 10%, rgba(232, 133, 12, 0.18), transparent 28%);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(20px);
  padding: 24px;
  overflow: hidden;
}

.premium-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: translateX(-100%);
  animation: premiumSheen 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes premiumSheen {
  0%, 54% { transform: translateX(-100%); }
  72%, 100% { transform: translateX(100%); }
}

.premium-panel-top,
.premium-window-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.premium-panel-label {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-panel-status {
  color: #77f7b6;
  border: 1px solid rgba(119, 247, 182, 0.34);
  border-radius: 999px;
  background: rgba(119, 247, 182, 0.1);
  padding: 7px 11px;
  font-weight: 900;
  font-size: 0.78rem;
}

.premium-call-card {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(3, 8, 19, 0.46);
  padding: 20px;
}

.premium-call-query {
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 10px;
}

.premium-call-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.premium-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.premium-dashboard-tile {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  padding: 16px;
}

.premium-dashboard-tile strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 1.22rem;
  margin-bottom: 6px;
}

.premium-dashboard-tile span {
  color: rgba(255,255,255,0.64);
  font-size: 0.86rem;
  line-height: 1.4;
}

.premium-route {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.premium-route-step {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  background: rgba(255,255,255,0.07);
  padding: 12px 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.premium-route-step b {
  color: #fff;
}

.premium-edge-bar {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 18px 24px;
  background: rgba(3, 8, 19, 0.94);
  border-block: 1px solid rgba(255,255,255,0.1);
}

.premium-edge-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.premium-edge-item {
  min-height: 86px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
  padding: 15px;
}

.premium-edge-item strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  margin-bottom: 5px;
}

.premium-edge-item span {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.premium-section {
  position: relative;
  overflow: hidden;
  padding: 112px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(42, 92, 170, 0.22), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(232, 133, 12, 0.14), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #030813 100%);
}

.premium-section-light {
  background:
    linear-gradient(135deg, rgba(3,8,19,0.96), rgba(10,24,45,0.9)),
    url('../contractor-team.webp') center/cover no-repeat;
}

.premium-section-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.premium-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: center;
}

.premium-section-title {
  max-width: 920px;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-wrap: balance;
}

.premium-section-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
  line-height: 1.78;
  max-width: 760px;
  margin: 0;
}

.premium-card-grid,
.premium-job-grid,
.premium-proof-grid,
.premium-system-grid {
  display: grid;
  gap: 20px;
}

.premium-card-grid,
.premium-job-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-system-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
}

.premium-glass-card,
.premium-job-card,
.premium-proof-card,
.premium-system-node,
.premium-window {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  background: rgba(255,255,255,0.085);
  box-shadow: 0 26px 90px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}

.premium-glass-card,
.premium-job-card,
.premium-proof-card {
  padding: 28px;
}

.premium-glass-card strong,
.premium-job-card strong,
.premium-proof-card strong,
.premium-system-node strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.premium-glass-card p,
.premium-job-card p,
.premium-proof-card p,
.premium-system-node span {
  color: rgba(255,255,255,0.69);
  line-height: 1.66;
  margin: 0;
}

.premium-system-node {
  position: relative;
  min-height: 166px;
  padding: 24px;
}

.premium-system-node::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--premium-orange);
  color: #fff;
  font-family: var(--ll-font-heading);
  font-weight: 900;
  margin-bottom: 18px;
}

.premium-window {
  overflow: hidden;
}

.premium-window-top {
  padding: 16px 18px;
  background: rgba(3, 8, 19, 0.48);
}

.premium-window-dots {
  display: flex;
  gap: 7px;
}

.premium-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}

.premium-window-body {
  padding: 24px;
}

.premium-report-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.premium-report-row:last-child {
  border-bottom: 0;
}

.premium-report-row strong {
  color: #fff;
  font-family: var(--ll-font-heading);
}

.premium-report-row span {
  color: rgba(255,255,255,0.64);
}

.premium-report-pill {
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff !important;
  background: rgba(232,133,12,0.18);
  border: 1px solid rgba(232,133,12,0.28);
  font-weight: 900;
}

.premium-founder-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.premium-avatar,
.premium-avatar-initials {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(232,133,12,0.3), rgba(42,92,170,0.38));
}

.premium-avatar-initials {
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-weight: 900;
  font-size: 2.1rem;
}

.premium-final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,133,12,0.26), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(42,92,170,0.32), transparent 30%),
    linear-gradient(135deg, #040914, #0b1d36);
}

.premium-final-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.premium-final-cta .form-embed-wrap {
  max-width: 860px;
  margin: 34px auto 0;
}

.premium-page-intro {
  padding: 28px 24px;
  background: rgba(3,8,19,0.96);
  border-block: 1px solid rgba(255,255,255,0.09);
}

.premium-page-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.premium-page-intro-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  padding: 18px;
}

.premium-page-intro-card strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  margin-bottom: 6px;
}

.premium-page-intro-card span {
  color: rgba(255,255,255,0.66);
  line-height: 1.5;
}

.page-hero {
  min-height: 640px;
  background:
    radial-gradient(circle at 72% 18%, rgba(232,133,12,0.26), transparent 25%),
    radial-gradient(circle at 18% 76%, rgba(42,92,170,0.34), transparent 34%),
    linear-gradient(115deg, rgba(3,8,19,0.98), rgba(7,17,32,0.92)),
    url('../hero-bg-1200.webp') center/cover no-repeat !important;
}

.page-title {
  font-size: 4.8rem !important;
  line-height: 0.94 !important;
  letter-spacing: 0 !important;
}

.page-card,
.result-card,
.contact-panel,
.audit-deliverable,
.metric-card,
.red-flag-card,
.system-flow-step,
.faq-card,
.comparison-card {
  border-radius: 24px !important;
  box-shadow: 0 26px 90px rgba(0,0,0,0.19) !important;
}

@media (max-width: 1180px) {
  .premium-hero-inner,
  .premium-section-split {
    grid-template-columns: 1fr;
  }

  .premium-hero-panel {
    max-width: 680px;
  }

  .premium-edge-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-system-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .premium-card-grid,
  .premium-job-grid,
  .premium-proof-grid,
  .premium-page-intro-inner {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    padding-top: 118px;
  }

  .premium-title {
    font-size: 3.5rem;
  }

  .premium-section-title {
    font-size: 3.15rem;
  }

  .page-title {
    font-size: 3.35rem !important;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    width: min(330px, calc(100vw - 36px));
    max-width: min(330px, calc(100vw - 36px));
    padding-left: 0;
    padding-right: 14px;
  }

  .premium-hero,
  .premium-section,
  .premium-final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .premium-hero {
    max-width: 100vw;
  }

  .premium-hero-inner {
    gap: 34px;
    max-width: calc(100vw - 36px);
  }

  .premium-hero-copy,
  .premium-hero-panel,
  .premium-title,
  .premium-desc,
  .premium-actions,
  .premium-chip-row {
    width: min(330px, calc(100vw - 36px));
    max-width: min(330px, calc(100vw - 36px));
  }

  .premium-eyebrow,
  .premium-pill {
    width: min(330px, calc(100vw - 36px));
    max-width: min(330px, calc(100vw - 36px));
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
  }

  .premium-actions .btn-primary,
  .premium-actions .btn-secondary-outline,
  .premium-final-cta .btn-primary,
  .premium-final-cta .btn-secondary-outline {
    width: 100%;
    justify-content: center;
  }

  .premium-title {
    font-size: 2.05rem;
    line-height: 1;
    text-wrap: normal;
  }

  .premium-section-title {
    font-size: 2.35rem;
  }

  .page-title {
    font-size: 2.35rem !important;
  }

  .premium-desc {
    font-size: 1.02rem;
  }

  .premium-chip-row {
    align-items: stretch;
  }

  .premium-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .premium-edge-inner,
  .premium-system-grid,
  .premium-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .premium-hero-panel,
  .premium-glass-card,
  .premium-job-card,
  .premium-proof-card,
  .premium-window-body {
    padding: 20px;
  }

  .premium-founder-card,
  .premium-report-row {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2.45rem !important;
  }
}



/* Roofing positioning upgrade */
.roofing-proof-strip,
.roofing-trust-matrix,
.audit-deliverables,
.metrics-grid,
.red-flag-grid,
.system-flow-grid,
.comparison-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.roofing-proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.roofing-proof-item,
.audit-deliverable,
.metric-card,
.red-flag-card,
.system-flow-step,
.faq-card,
.comparison-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.roofing-proof-item strong,
.metric-card strong,
.system-flow-step strong,
.red-flag-card strong,
.faq-card strong,
.comparison-card strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.roofing-proof-item span,
.metric-card span,
.system-flow-step span,
.red-flag-card span,
.faq-card span,
.comparison-card span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.trust-matrix-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.trust-matrix-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.trust-matrix-list li::before {
  content: '✓';
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 133, 12, 0.14);
  color: var(--ll-color-secondary);
  font-weight: 900;
}

.audit-deliverables,
.metrics-grid,
.red-flag-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: systemStep;
}

.system-flow-step {
  position: relative;
  padding-top: 48px;
}

.system-flow-step::before {
  counter-increment: systemStep;
  content: counter(systemStep);
  position: absolute;
  top: 20px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ll-color-secondary);
  font-family: var(--ll-font-heading);
  font-weight: 900;
}

.audit-page-callout {
  border: 1px solid rgba(232, 133, 12, 0.38);
  border-radius: 26px;
  padding: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 133, 12, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(5, 14, 28, 0.98), rgba(26, 43, 74, 0.94));
}

.audit-page-callout .section-title,
.audit-page-callout .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.proof-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
}

.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .roofing-proof-strip,
  .audit-deliverables,
  .metrics-grid,
  .red-flag-grid,
  .faq-grid,
  .system-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .roofing-proof-strip,
  .audit-deliverables,
  .metrics-grid,
  .red-flag-grid,
  .faq-grid,
  .system-flow-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --ll-font-heading: "Aptos Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ll-font-body: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.nav-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-link .nav-logo {
  display: block;
  height: 44px;
  width: auto;
}

.nav-links {
  gap: 22px;
}

.nav-link.active,
.mobile-nav-link.active,
.nav-cta.active,
.footer-link.active,
.footer-bottom-link.active {
  color: var(--ll-color-secondary);
}

.nav-cta.active {
  background: transparent;
}

.trust-bar {
  background:
    linear-gradient(135deg, rgba(5, 14, 28, 0.98), rgba(13, 26, 48, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-label,
.trust-item-text {
  color: #fff;
}

.trust-item {
  color: #fff;
}

.trust-item-icon {
  filter: brightness(0) saturate(100%) invert(61%) sepia(93%) saturate(911%) hue-rotate(356deg) brightness(94%) contrast(94%);
}

.page-hero {
  min-height: 560px;
  padding: 170px 24px 105px;
  background:
    linear-gradient(90deg, rgba(5, 14, 28, 0.97) 0%, rgba(13, 26, 48, 0.93) 44%, rgba(26, 43, 74, 0.76) 100%),
    url("../hero-bg-1200.webp") center center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(232, 133, 12, 0.22), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(42, 92, 170, 0.22), transparent 28%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(5, 14, 28, 0.42));
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--ll-color-secondary);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(232, 133, 12, 0.18);
  border: 1px solid rgba(232, 133, 12, 0.36);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.page-title {
  font-family: var(--ll-font-heading);
  font-size: 4.3rem;
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 900px;
  margin-bottom: 22px;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.page-subtitle {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-section {
  padding: 90px 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(42, 92, 170, 0.22), transparent 30%),
    linear-gradient(180deg, #10213b 0%, var(--ll-color-dark) 100%);
  color: #fff;
}

.page-section-light {
  background:
    linear-gradient(135deg, rgba(5, 14, 28, 0.95), rgba(13, 26, 48, 0.92)),
    url("../contractor-team.webp") center center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-section-dark {
  background:
    linear-gradient(135deg, rgba(5, 14, 28, 0.96), rgba(26, 43, 74, 0.92)),
    url("../hero-bg-1200.webp") center center / cover no-repeat;
  color: #fff;
}

.page-section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(232, 133, 12, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(5, 14, 28, 0.08), rgba(5, 14, 28, 0.42));
  pointer-events: none;
}

.page-section-light .page-inner,
.page-section-dark .page-inner {
  position: relative;
  z-index: 1;
}

.page-section-light .section-title,
.page-section-light .section-subtitle,
.page-section-light .page-card-title,
.page-section-light .page-card-text,
.page-section-light .feature-item,
.page-section-light .feature-item strong {
  color: #fff;
}

.page-section-light .section-subtitle,
.page-section-light .page-card-text,
.page-section-light .feature-item {
  color: rgba(255, 255, 255, 0.78);
}

.page-section-dark .section-title,
.page-section-dark .section-subtitle,
.page-section-dark .page-card-title,
.page-section-dark .page-card-text {
  color: #fff;
}

.page-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-section .section-title,
.page-section .section-subtitle,
.page-section .page-card-title,
.page-section .page-card-text,
.page-section .feature-item,
.page-section .feature-item strong,
.page-section .simple-content,
.page-section .simple-content h2,
.page-section .simple-content h3,
.page-section .simple-content p,
.page-section .simple-content li {
  color: #fff;
}

.page-section .section-subtitle,
.page-section .page-card-text,
.page-section .feature-item,
.page-section .simple-content,
.page-section .simple-content p,
.page-section .simple-content li {
  color: rgba(255, 255, 255, 0.76);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.page-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-section-light .page-card,
.page-section-dark .page-card,
.page-section-light .contact-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ll-shadow-lg);
  border-color: rgba(232, 133, 12, 0.24);
}

.service-page-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.service-page-card-link {
  text-decoration: none;
  color: inherit;
}

.service-page-card .service-primary-label {
  margin-bottom: 16px;
}

.service-page-card .service-support-label {
  color: var(--ll-color-accent);
}

.service-page-card .page-card-link {
  margin-top: auto;
}

.page-card-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.page-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(232, 133, 12, 0.11);
}

.page-card-title {
  font-family: var(--ll-font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.page-card-text {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
  margin-bottom: 18px;
}

.page-card-link {
  color: var(--ll-color-secondary);
  font-weight: 800;
  text-decoration: none;
}

.page-card-link:hover {
  color: var(--ll-color-orange-hover);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(232, 133, 12, 0.12);
  color: var(--ll-color-secondary);
  font-weight: 900;
}

.feature-item strong {
  color: #fff;
}

.page-callout {
  border-radius: 26px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(5, 14, 28, 0.95), rgba(26, 43, 74, 0.9)),
    url("../contractor-team.webp") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-callout .section-title,
.page-callout .section-subtitle {
  color: #fff;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-stat-value {
  font-family: var(--ll-font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  color: #fff;
}

.mini-stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-top: 6px;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 28px;
}

.text-link-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.text-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  font-weight: 800;
}

.text-link-list a:hover {
  border-color: rgba(232, 133, 12, 0.34);
  color: var(--ll-color-secondary);
}

.simple-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ll-color-text-secondary);
  line-height: 1.8;
}

.simple-content h2,
.simple-content h3 {
  color: var(--ll-color-primary);
  font-family: var(--ll-font-heading);
  margin: 34px 0 12px;
}

.simple-content p,
.simple-content li {
  margin-bottom: 14px;
}

.simple-content ul {
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: start;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.contact-calendar-panel {
  grid-column: 1 / -1;
  max-width: 1040px;
  justify-self: center;
  width: 100%;
}

.calendar-after-submit {
  display: block;
  margin-top: 10px;
}

.calendar-after-submit[hidden] {
  display: none !important;
}

.calendar-after-submit.is-visible {
  display: block;
}

.calendar-after-submit .section-title {
  max-width: 820px;
  font-size: 2.35rem;
}

.calendar-after-submit .section-subtitle {
  max-width: 820px;
  margin: 10px 0 0;
  text-align: left;
}

.calendar-embed-wrap {
  width: 100%;
  min-height: 682px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.calendar-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 740px;
  margin-top: -42px;
  border: 0;
}

.about-hero-note {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ll-color-text-secondary);
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: center;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.operator-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: stretch;
}

.operator-card-featured {
  grid-column: 1 / -1;
  max-width: 760px;
  justify-self: center;
}

.operator-photo,
.operator-photo-placeholder {
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 133, 12, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(42, 92, 170, 0.42), rgba(7, 17, 32, 0.88));
}

.operator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.operator-photo-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--ll-font-heading);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0;
}

.operator-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.operator-title {
  margin: 6px 0 18px;
  color: var(--ll-color-secondary);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.operator-bio {
  color: var(--ll-color-text-secondary);
  line-height: 1.7;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.linkedin-link:hover {
  color: var(--ll-color-secondary);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(232, 133, 12, 0.28);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
}

.link-pill:hover {
  border-color: rgba(232, 133, 12, 0.72);
  color: var(--ll-color-secondary);
}

.footer-contact-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sitemap-list {
  columns: 2;
  column-gap: 60px;
  list-style: none;
  padding-left: 0;
}

.sitemap-list li {
  break-inside: avoid;
  margin-bottom: 12px;
}

.sitemap-list a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.sitemap-list a:hover {
  color: var(--ll-color-secondary);
}

@media (max-width: 1024px) {
  .page-grid,
  .page-grid-2,
  .split-layout,
  .contact-grid,
  .content-band {
    grid-template-columns: 1fr;
  }

  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .operator-grid {
    grid-template-columns: 1fr;
  }

  .operator-card {
    grid-template-columns: 1fr;
  }

  .operator-photo,
  .operator-photo-placeholder {
    min-height: 280px;
  }

  .page-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    background:
      linear-gradient(90deg, rgba(5, 14, 28, 0.97) 0%, rgba(13, 26, 48, 0.93) 44%, rgba(26, 43, 74, 0.76) 100%),
      url("../hero-bg-800.webp") center center / cover no-repeat;
  }

  .page-title {
    font-size: 2.9rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 120px 18px 70px;
  }

  .page-section {
    padding: 64px 18px;
  }

  .page-hero-inner,
  .page-inner {
    width: 100%;
    max-width: 340px;
    margin-left: 0;
    margin-right: auto;
  }

  .page-actions {
    flex-direction: column;
  }

  .page-title {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .page-card,
  .page-callout,
  .contact-panel {
    padding: 24px;
  }

  .sitemap-list {
    columns: 1;
  }
}



/* User selected premium hero video */
.premium-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #07101f;
}

.premium-hero-video,
.premium-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.premium-hero-video {
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 800ms ease;
}

.premium-hero-video.is-ready {
  opacity: 1;
}

.premium-hero-bg {
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.04);
}

.premium-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.94) 0%, rgba(8, 18, 34, 0.88) 30%, rgba(10, 22, 40, 0.58) 58%, rgba(7, 14, 28, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.58) 0%, rgba(5, 12, 24, 0.20) 25%, rgba(5, 12, 24, 0.80) 100%);
}

.nav-audit-cta {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .premium-hero-video,
  .premium-hero-bg {
    object-position: 62% top;
  }
}

@media (max-width: 768px) {
  .premium-hero-video,
  .premium-hero-bg {
    object-position: 62% top;
  }

  .premium-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 12, 24, 0.88) 0%, rgba(8, 18, 34, 0.64) 38%, rgba(7, 14, 28, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 12, 24, 0.88) 0%, rgba(10, 22, 40, 0.44) 100%);
  }
}


/* Roofing page and lander proof upgrade */
.cpl-table {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.cpl-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
}

.cpl-row strong {
  color: #fff;
  font-family: var(--ll-font-heading);
}

.cpl-row span {
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
}

.page-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.64);
  font-size: 0.95rem;
  line-height: 1.65;
}

.lander-math-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.lander-math-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
}

.lander-math-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.lander-math-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .lander-math-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cpl-row,
  .lander-math-grid {
    grid-template-columns: 1fr;
  }
}


/* Final copy proof math cleanup */
.example-math-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.example-math-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
}

.example-math-card strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.example-math-card span {
  color: rgba(255,255,255,0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.example-math-warning {
  margin-top: 18px;
  color: rgba(255,255,255,0.66);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .example-math-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .example-math-grid {
    grid-template-columns: 1fr;
  }
}


/* Production copy final cleanup */
.performance-review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.performance-review-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
}

.performance-review-card strong {
  display: block;
  color: #fff;
  font-family: var(--ll-font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.performance-review-card span {
  color: rgba(255,255,255,0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.production-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.66);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .performance-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .performance-review-grid {
    grid-template-columns: 1fr;
  }
}


/* Contact scheduler modal */
.contact-scheduler-cta {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.contact-scheduler-cta .contact-schedule-button {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.contact-scheduler-cta p {
  margin-top: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.booking-modal[hidden] {
  display: none !important;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 8, 18, 0.78);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(232,133,12,0.18), transparent 32%),
    linear-gradient(180deg, rgba(18,34,60,0.98), rgba(7,15,28,0.99));
  box-shadow: 0 32px 90px rgba(0,0,0,0.56);
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.booking-modal-header .section-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.booking-modal-header .section-subtitle {
  max-width: 720px;
  margin-top: 8px;
  text-align: left;
}

.booking-modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-close:hover,
.booking-modal-close:focus-visible {
  border-color: rgba(232,133,12,0.8);
  color: var(--ll-color-secondary);
  outline: none;
}

.booking-modal .calendar-embed-wrap {
  margin: 0;
  min-height: 640px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-modal .calendar-embed-wrap iframe {
  min-height: 700px;
}

body.booking-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .booking-modal {
    padding: 14px;
    align-items: start;
  }

  .booking-modal-dialog {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .booking-modal-header {
    padding: 20px;
  }

  .booking-modal .calendar-embed-wrap {
    min-height: 620px;
  }

  .booking-modal .calendar-embed-wrap iframe {
    min-height: 700px;
  }
}


/* Contact scheduler modal polish */
.booking-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  opacity: 0;
  transition: opacity 260ms ease;
}

.booking-modal.is-open .booking-modal-backdrop {
  opacity: 1;
}

.booking-modal-dialog {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 280ms ease,
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-modal.is-open .booking-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal-header .booking-modal-title,
.booking-modal-header #booking-modal-title,
.booking-modal-dialog .section-title {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.38);
}

.booking-modal-header .booking-modal-subtitle,
.booking-modal-header .section-subtitle {
  color: rgba(255,255,255,0.78) !important;
}

.booking-modal-header .section-eyebrow {
  color: var(--ll-color-secondary) !important;
}

.booking-modal .calendar-embed-wrap {
  background: rgba(255,255,255,0.04);
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal,
  .booking-modal-backdrop,
  .booking-modal-dialog {
    transition: none;
  }

  .booking-modal-dialog {
    transform: none;
  }
}
