@charset "UTF-8";
/* ── INDUSTRY UNIQUE SECTIONS ── */
/* 1. Split Section (Image with Floating Review) */
.ind-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ind-split-content h2 {
  margin-bottom: 20px;
}

.ind-split-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.ind-checklist {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ind-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.ind-checklist li i {
  color: var(--gold);
  margin-top: 4px;
}

.ind-split-visual {
  position: relative;
}

.ind-main-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/3.25;
  background: var(--border); /* Placeholder background */
}

/* The Floating Review */
.ind-floating-review {
  position: absolute;
  bottom: 6%;
  left: -40px; /* Overlaps the image and the background */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(26, 26, 46, 0.15);
  padding: 20px;
  width: 320px;
  z-index: 10;
}

/* 2. Comparison Section */
.ind-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ind-comp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.ind-comp-card.old-way {
  background: var(--mist);
  border-color: var(--border-med);
  opacity: 0.85;
}

.ind-comp-card.new-way {
  border-color: var(--gold-border);
  box-shadow: 0 12px 40px rgba(245, 200, 66, 0.12);
  border-width: 2px;
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.comp-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.old-way .comp-header i {
  color: var(--red);
  font-size: 1.5rem;
}

.new-way .comp-header i {
  color: var(--gold);
  font-size: 1.5rem;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.5;
}

.old-way .comp-list li::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--red);
  opacity: 0.5;
}

.new-way .comp-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #27ae60;
}

/* 3. Workflow Timeline */
.ind-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* The connecting line */
.ind-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-med);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 20px;
}

.tl-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px #fff; /* Cuts out the line behind it */
}

.timeline-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
}

/* 4. Local SEO Dark Banner */
.ind-seo-section {
  background: var(--ink);
  color: #fff;
}

.seo-grid {
  padding-top: 68px;
  padding-bottom: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seo-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.seo-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.seo-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seo-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ── RESPONSIVE RULES ── */
@media (max-width: 1024px) {
  .ind-checklist {
    display: none;
  }
  .ind-floating-review {
    bottom: -20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: 400px;
  }
  .ind-seo-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .ind-split-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ind-split-visual img {
    aspect-ratio: 4/2.75;
  }
  .ind-comp-grid {
    grid-template-columns: 1fr;
  }
  .ind-timeline {
    flex-direction: column;
    gap: 40px;
  }
  .ind-timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .ind-floating-review {
    bottom: -50px;
    left: 14px;
    width: auto;
    max-width: 400px;
  }
}/*# sourceMappingURL=styles_industries.css.map */