/**
 * Homepage Styles
 * Sales Fundas Theme by Infineural Technologies
 */

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--navy);
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}
.hero::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,68,128,.4) 0%, transparent 70%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.hero-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.stat-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.stat-num {
  font-family: var(--fd);
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  line-height: 1.4;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem-section {
  background: var(--off);
  padding: 100px 0;
}
.problem-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

/* =========================================================
   TRANSFORMATION SECTION
   ========================================================= */
.transform-section {
  background: var(--white);
  padding: 100px 0;
}
.transform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.transform-body {
  font-size: 17px;
  color: var(--g2);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  background: var(--navy);
  padding: 100px 0;
  background-image: radial-gradient(ellipse at 80% 0%, rgba(26,68,128,.6) 0%, transparent 60%);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}

/* =========================================================
   PROOF SECTION
   ========================================================= */
.proof-section {
  background: var(--off);
  padding: 100px 0;
}
.proof-header {
  text-align: center;
  margin-bottom: 64px;
}
.proof-header .section-intro { margin: 0 auto; }

/* =========================================================
   FOUNDER SECTION
   ========================================================= */
.founder-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.founder-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.photo-frame { position: relative; }
.photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 40px;
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.photo-frame::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: var(--gold-lt);
  border-radius: 12px;
  z-index: -1;
}
.founder-quote {
  font-family: var(--fd);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
  font-style: italic;
}
.founder-body {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-section {
  background: var(--navy);
  padding: 100px 0;
}
.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(200,146,42,.3);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 24px;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

/* =========================================================
   INDUSTRIES STRIP
   ========================================================= */
.industries-strip {
  background: var(--off);
  padding: 72px 0;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ind-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.ind-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ind-icon { font-size: 28px; margin-bottom: 12px; }
.ind-name { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-card        { display: none; }
  .hero             { min-height: auto; padding: 120px 0 80px; }
  .problem-top      { grid-template-columns: 1fr; gap: 40px; }
  .transform-inner  { grid-template-columns: 1fr; gap: 60px; }
  .founder-inner    { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .industry-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .hero-inner { padding: 0 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .industry-grid  { grid-template-columns: repeat(2, 1fr); }
}
