/* ============================================
   CROSLOW CONCRETE - Google Ads Landing Page
   High-Converting Mega Landing Page
   ============================================ */

/* --- CSS Variables (matching main site) --- */
:root {
  --primary: #111111;
  --primary-darker: #000000;
  --accent: #22C55E;
  --accent-dark: #16A34A;
  --accent-light: #4ADE80;
  --accent-darker: #166534;
  --white: #fff;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #6b6b6b;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
}

h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }

p { margin-bottom: 16px; }

.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }
.text-center { text-align: center; }
.text-small { font-size: 14px; }
.text-large { font-size: 18px; line-height: 1.7; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.section-tag-dark {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: normal;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

.btn-dark:hover {
  background: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-xl {
  padding: 22px 48px;
  font-size: 20px;
}

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

/* --- Sticky Header --- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gray-900);
  border-bottom: 2px solid rgba(34, 197, 94, 0.2);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.lp-header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
}

.lp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header-logo img {
  height: 40px;
  width: auto;
}

.lp-header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.lp-header-phone svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.lp-header-phone:hover {
  color: var(--accent);
}

.lp-header-btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gray-900);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 58px);
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.hero-trust-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

.hero-trust-text strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}

/* --- Hero Form --- */
.hero-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
  min-width: 0;
}

.hero-form-header {
  text-align: center;
  margin-bottom: 24px;
}

.hero-form-header h3 {
  font-size: 22px;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.hero-form-header p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 0;
}

.hero-form .form-group {
  margin-bottom: 14px;
}

.hero-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all 0.2s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.hero-form textarea {
  resize: vertical;
  min-height: 80px;
}

.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-form .btn {
  margin-top: 4px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

.form-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--accent);
}

/* --- Social Proof Bar --- */
.proof-bar {
  background: var(--gray-900);
  border-top: 2px solid rgba(34, 197, 94, 0.15);
  border-bottom: 2px solid rgba(34, 197, 94, 0.15);
  padding: 20px 0;
  overflow: hidden;
  max-width: 100%;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.proof-item-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.proof-item-text strong {
  color: var(--white);
  font-weight: 800;
}

/* --- Sections (Generic) --- */
.section {
  padding: 80px 0;
  overflow: hidden;
}

.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.section-light {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

/* --- Trust Badges Strip --- */
.trust-strip {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-badge-item {
  text-align: center;
  padding: 24px 16px;
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.08);
  border: 2px solid rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.trust-badge-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.trust-badge-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-badge-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-card-body p {
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Deep Dive Service Sections --- */
.service-deep {
  padding: 80px 0;
  overflow: hidden;
}

.service-deep:nth-child(even) {
  background: var(--gray-50);
}

.service-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-deep-grid > * {
  min-width: 0;
}

.service-deep-grid.reverse {
  direction: rtl;
}

.service-deep-grid.reverse > * {
  direction: ltr;
}

.service-deep-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-deep-images .img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  height: 280px;
}

.service-deep-images .img-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  height: 180px;
}

.service-deep-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-deep-content .section-tag {
  margin-bottom: 16px;
}

.service-deep-content h2 {
  margin-bottom: 16px;
}

.service-deep-content > p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-deep-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-deep-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
  word-break: break-word;
}

.service-deep-features li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-deep-features li span {
  min-width: 0;
}

.service-deep-features li strong {
  color: var(--gray-900);
}

.service-deep-stat-row {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
  margin-top: 8px;
}

.service-deep-stat {
  text-align: center;
}

.service-deep-stat .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.service-deep-stat .label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* --- Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(34, 197, 94, 0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  border: 3px solid var(--accent);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
}

.section-dark .process-step-number {
  background: rgba(34, 197, 94, 0.1);
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.section-dark .process-step p {
  color: rgba(255,255,255,0.5);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #F59E0B;
  fill: #F59E0B;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info {
  font-size: 14px;
}

.testimonial-author-info strong {
  display: block;
  color: var(--gray-900);
}

.testimonial-author-info span {
  color: var(--gray-400);
  font-size: 13px;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.why-card h4 {
  margin-bottom: 10px;
  color: var(--white);
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  flex: 1;
  padding-right: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
}

/* --- CTA Sections --- */
.cta-section {
  padding: 80px 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.cta-content .btn-group {
  justify-content: center;
}

.cta-phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.cta-phone-display svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

/* --- Mid-page CTA Banner --- */
.cta-banner {
  background: var(--accent);
  padding: 40px 0;
  overflow: hidden;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner-text h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 4px;
}

.cta-banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 0;
}

.cta-banner .btn-dark:hover {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
}

/* --- Comparison Table --- */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table thead th {
  background: var(--gray-900);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table thead th:last-child {
  background: var(--accent-darker);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td:last-child {
  background: rgba(34, 197, 94, 0.04);
  font-weight: 600;
  color: var(--accent-darker);
}

.comparison-table .check {
  color: var(--accent);
  font-weight: 700;
}

.comparison-table .cross {
  color: #EF4444;
}

/* --- Guarantee Section --- */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08);
}

.guarantee-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.08);
  border: 3px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 56px;
  height: 56px;
  color: var(--accent);
}

.guarantee-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.guarantee-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0;
}

/* --- Service Area Section --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.area-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Full-Width Form Section --- */
.form-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.form-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-section-info h2 {
  margin-bottom: 16px;
}

.form-section-info > p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-contact-items {
  list-style: none;
}

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.form-contact-item:last-child {
  border-bottom: none;
}

.form-contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.08);
  border: 2px solid rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.form-contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.form-contact-text {
  font-size: 15px;
  color: var(--gray-500);
}

.form-contact-text strong {
  display: block;
  font-size: 17px;
  color: var(--gray-900);
}

.form-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form-box .form-group {
  margin-bottom: 16px;
}

.form-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all 0.2s ease;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-box textarea {
  resize: vertical;
  min-height: 100px;
}

.form-box .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* --- Footer --- */
.lp-footer {
  background: var(--primary-darker);
  padding: 40px 0;
  text-align: center;
  border-top: 2px solid rgba(255,255,255,0.05);
}

.lp-footer p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.lp-footer a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.lp-footer a:hover {
  color: var(--accent);
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gray-900);
  border-top: 2px solid var(--accent);
  padding: 12px 16px;
}

.mobile-sticky-cta .container {
  display: flex;
  gap: 10px;
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
}

/* --- Urgency Banner --- */
.urgency-bar {
  background: linear-gradient(90deg, #F59E0B, #D97706);
  padding: 10px 16px;
  text-align: center;
  overflow: hidden;
}

.urgency-bar p {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.urgency-bar strong {
  text-decoration: underline;
}

/* --- Scroll animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero .btn-group {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .service-deep-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-deep-grid.reverse {
    direction: ltr;
  }

  .service-deep-images {
    max-width: 100%;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-grid::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  /* Header */
  .lp-header {
    padding: 10px 0;
  }

  .lp-header-btn {
    display: none;
  }

  .lp-header-phone {
    font-size: 15px;
    gap: 6px;
  }

  .lp-header-phone svg {
    width: 18px;
    height: 18px;
  }

  .lp-header-cta {
    gap: 12px;
  }

  .lp-header-logo img {
    height: 44px;
  }

  /* Hero form - compact on mobile */
  .hero-form .mobile-hide {
    display: none;
  }

  .hero-form-wrapper {
    padding: 28px 24px;
  }

  .hero-form .form-group {
    margin-bottom: 10px;
  }

  .hero-form .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Urgency bar */
  .urgency-bar p {
    font-size: 12px;
    padding: 0 8px;
  }

  /* Hero */
  .hero {
    padding: 100px 0 48px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-trust-item {
    justify-content: center;
  }

  .hero .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-group .btn {
    width: 100%;
  }

  .hero-form-wrapper {
    max-width: 100%;
  }

  .hero-form .form-row {
    grid-template-columns: 1fr;
  }

  /* Proof bar */
  .proof-bar {
    padding: 16px 0;
  }

  .proof-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    justify-items: center;
  }

  .proof-item {
    gap: 8px;
  }

  .proof-item svg {
    width: 18px;
    height: 18px;
  }

  .proof-item-text {
    font-size: 13px;
  }

  /* Trust badges */
  .trust-strip {
    padding: 32px 0;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-badge-item {
    padding: 16px 8px;
  }

  .trust-badge-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .trust-badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-badge-number {
    font-size: 28px;
  }

  .trust-badge-label {
    font-size: 12px;
  }

  /* Service cards */
  .services-grid {
    gap: 20px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-body {
    padding: 20px 18px;
  }

  .service-card-body h3 {
    font-size: 20px;
  }

  /* Deep dive service sections */
  .service-deep {
    padding: 56px 0;
  }

  .service-deep-images {
    gap: 10px;
  }

  .service-deep-images .img-main {
    height: 220px;
  }

  .service-deep-images .img-secondary {
    height: 140px;
  }

  .service-deep-content h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .service-deep-content > p {
    font-size: 15px;
  }

  .service-deep-features li {
    font-size: 14px;
    padding: 8px 0;
  }

  .service-deep-stat-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .service-deep-stat .number {
    font-size: 26px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 32px 0;
  }

  .cta-banner-text h3 {
    font-size: 22px;
  }

  .cta-banner-text p {
    font-size: 14px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .process-step-number {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .process-step h4 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 13px;
  }

  /* Comparison table - scroll wrapper */
  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 10px;
  }

  /* Why cards */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 28px 24px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item {
    border-radius: var(--radius-sm);
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  /* Service areas */
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .area-item {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Form section */
  .form-section {
    padding: 56px 0;
  }

  .form-box {
    padding: 28px 20px;
  }

  .form-box .form-row {
    grid-template-columns: 1fr;
  }

  /* CTA section */
  .cta-section {
    padding: 56px 0;
  }

  .cta-content h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-content .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-phone-display {
    font-size: 22px;
  }

  /* Footer */
  .lp-footer {
    padding: 28px 0 80px;
  }

  .lp-footer p {
    font-size: 12px;
  }

  /* Mobile sticky CTA */
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 0;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 17px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .guarantee-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  /* Header - bigger logo on small phones */
  .lp-header-logo img {
    height: 40px;
  }

  .lp-header-phone {
    font-size: 14px;
  }

  /* Hero */
  .hero {
    padding: 80px 0 32px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.15;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-trust {
    margin-top: 20px;
    padding-top: 20px;
  }

  .hero-trust-icon {
    width: 34px;
    height: 34px;
  }

  .hero-trust-icon svg {
    width: 15px;
    height: 15px;
  }

  .hero-trust-text {
    font-size: 12px;
  }

  .hero-trust-text strong {
    font-size: 14px;
  }

  .hero-form-wrapper {
    padding: 20px 14px;
  }

  .hero-form-header h3 {
    font-size: 18px;
  }

  .hero-form-header p {
    font-size: 13px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero-form label {
    font-size: 12px;
  }

  .hero-form .form-group {
    margin-bottom: 10px;
  }

  /* Proof bar */
  .proof-bar-inner {
    gap: 8px 12px;
  }

  .proof-item svg {
    width: 16px;
    height: 16px;
  }

  .proof-item-text {
    font-size: 12px;
  }

  /* Process - single column on small phones */
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }

  /* Trust badges compact */
  .trust-badge-number {
    font-size: 24px;
  }

  .trust-badge-icon {
    width: 40px;
    height: 40px;
  }

  .trust-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Service cards */
  .service-card-image {
    height: 180px;
  }

  .service-card-body {
    padding: 18px 14px;
  }

  .service-card-body h3 {
    font-size: 18px;
  }

  .service-card-body p {
    font-size: 13px;
  }

  .service-features li {
    font-size: 13px;
    padding: 6px 0;
  }

  /* Service deep images smaller */
  .service-deep {
    padding: 44px 0;
  }

  .service-deep-images .img-main {
    height: 180px;
  }

  .service-deep-images .img-secondary {
    height: 120px;
  }

  .service-deep-content > p {
    font-size: 14px;
  }

  .service-deep-features li {
    font-size: 13px;
    gap: 8px;
  }

  .service-deep-features li svg {
    width: 16px;
    height: 16px;
  }

  .service-deep-stat .number {
    font-size: 22px;
  }

  .service-deep-stat .label {
    font-size: 11px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 24px 0;
  }

  .cta-banner-text h3 {
    font-size: 20px;
  }

  .cta-banner-text p {
    font-size: 13px;
  }

  /* Guarantee compact */
  .guarantee-box {
    padding: 24px 16px;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.08);
  }

  .guarantee-icon {
    width: 64px;
    height: 64px;
  }

  .guarantee-icon svg {
    width: 28px;
    height: 28px;
  }

  .guarantee-content h3 {
    font-size: 18px;
  }

  .guarantee-content p {
    font-size: 13px;
  }

  /* Why cards */
  .why-card {
    padding: 24px 18px;
  }

  .why-card-icon {
    width: 52px;
    height: 52px;
  }

  .why-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-card h4 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 13px;
  }

  /* Comparison table tighter */
  .comparison-table {
    font-size: 12px;
    min-width: 440px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 8px;
  }

  /* Gallery 2 col tight */
  .gallery-grid {
    gap: 6px;
  }

  .gallery-item {
    border-width: 1px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .testimonial-stars svg {
    width: 16px;
    height: 16px;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 14px;
  }

  .faq-question h4 {
    font-size: 14px;
  }

  .faq-answer-inner {
    padding: 0 14px 14px;
    font-size: 13px;
  }

  /* Areas */
  .area-item {
    padding: 8px 12px;
    font-size: 13px;
  }

  /* Form */
  .form-section {
    padding: 44px 0;
  }

  .form-box {
    padding: 24px 14px;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    padding: 12px 12px;
    font-size: 14px;
  }

  .form-box label {
    font-size: 13px;
  }

  .form-contact-icon {
    width: 40px;
    height: 40px;
  }

  .form-contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .form-contact-text strong {
    font-size: 15px;
  }

  .form-contact-text {
    font-size: 13px;
  }

  /* CTA buttons */
  .cta-section {
    padding: 44px 0;
  }

  .cta-phone-display {
    font-size: 20px;
  }

  .btn-xl {
    padding: 14px 24px;
    font-size: 16px;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Footer */
  .lp-footer {
    padding: 24px 0 72px;
  }

  /* Section tags */
  .section-tag {
    font-size: 11px;
    padding: 4px 12px;
    letter-spacing: 1px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* Mobile sticky CTA */
  .mobile-sticky-cta .btn {
    padding: 12px 12px;
    font-size: 14px;
  }
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
