/* =========================================
   GlobCred v3 – Lendorse-Inspired Layout
   Gold & Green · Editorial · June 2026
   ========================================= */

/* 1. Import v2 base
   ========================================= */
@import url('globcred-styles-v2.css');

/* ── Lendorse-inspired layout overrides ── */

/* Large display hero text */
.hero-heading {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

/* Bigger section headings */
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }

/* ── Pull Quote / Mission Band ── */
.mission-band {
  padding: 100px 0;
  background: #0E1810;
  position: relative; overflow: hidden;
}
.mission-band::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(10,148,97,0.1) 0%, transparent 65%);
  border-radius: 50%;
}
.mission-band .container { position: relative; z-index: 1; max-width: 900px; }
.mission-band-quote {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.025em;
  font-style: italic;
  margin-bottom: 28px;
}
.mission-band-quote em { color: var(--gold-mid); font-style: italic; }
.mission-band-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.72;
}
.mission-band-cta { margin-top: 36px; }

/* ── Lendorse-style numbered steps ── */
.ln-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ln-step {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.ln-step:last-child { border-right: none; }
.ln-step:hover { background: var(--bg); }
.ln-step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--green-border);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.ln-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.ln-step p  { font-size: 0.9rem; color: var(--text-2); line-height: 1.68; }

/* 4-column steps variant */
.ln-steps-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Lendorse-style feature list ── */
.ln-feature-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ln-feature-row {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.ln-feature-row:last-child { border-bottom: none; }
.ln-feature-row:hover { background: var(--bg); }
.ln-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.ln-feature-icon.g  { background: var(--green-light); }
.ln-feature-icon.au { background: var(--gold-light); }
.ln-feature-icon.sl { background: #EEF2FF; }
.ln-feature-icon svg { width: 20px; height: 20px; }
.ln-feature-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.ln-feature-desc  { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ── Lendorse-style testimonial cards ── */
.ln-testimonials { padding: 100px 0; background: var(--bg-alt); }
.ln-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.ln-tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.ln-tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ln-tcard-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.ln-tcard-star  { color: var(--gold); font-size: 0.95rem; }
.ln-tcard-quote {
  font-size: 0.93rem; color: var(--text-2);
  line-height: 1.72; flex: 1; margin-bottom: 24px;
  font-style: italic;
}
.ln-tcard-author { display: flex; align-items: center; gap: 12px; }
.ln-tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--green);
  flex-shrink: 0;
}
.ln-tcard-name    { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.ln-tcard-context { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* ── Lendorse-style split hero ── */
.ln-hero {
  min-height: 92vh;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--bg);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.ln-hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 60% 40%;
  align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.ln-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid var(--green-border);
  color: var(--green); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px; margin-bottom: 24px;
}
.ln-hero h1 { margin-bottom: 22px; }
.ln-hero-sub {
  font-size: 1.1rem; color: var(--text-2);
  line-height: 1.75; max-width: 540px; margin-bottom: 36px;
}
.ln-hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.ln-hero-trust { display: flex; align-items: center; gap: 10px; color: var(--text-3); font-size: 0.83rem; }
.ln-hero-trust img { height: 24px; width: auto; }

/* Hero panel */
.ln-hero-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ln-hero-panel-header {
  background: var(--green); padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.ln-hero-panel-header h4 {
  color: var(--white); font-size: 0.9rem;
  text-transform: none; letter-spacing: 0; font-weight: 700;
}
.ln-hero-panel-body { padding: 4px 0; }
.ln-panel-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.ln-panel-row:last-child { border-bottom: none; }
.ln-panel-row:hover { background: var(--bg); }
.ln-panel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.ln-panel-dot.gold { background: var(--gold); }
.ln-panel-text { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.ln-panel-sub  { font-size: 0.76rem; color: var(--text-3); margin-top: 1px; }

/* ── Lendorse-style stat band ── */
.ln-stat-band {
  padding: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ln-stat-band-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ln-stat-cell {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.ln-stat-cell:last-child { border-right: none; }
.ln-stat-value {
  font-size: 2.4rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.ln-stat-label { font-size: 0.82rem; color: var(--text-3); font-weight: 500; }

/* ── Lendorse-style logo strip ── */
.ln-logo-strip {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.ln-logo-strip-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 32px;
}
.ln-logo-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: center;
}
.ln-logo-item {
  width: 130px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ln-logo-item:hover { border-color: var(--border-md); box-shadow: var(--shadow-sm); }
.ln-logo-item img {
  max-width: 100%; max-height: 32px; object-fit: contain;
  filter: grayscale(80%); opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition);
}
.ln-logo-item:hover img { filter: grayscale(0%); opacity: 1; }

/* ── SEO breadcrumb (visible) ── */
.breadcrumb {
  padding: calc(var(--nav-height) + 16px) 0 0;
  background: var(--bg);
}
.breadcrumb-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-3);
}
.breadcrumb-sep { color: var(--border-md); }
.breadcrumb a { color: var(--text-3); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-current { color: var(--text-2); font-weight: 600; }

/* ── Section with left-border accent ── */
.section-accent {
  padding: 100px 0;
  background: var(--bg);
}
.accent-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.accent-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3);
  padding-left: 16px;
  border-left: 3px solid var(--green);
  line-height: 1.2;
}
.accent-content h2 { margin-bottom: 16px; }
.accent-content p  { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }

/* ── Country flag pills ── */
.country-coverage {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.country-flag-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.84rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px;
  transition: background var(--transition), border-color var(--transition);
}
.country-flag-pill:hover { background: var(--green-light); border-color: var(--green-border); color: var(--green-dark); }

/* ── CTA section – two-col ── */
.ln-cta-split {
  padding: 100px 0;
  background: var(--green);
  position: relative; overflow: hidden;
}
.ln-cta-split::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
}
.ln-cta-split .container { position: relative; z-index: 1; }
.ln-cta-split-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.ln-cta-split h2 { color: var(--white); margin-bottom: 16px; }
.ln-cta-split p  { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.72; margin-bottom: 32px; }
.ln-cta-split-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ln-cta-split-right { display: flex; flex-direction: column; gap: 12px; }
.ln-cta-split-stat {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.ln-cta-split-stat-value { font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.ln-cta-split-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 3px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ln-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .ln-hero-sub   { margin-left: auto; margin-right: auto; }
  .ln-hero-ctas  { justify-content: center; }
  .ln-hero-trust { justify-content: center; }
  .ln-hero-panel { max-width: 460px; margin: 0 auto; }
  .ln-steps { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .ln-step  { border-right: none; border-bottom: 1px solid var(--border); }
  .ln-step:last-child { border-bottom: none; }
  .ln-steps-4 { grid-template-columns: 1fr 1fr; }
  .ln-stat-band-inner { grid-template-columns: repeat(2, 1fr); }
  .ln-stat-cell:nth-child(2) { border-right: none; }
  .ln-stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .ln-stat-cell:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .ln-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 56px auto 0; }
  .accent-layout { grid-template-columns: 1fr; gap: 32px; }
  .ln-cta-split-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ln-hero { padding-top: calc(var(--nav-height) + 40px); }
  .ln-steps-4 { grid-template-columns: 1fr; }
  .ln-stat-band-inner { grid-template-columns: 1fr 1fr; }
  .ln-stat-cell { padding: 24px 20px; }
  .breadcrumb-inner { padding: 0 20px; }
}
