/* ======================================
   IMPLEMENTATION PAGE - CUSTOM STYLES
   ====================================== */

/* HERO */
.impl-hero-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #006daf 0%, #00bce7 100%);
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

.impl-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%);
  pointer-events: none;
}

.impl-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.impl-hero-accent {
  display: none;
}

.impl-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.impl-hero-text {
  display: flex;
  flex-direction: column;
}

.impl-hero-section .eyebrow {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.impl-hero-section h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 28px;
  color: #ffffff;
}

.impl-hero-section h1 span {
  display: block;
  font-weight: 700;
}

.impl-hero-section .hero-text {
  max-width: 100%;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.impl-hero-section .hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
  margin-bottom: 48px;
}

.impl-trust-pillars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.impl-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.impl-pillar svg {
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

/* HERO PHOTO */
.impl-hero-visual {
  position: relative;
}

.impl-hero-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.impl-hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.impl-hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(33, 83, 192, 0.92);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 18px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(4px);
}

/* WHY SELLERS FAIL */
.why-fail-section {
  padding: 88px 0;
  background: #ffffff;
}

.why-fail-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-fail-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--color-charcoal);
}

.why-fail-header .section-label {
  display: none;
}

.why-fail-body {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-gray-500);
  line-height: 1.9;
}

.why-fail-body p {
  margin-bottom: 16px;
}

.why-fail-body p:last-child {
  margin-bottom: 0;
}

.solution-callout {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #00b4d8;
  overflow: hidden;
  background: #fafafa;
}

.solution-callout-inner {
  padding: 40px 48px;
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.85;
  text-align: center;
}

.solution-callout-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2153c0;
  margin-bottom: 16px;
}

.solution-callout-highlight {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2153c0;
  margin-bottom: 16px;
}

.solution-callout-inner p:last-child {
  margin: 0;
  color: var(--color-gray-500);
}

/* IMPLEMENTATION JOURNEY */
.journey-section {
  padding: 88px 0;
  background: #ffffff;
}

.journey-header {
  text-align: center;
  margin-bottom: 64px;
}

.journey-header .section-label {
  display: none;
}

.journey-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--color-charcoal);
}

.journey-header .section-copy {
  display: none;
}

.journey-steps {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journey-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}

.journey-step:last-child {
  padding-bottom: 0;
}

.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 180, 216, 0.05));
}

.journey-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b4d8 0%, #2153c0 100%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

.journey-step-content {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  border-left: 3px solid rgba(0, 180, 216, 0.4);
  padding: 28px 32px;
}

.journey-step-top {
  margin-bottom: 10px;
}

.journey-step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.journey-step-tag {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2153c0;
  letter-spacing: 0.01em;
  margin: 16px 0 0;
}

.journey-step-desc {
  color: var(--color-gray-500);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.journey-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.journey-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--color-gray-500);
}

.journey-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300b4d8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

/* PHOTO GALLERY */
.impl-gallery-section {
  padding: 88px 0;
  background: #111e35;
  color: #ffffff;
}

.impl-gallery-header {
  text-align: center;
  margin-bottom: 52px;
}

.gallery-eyebrow {
  display: block;
  color: #00b4d8;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.impl-gallery-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.impl-gallery-sub {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.8;
}

.impl-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.impl-photo-item {
  position: relative;
  overflow: hidden;
}

.impl-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.impl-photo-item:hover img {
  transform: scale(1.05);
}

.impl-photo-featured {
  grid-row: 1 / 3;
  grid-column: 1;
}

.impl-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impl-gallery-tagline {
  text-align: center;
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* TESTIMONIALS */
.impl-testimonials-section {
  padding: 88px 0;
  background: #111e35;
  color: #ffffff;
}

.impl-testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}

.impl-testimonials-header .section-label {
  display: none;
}

.impl-testimonials-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0;
}

.impl-testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.impl-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.impl-stars {
  color: #00b4d8;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.impl-testimonial-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  font-style: italic;
  margin: 0;
}

.impl-testimonial-author {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impl-author-name {
  font-weight: 700;
  color: #00b4d8;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.impl-author-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* REAL EXPERIENCE */
.real-experience-section {
  padding: 88px 0;
  background: #ffffff;
}

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

.real-experience-header .section-label {
  display: none;
}

.real-experience-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--color-charcoal);
}

.real-experience-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.real-stat-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.real-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b4d8, #2153c0);
}

.real-stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2153c0;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.real-stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.real-stat-sub {
  font-size: 0.88rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin: 0;
}

.real-experience-tagline {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GUARANTEE */
.guarantee-section {
  padding: 88px 0;
  background: #f7f7f7;
}

.guarantee-inner {
  max-width: 760px;
  margin: 0 auto;
}

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

.guarantee-content .section-label {
  display: none;
}

.guarantee-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}

.guarantee-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.guarantee-content p {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.85;
  margin-bottom: 16px;
}

.guarantee-content p:last-child {
  margin-bottom: 0;
}

.guarantee-statement {
  margin-top: 32px;
  padding: 28px 36px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #00b4d8;
  background: #ffffff;
  border-radius: 0 16px 16px 0;
  text-align: left;
}

.guarantee-statement p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0;
}

.guarantee-visual {
  display: none;
}

/* FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, #006daf 0%, #00bce7 100%);
  padding: 84px 0 100px;
}

.final-cta-container {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.final-cta-copy {
  width: 100%;
}

.final-cta-headline {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-cta-subheading {
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  margin-top: 32px;
}

.final-cta-section .final-cta-label {
  display: none;
}

.final-cta-section .final-cta-headline {
  color: #ffffff;
}

.final-cta-section .final-cta-subheading {
  color: rgba(255, 255, 255, 0.85);
}

.final-cta-detail {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 640px;
}

.final-cta-section .btn-primary {
  background: #ffffff;
  color: #2153c0;
  border-color: #ffffff;
}

.final-cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.final-cta-section .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.final-cta-section .final-cta-reassurance,
.final-cta-section .final-cta-proof-line {
  color: rgba(255, 255, 255, 0.7);
}

/* FOOTER */
.footer-tagline-small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* PROOF STRIP - hide if still in markup */
.proof-strip-section {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .real-experience-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impl-hero-container {
    gap: 40px;
  }

  .impl-hero-photo-card {
    height: 440px;
  }

  .impl-photo-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 240px 240px;
  }
}

@media (max-width: 768px) {
  .impl-hero-section {
    padding: 64px 0 52px;
  }

  .impl-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .impl-trust-pillars {
    justify-content: center;
    gap: 20px 28px;
  }

  .impl-hero-photo-card {
    height: 320px;
  }

  .impl-gallery-section {
    padding: 60px 0;
  }

  .impl-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .impl-photo-featured {
    grid-row: 1;
    grid-column: 1 / 3;
  }

  .why-fail-section,
  .journey-section,
  .impl-testimonials-section,
  .real-experience-section,
  .guarantee-section {
    padding: 60px 0;
  }

  .solution-callout-inner {
    padding: 32px 28px;
  }

  .real-experience-stats {
    grid-template-columns: 1fr;
  }

  .journey-step {
    gap: 18px;
  }

  .journey-step-content {
    padding: 24px 22px;
  }

  .journey-step-number {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .journey-step:not(:last-child)::after {
    left: 20px;
    top: 50px;
  }

  .impl-testimonial-card {
    padding: 28px 24px;
  }
}

@media (max-width: 520px) {
  .impl-hero-section h1 {
    font-size: 2.2rem;
  }

  .impl-trust-pillars {
    gap: 16px 24px;
  }

  .impl-pillar {
    font-size: 0.78rem;
  }

  .impl-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }

  .impl-photo-featured {
    grid-row: 1;
    grid-column: 1;
  }

  .guarantee-statement {
    padding: 24px 22px;
  }
}
