/*
Theme Name: Parfin Capital
Theme URI: https://parfincapital.in
Author: Naveen
Description: Custom luxury black and gold theme for Parfin Capital – Independent Financial Advisory.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: parfin-capital
*/

/* =============================================
   ROOT TOKENS
   ============================================= */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dim: #8B6E2F;
  --white: #FAFAFA;
  --gray: #999;
  --mid: #1A1A1A;
  --border: rgba(201,168,76,0.25);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Cinzel', 'Georgia', serif; background: var(--black); color: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Cinzel', 'Georgia', serif; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.pc-nav {
  background: var(--black);
  padding: 0 48px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 0;
  padding-bottom: 0;
}
.pc-logo-wrap {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  line-height: 0;
}
.pc-logo-img {
  height: 70px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.pc-nav-links {
  display: flex;
  gap: 32px;
}
.pc-nav-links li a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}
.pc-nav-links li a:hover,
.pc-nav-links li a.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.pc-nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.pc-nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.pc-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 22px;
  padding: 4px;
  line-height: 1;
}

/* Mobile dropdown */
@media (max-width: 900px) {
  .pc-nav { padding: 0 20px; gap: 12px; }
  .pc-nav-toggle { display: flex; align-items: center; }
  .pc-nav-cta { display: none; }

  .pc-nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 16px 20px 20px;
    gap: 0;
    z-index: 999;
  }
  .pc-nav-links.open { display: flex; }
  .pc-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .pc-nav-links li:last-child { border-bottom: none; }
  .pc-nav-links li a {
    display: block;
    padding: 14px 0;
    font-size: 12px;
    letter-spacing: 2px;
    border-bottom: none !important;
  }
  .pc-nav-links li a.active { color: var(--gold); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  cursor: pointer;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  cursor: pointer;
  transition: border-color .2s;
}
.btn-outline:hover { border-color: var(--gold); }

/* =============================================
   SHARED SECTION ELEMENTS
   ============================================= */
.sec-header { text-align: center; margin-bottom: 50px; }
.sec-header .eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sec-header h2 { font-family: 'Cinzel', 'Georgia', serif; font-size: 40px; font-weight: 300; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.gold-rule { width: 50px; height: 1px; background: var(--gold); margin: 0 auto; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--black);
  padding: 80px 48px 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.page-hero .eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.page-hero blockquote {
  font-family: 'Cinzel', 'Georgia', serif; font-size: 30px; font-weight: 300;
  font-style: italic; color: #ccc; max-width: 720px; line-height: 1.6;
}
.page-hero blockquote em { color: var(--gold-light); font-style: normal; font-weight: 500; }
.page-hero p.hero-sub { font-size: 14px; color: #666; margin-top: 20px; font-weight: 300; line-height: 1.8; max-width: 580px; }

/* =============================================
   STATEMENT STRIP
   ============================================= */
.statement-strip { background: var(--gold); padding: 32px 48px; text-align: center; }
.statement-strip p { font-family: 'Cinzel', 'Georgia', serif; font-size: 24px; font-weight: 500; color: var(--black); font-style: italic; line-height: 1.5; }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip { padding: 70px 48px; text-align: center; border-top: 1px solid rgba(201,168,76,0.12); }
.cta-strip h3 { font-family: 'Cinzel', 'Georgia', serif; font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 28px; line-height: 1.5; }
.cta-strip h3 em { color: var(--gold-light); font-style: italic; }
.cta-strip p { font-size: 13px; color: #777; margin-bottom: 28px; font-weight: 300; }

/* =============================================
   FOOTER
   ============================================= */
.pc-footer { background: #050505; padding: 64px 48px 32px; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 44px; }
.footer-brand p { font-size: 15px; color: #cccccc; line-height: 1.9; font-weight: 300; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul li, .footer-col ul li a { display: block; font-size: 15px; color: #cccccc; margin-bottom: 10px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 16px; }
.footer-bottom p { font-size: 14px; color: #aaaaaa; }
.footer-cred { color: #888888 !important; }

/* =============================================
   HOME — HERO
   ============================================= */
.home-hero {
  background: var(--black);
  padding: 100px 48px 90px;
  position: relative; overflow: hidden;
  min-height: 560px; display: flex; flex-direction: column; justify-content: center;
}
.home-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.home-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; position: relative;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.home-hero h1 {
  font-family: 'Cinzel', 'Georgia', serif; font-size: 68px; font-weight: 300;
  line-height: 1.1; color: var(--white); max-width: 650px; margin-bottom: 26px; position: relative;
}
.home-hero h1 em { font-style: italic; color: var(--gold-light); }
.home-hero .hero-sub {
  font-size: 15px; line-height: 1.8; color: #aaa;
  max-width: 520px; margin-bottom: 40px; font-weight: 300; position: relative;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* TRUST BAR */
.trust-bar {
  background: rgba(201,168,76,0.04);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dim); padding: 6px 22px; border-right: 1px solid rgba(201,168,76,0.2);
}
.trust-item:last-child { border-right: none; }

/* THREE COLS */
.three-cols { background: var(--dark); padding: 80px 48px; }
.three-cols-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 40px; }
.col-card { background: var(--black); padding: 40px 30px; border: 1px solid rgba(255,255,255,0.04); position: relative; }
.col-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); opacity: .4; }
.col-num { font-family: 'Cinzel', 'Georgia', serif; font-size: 44px; font-weight: 300; color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 18px; }
.col-title { font-family: 'Cinzel', 'Georgia', serif; font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.col-desc { font-size: 13px; color: #888; line-height: 1.8; font-weight: 300; }

/* NUMBERS */
.numbers-section { background: var(--black); padding: 80px 48px; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15); margin-top: 44px;
}
.number-cell { background: var(--black); padding: 40px 20px; text-align: center; }
.number-val { font-family: 'Cinzel', 'Georgia', serif; font-size: 34px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.number-label { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: #666; line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--dark); padding: 80px 48px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; gap: 16px; }
.faq-q span { font-size: 14px; color: #ddd; font-weight: 400; flex: 1; line-height: 1.5; }
.faq-icon { width: 22px; height: 22px; border: 1px solid var(--gold-dim); color: var(--gold); font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-a { font-size: 13px; color: #888; line-height: 1.9; font-weight: 300; padding-bottom: 20px; max-width: 750px; }
.faq-a.hidden { display: none; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.founder-section { background: var(--dark); padding: 80px 48px; }
.founder-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; margin-top: 44px; }
.founder-photo { background: var(--mid); border: 1px solid var(--border); aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo span { font-size: 10px; letter-spacing: 3px; color: var(--gold-dim); text-transform: uppercase; }
.founder-name { font-family: 'Cinzel', 'Georgia', serif; font-size: 32px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.founder-cred { font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-bottom: 24px; font-weight: 500; line-height: 1.7; }
.founder-bio { font-size: 14px; color: #999; line-height: 1.9; font-weight: 300; margin-bottom: 18px; }
.founder-quote { border-left: 2px solid var(--gold); padding: 16px 20px; background: rgba(201,168,76,0.04); font-family: 'Cinzel', 'Georgia', serif; font-size: 20px; font-style: italic; color: #ccc; margin: 24px 0; line-height: 1.7; }
.founder-detail { font-size: 13px; color: #777; line-height: 1.8; font-weight: 300; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); padding: 18px 20px; margin-top: 18px; }

.different-section { background: var(--black); padding: 80px 48px; }
.different-text { font-size: 15px; color: #999; line-height: 1.9; font-weight: 300; max-width: 740px; margin: 40px auto 0; text-align: center; }

.values-section { background: var(--mid); padding: 80px 48px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 44px; }
.value-card { background: var(--dark); padding: 36px 30px; border: 1px solid rgba(255,255,255,0.04); position: relative; }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .3; }
.value-card h4 { font-family: 'Cinzel', 'Georgia', serif; font-size: 22px; font-weight: 600; color: var(--gold-light); margin-bottom: 12px; }
.value-card p { font-size: 13px; color: #888; line-height: 1.8; font-weight: 300; }

.location-section { background: var(--black); padding: 56px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.location-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.loc-item { text-align: center; }
.loc-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; }
.loc-value { font-family: 'Cinzel', 'Georgia', serif; font-size: 22px; font-weight: 500; color: var(--white); }
.loc-sep { width: 1px; height: 50px; background: rgba(201,168,76,0.2); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-section { background: var(--dark); padding: 80px 48px; }
.service-row { display: grid; grid-template-columns: 80px 1fr; gap: 0 30px; padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: start; }
.service-row:last-child { border-bottom: none; }
.service-num { font-family: 'Cinzel', 'Georgia', serif; font-size: 50px; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; }
.service-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.service-left h3 { font-family: 'Cinzel', 'Georgia', serif; font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.service-tagline { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
.service-desc { font-size: 13px; color: #888; line-height: 1.8; font-weight: 300; }
.service-bullets li { font-size: 12px; color: #777; padding: 7px 0 7px 18px; border-bottom: 1px solid rgba(255,255,255,0.04); position: relative; font-weight: 300; line-height: 1.5; }
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); font-size: 10px; top: 9px; }

/* =============================================
   WHY PARFIN
   ============================================= */
.reasons-section { background: var(--dark); padding: 80px 48px; }
.reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 44px; }
.reason-card { background: var(--black); padding: 38px 30px; border: 1px solid rgba(255,255,255,0.04); position: relative; overflow: hidden; }
.reason-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .4; }
.reason-num { font-family: 'Cinzel', 'Georgia', serif; font-size: 52px; font-weight: 300; color: rgba(201,168,76,0.1); position: absolute; top: 12px; right: 20px; line-height: 1; }
.reason-title { font-family: 'Cinzel', 'Georgia', serif; font-size: 22px; font-weight: 500; color: var(--gold-light); margin-bottom: 14px; padding-right: 48px; line-height: 1.3; }
.reason-body { font-size: 13px; color: #888; line-height: 1.8; font-weight: 300; }

.comparison-section { background: var(--black); padding: 80px 48px; }
.comp-table { width: 100%; border-collapse: collapse; margin-top: 44px; }
.comp-table th { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 18px; text-align: center; border-bottom: 2px solid rgba(201,168,76,0.3); }
.comp-table th:first-child { text-align: left; color: var(--gray); }
.comp-table th:nth-child(2) { color: var(--gold); background: rgba(201,168,76,0.06); border-bottom-color: var(--gold); }
.comp-table th:nth-child(3), .comp-table th:nth-child(4) { color: #444; }
.comp-table td { font-size: 12px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.04); text-align: center; color: #777; }
.comp-table td:first-child { text-align: left; color: #bbb; font-weight: 500; }
.comp-table td:nth-child(2) { color: var(--gold); font-weight: 700; background: rgba(201,168,76,0.03); }
.check { color: var(--gold); }
.cross { color: #333; }

/* =============================================
   OUR PROCESS
   ============================================= */
.process-section { background: var(--dark); padding: 80px 48px; }
.steps-wrap { margin-top: 50px; max-width: 780px; margin-left: auto; margin-right: auto; }
.step { display: grid; grid-template-columns: 64px 22px 1fr; gap: 0 24px; align-items: stretch; }
.step-numeral { font-family: 'Cinzel', 'Georgia', serif; font-size: 38px; font-weight: 300; color: rgba(201,168,76,0.22); line-height: 1; padding-top: 2px; }
.step-timeline { display: flex; flex-direction: column; align-items: center; }
.step-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(201,168,76,0.15); margin-top: 4px; }
.step-dot.final { background: var(--gold-light); box-shadow: 0 0 12px rgba(201,168,76,0.4); }
.step-line { width: 1px; flex: 1; background: linear-gradient(180deg, var(--gold-dim) 0%, rgba(201,168,76,0.08) 100%); margin-bottom: -16px; }
.step-body { padding-bottom: 48px; }
.step-title { font-family: 'Cinzel', 'Georgia', serif; font-size: 24px; font-weight: 500; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.step-text { font-size: 13px; color: #888; line-height: 1.9; font-weight: 300; }
.step-free { display: inline-block; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; margin-top: 10px; }
.timeline-note { background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.2); border-left: 3px solid var(--gold); padding: 22px 26px; margin: 36px auto 0; max-width: 780px; }
.timeline-note .tn-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.timeline-note p { font-size: 13px; color: #999; line-height: 1.8; font-style: italic; font-weight: 300; }

/* =============================================
   RESPONSIVE — TABLET (max 960px)
   ============================================= */
@media (max-width: 960px) {
  /* Sections */
  .home-hero, .three-cols, .numbers-section, .faq-section,
  .founder-section, .different-section, .values-section,
  .location-section, .services-section, .reasons-section,
  .comparison-section, .process-section, .cta-strip,
  .statement-strip, .pc-footer { padding-left: 28px; padding-right: 28px; }

  .page-hero { padding: 60px 28px 60px; }
  .home-hero { padding: 70px 28px 70px; min-height: unset; }
  .home-hero h1 { font-size: 48px; }
  .sec-header h2 { font-size: 32px; }
  .page-hero blockquote { font-size: 24px; }

  .three-cols-inner { grid-template-columns: 1fr; gap: 2px; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .service-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .step { grid-template-columns: 52px 20px 1fr; gap: 0 16px; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================= */
@media (max-width: 600px) {
  /* Sections padding */
  .home-hero, .three-cols, .numbers-section, .faq-section,
  .founder-section, .different-section, .values-section,
  .location-section, .services-section, .reasons-section,
  .comparison-section, .process-section, .cta-strip,
  .statement-strip, .pc-footer { padding-left: 18px; padding-right: 18px; }

  .page-hero { padding: 44px 18px 44px; }
  .home-hero { padding: 52px 18px 60px; }
  .home-hero h1 { font-size: 36px; line-height: 1.15; }
  .home-hero .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline { text-align: center; padding: 14px 24px; }

  .hero-eyebrow { font-size: 9px; gap: 8px; }
  .hero-eyebrow::before { width: 20px; }

  .sec-header h2 { font-size: 26px; }
  .page-hero blockquote { font-size: 20px; }
  .page-hero .eyebrow::before { width: 20px; }
  .statement-strip p { font-size: 18px; padding: 0 10px; }
  .cta-strip h3 { font-size: 24px; }

  /* Trust bar vertical */
  .trust-bar { padding: 12px 18px; gap: 0; flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); padding: 8px 0; width: 100%; text-align: center; }
  .trust-item:last-child { border-bottom: none; }

  /* Numbers 2 col on mobile */
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-val { font-size: 26px; }

  /* Service rows */
  .service-row { grid-template-columns: 1fr; }
  .service-num { display: none; }
  .service-inner { gap: 20px; }

  /* Steps */
  .step { grid-template-columns: 40px 18px 1fr; gap: 0 12px; }
  .step-numeral { font-size: 28px; }
  .step-title { font-size: 20px; }
  .step-body { padding-bottom: 36px; }

  /* Comparison table: hide last col */
  .comp-table th:nth-child(4), .comp-table td:nth-child(4) { display: none; }
  .comp-table th, .comp-table td { padding: 10px 10px; font-size: 11px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Location */
  .loc-sep { display: none; }
  .location-inner { gap: 24px; flex-direction: column; }

  /* Founder */
  .founder-photo { max-height: 280px; }
  .founder-name { font-size: 26px; }
  .founder-quote { font-size: 17px; }

  /* FAQ */
  .faq-q span { font-size: 13px; }
}

/* =============================================
   GENERAL PAGE BUILDER CONTENT AREA
   ============================================= */
.parfin-page-content { background: var(--black); min-height: 200px; }

/* =============================================
   HERO SLIDER
   ============================================= */
.pc-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 620px;
  background: var(--black);
}
.pc-slides { position: relative; width: 100%; height: 100%; }

.pc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.pc-slide.active { opacity: 1; z-index: 1; }

.pc-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.70) 50%,
    rgba(10,10,10,0.40) 100%
  );
}

.pc-slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 860px;
}
.pc-slide-content .hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.pc-slide-content .hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.pc-slide-content h1 {
  font-family: 'Cinzel', 'Georgia', serif; font-size: 62px; font-weight: 300;
  line-height: 1.1; color: var(--white); max-width: 640px; margin-bottom: 22px;
}
.pc-slide-content h1 em { font-style: italic; color: var(--gold-light); }
.pc-slide-content .hero-sub {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.7);
  max-width: 500px; margin-bottom: 36px; font-weight: 300;
}

/* Slider prev/next arrows */
.pc-slider-prev,
.pc-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35); color: var(--gold);
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: background .2s, border-color .2s;
}
.pc-slider-prev { left: 24px; }
.pc-slider-next { right: 24px; }
.pc-slider-prev:hover,
.pc-slider-next:hover { background: rgba(201,168,76,0.25); border-color: var(--gold); }

/* Dots */
.pc-slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.pc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,168,76,0.35); border: none; cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.pc-dot.active { background: var(--gold); transform: scale(1.3); }

/* Slide entrance animation */
.pc-slide.active .pc-slide-content > * {
  animation: slideFadeUp 0.7s ease both;
}
.pc-slide.active .hero-eyebrow  { animation-delay: 0.1s; }
.pc-slide.active h1              { animation-delay: 0.25s; }
.pc-slide.active .hero-sub       { animation-delay: 0.4s; }
.pc-slide.active .hero-btns      { animation-delay: 0.55s; }

@keyframes slideFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slider responsive */
@media (max-width: 900px) {
  .pc-slider { height: 520px; }
  .pc-slide-content { padding: 0 28px; }
  .pc-slide-content h1 { font-size: 42px; }
  .pc-slider-prev { left: 12px; }
  .pc-slider-next { right: 12px; }
}
@media (max-width: 600px) {
  .pc-slider { height: 560px; }
  .pc-slide { align-items: center; padding-bottom: 0; }
  .pc-slide-overlay {
    background: linear-gradient(105deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.35) 100%);
  }
  .pc-slide-content { padding: 0 20px; max-width: 100%; width: 100%; }
  .pc-slide-content h1 { font-size: 32px; max-width: 100%; }
  .pc-slide-content .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .pc-slider-prev, .pc-slider-next { display: none; }
  .pc-slider-dots { bottom: 14px; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--black);
  padding: 80px 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form column */
.contact-form-header { margin-bottom: 36px; }
.eyebrow-sm {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.contact-heading {
  font-family: 'Cinzel', 'Georgia', serif; font-size: 32px;
  font-weight: 300; color: var(--white); line-height: 1.3;
}

/* Form elements */
.pc-form { display: flex; flex-direction: column; gap: 20px; }
.pc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pc-form-field { display: flex; flex-direction: column; gap: 6px; }
.pc-form-full { grid-column: 1 / -1; }

.pc-form label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #888;
}
.req { color: var(--gold); }

.pc-form input,
.pc-form select,
.pc-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 13px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.pc-form input::placeholder,
.pc-form textarea::placeholder { color: #444; }
.pc-form input:focus,
.pc-form select:focus,
.pc-form textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.pc-form select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.pc-form select option { background: #111; color: var(--white); }
.pc-form textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

.char-count { font-size: 10px; color: #444; text-align: right; margin-top: 4px; }

.btn-form-submit {
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 11px;
}
.form-note { font-size: 11px; color: #444; margin-top: -8px; font-weight: 300; }

.form-success {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  padding: 36px 32px;
  text-align: center;
}
.form-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-family: 'Cormorant Garamond',serif; font-size: 26px; color: var(--white); margin-bottom: 10px; }
.form-success p { font-size: 13px; color: #888; line-height: 1.8; }
.form-error-msg {
  background: rgba(200,60,60,0.08);
  border: 1px solid rgba(200,60,60,0.3);
  border-left: 3px solid #c83c3c;
  padding: 12px 16px;
  font-size: 13px;
  color: #e08080;
  margin-bottom: 4px;
}

/* Details column */
.contact-details-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info-block:first-child { padding-top: 0; }
.cib-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cib-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 6px; }
.cib-value { font-size: 15px; color: var(--white); font-weight: 400; line-height: 1.4; }
.cib-link { color: var(--white); transition: color .2s; }
.cib-link:hover { color: var(--gold); }
.cib-sub { font-size: 11px; color: #555; margin-top: 4px; }
.cib-wa { display: inline-block; margin-top: 8px; font-size: 11px; color: #25D366; letter-spacing: 1px; }

.contact-divider { height: 1px; background: rgba(201,168,76,0.15); margin: 8px 0 20px; }

.contact-quick {}
.cq-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 14px; }
.cq-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #777; padding: 6px 0; }
.cq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.wa-cta-block {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; padding: 16px 20px;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.25);
  color: #fff; font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.wa-cta-block:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.5); }
.wa-arrow { margin-left: auto; color: #25D366; }

/* Contact responsive */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-details-col { position: static; }
}
@media (max-width: 600px) {
  .contact-section { padding: 48px 18px; }
  .pc-form-row { grid-template-columns: 1fr; }
  .contact-heading { font-size: 26px; }
}

/* =============================================
   POPUP MODAL
   ============================================= */
.pc-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.pc-popup-overlay.active { opacity: 1; pointer-events: all; }

.pc-popup-box {
  background: #0e0e0e;
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 3px solid var(--gold);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 44px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  scroll-behavior: smooth;
}
.pc-popup-overlay.active .pc-popup-box { transform: translateY(0); }

.pc-popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #555;
  font-size: 26px; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.pc-popup-close:hover { color: var(--gold); }

.pc-popup-header { margin-bottom: 28px; }
.popup-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pc-popup-header h2 { font-family: 'Cormorant Garamond',serif; font-size: 30px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.pc-popup-header h2 em { font-style: italic; color: var(--gold-light); }
.pc-popup-header p { font-size: 13px; color: #666; font-weight: 300; }

.pc-popup-form .pc-form-row { gap: 14px; }
.pc-popup-form input,
.pc-popup-form select,
.pc-popup-form textarea { font-size: 13px; padding: 12px 14px; }
.pc-popup-form textarea { min-height: 110px; }

.popup-success {
  text-align: center;
  padding: 36px 20px;
}
.popup-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 24px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.popup-success h3 { font-family: 'Cormorant Garamond',serif; font-size: 28px; color: var(--white); margin-bottom: 10px; }
.popup-success p { font-size: 13px; color: #888; line-height: 1.8; }
.popup-success a { color: var(--gold); }

.popup-error-msg {
  background: rgba(200,60,60,0.08);
  border: 1px solid rgba(200,60,60,0.3);
  border-left: 3px solid #c83c3c;
  padding: 10px 14px;
  font-size: 12px;
  color: #e08080;
  margin-bottom: 12px;
}

.btn-loading { display: inline-block; }
.hidden { display: none !important; }

/* Footer popup button style */
.footer-popup-btn {
  background: none; border: none; color: #666;
  font-size: 12px; cursor: pointer; padding: 0;
  font-family: 'Cinzel', 'Georgia', serif; transition: color .2s;
  margin-bottom: 0;
  text-align: left;
}
.footer-popup-btn:hover { color: var(--gold); }

/* Popup responsive */
@media (max-width: 600px) {
  .pc-popup-box { padding: 28px 20px; }
  .pc-popup-header h2 { font-size: 24px; }
  .pc-popup-form .pc-form-row { grid-template-columns: 1fr; }
}

/* =============================================
   CINZEL FONT OVERRIDES
   Cinzel is heavier than Montserrat — tighten spacing
   ============================================= */
body { letter-spacing: 0.02em; }

/* Nav links — Cinzel needs slightly looser tracking */
.pc-nav-links li a { letter-spacing: 2px; }

/* Eyebrows */
.eyebrow, .sec-header .eyebrow, .hero-eyebrow,
.page-hero .eyebrow, .popup-eyebrow, .eyebrow-sm,
.cq-label, .cib-label, .tn-label, .footer-col h5 {
  font-family: 'Cinzel', 'Georgia', serif;
  letter-spacing: 4px;
}

/* Hero h1 */
.home-hero h1,
.pc-slide-content h1 {
  font-family: 'Cinzel', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Page hero blockquote */
.page-hero blockquote,
.pc-popup-header h2,
.contact-heading,
.cta-strip h3,
.statement-strip p,
.founder-name,
.step-title,
.service-left h3,
.reason-title,
.value-card h4,
.col-title,
.sec-header h2 {
  font-family: 'Cinzel', 'Georgia', serif;
}

/* Number values */
.number-val { font-family: 'Cinzel', 'Georgia', serif; }

/* Col numbers / service numbers */
.col-num, .service-num, .reason-num, .step-numeral {
  font-family: 'Cinzel', 'Georgia', serif;
}

/* Logo image handled by .pc-logo-img and .footer-logo-img */

/* Founder credential line */
.founder-cred { font-family: 'Cinzel', 'Georgia', serif; font-size: 11px; }

/* Form labels */
.pc-form label { font-family: 'Cinzel', 'Georgia', serif; }

/* Buttons */
.btn-gold, .btn-outline, .pc-nav-cta { font-family: 'Cinzel', 'Georgia', serif; }

/* Footer col heading */
.footer-col h5 { font-family: 'Cinzel', 'Georgia', serif; }

/* =============================================
   FOUNDER PHOTO — actual image
   ============================================= */
.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-photo { padding: 0; overflow: hidden; }

/* =============================================
   FOOTER — BUILT BY LUMATECH
   ============================================= */
.footer-built-by {
  font-size: 12px;
  color: #333;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-built-by a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Cinzel', 'Georgia', serif;
  letter-spacing: 1px;
}
.footer-built-by a:hover { color: var(--gold); }

/* =============================================
   MOBILE SLIDER — DEFINITIVE FIX
   ============================================= */
@media (max-width: 600px) {
  .pc-slider {
    height: 560px !important;
    min-height: unset;
    overflow: hidden;
  }
  .pc-slides {
    height: 100%;
    position: relative;
  }
  .pc-slide {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    align-items: center !important;
    padding-bottom: 0 !important;
    display: flex !important;
  }
  .pc-slide-content {
    padding: 0 22px !important;
    max-width: 100% !important;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .pc-slide-content h1 {
    font-size: 28px !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }
  .pc-slide-content .hero-eyebrow {
    font-size: 9px !important;
    margin-bottom: 14px !important;
  }
  .pc-slide-content .hero-sub {
    font-size: 12px !important;
    margin-bottom: 24px !important;
    color: rgba(255,255,255,0.75) !important;
  }
  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    text-align: center !important;
    padding: 12px 22px !important;
    font-size: 11px !important;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .pc-slider { height: 500px; }
  .pc-slide { height: 100%; align-items: center; }
  .pc-slide-content h1 { font-size: 38px; }
}

/* =============================================
   LOGO IMAGE — responsive
   ============================================= */
.pc-logo-img {
  height: 70px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Mobile nav height + logo adjustments */
@media (max-width: 900px) {
  .pc-nav {
    padding: 0 18px !important;
    height: 76px !important;
  }
    .pc-logo-img {
    height: 58px !important;
    max-width: 98px;
  }
  /* Keep logo, toggle, and CTA-hidden balanced */
  .pc-nav-cta { display: none; }
}

@media (max-width: 600px) {
  .pc-nav {
    padding: 0 14px !important;
    height: 66px !important;
  }
  .pc-logo-img {
    height: 50px !important;
    max-width: 85px;
  }
}

/* Fix admin bar offset for new nav height */
/* Nav height: desktop=88px, tablet=76px, mobile=66px */
body.admin-bar .pc-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .pc-nav { top: 46px; }
}

/* Mobile nav links — slide from top */
@media (max-width: 900px) {
  .pc-nav-links.open {
    top: 76px; /* match nav height on tablet */
  }
}
@media (max-width: 600px) {
  .pc-nav-links.open {
    top: 66px; /* match nav height on mobile */
  }
}

/* Footer logo — also use image */
.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

/* =============================================
   v2.1 FIXES
   ============================================= */

/* 1. Nav links — pure white when inactive */
.pc-nav-links li a { color: #ffffff !important; }
.pc-nav-links li a:hover,
.pc-nav-links li a.active { color: var(--gold) !important; }

/* 2. Footer — full visibility */
.pc-footer { color: #cccccc; }
.footer-brand p { color: #bbbbbb !important; }
.footer-col h5 { color: var(--gold) !important; }
.footer-col ul li,
.footer-col ul li a { color: #cccccc !important; }
.footer-col ul li a:hover { color: var(--gold) !important; }
.footer-bottom p { color: #999999 !important; }
.footer-cred { color: #777777 !important; }
.footer-built-by,
.footer-built-by a { color: #666666 !important; }
.footer-built-by a:hover { color: var(--gold) !important; }
.footer-popup-btn { color: #cccccc !important; }
.footer-popup-btn:hover { color: var(--gold) !important; }

/* 3. Footer logo — 20% bigger */
.footer-logo-img {
  height: 70px !important;
  width: auto;
  object-fit: contain;
}

/* 4. About page — Founder section center alignment */
.founder-section .sec-header { text-align: center; }
.founder-name { text-align: left; }
.founder-grid {
  align-items: center;
}
/* On mobile, center everything */
@media (max-width: 768px) {
  .founder-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .founder-photo {
    width: 240px;
    height: 320px;
    margin: 0 auto;
    flex-shrink: 0;
  }
  .founder-name,
  .founder-cred,
  .founder-bio,
  .founder-detail { text-align: center; }
  .founder-quote { text-align: center; border-left: none; border-top: 2px solid var(--gold); padding: 16px 0 0; }
}

/* 5. Comparison table — fully mobile optimized */
@media (max-width: 768px) {

  .comparison-section { padding: 40px 14px; overflow-x: hidden; }

  /* Stack table as cards on mobile */
  .comp-table,
  .comp-table thead,
  .comp-table tbody,
  .comp-table tr,
  .comp-table th,
  .comp-table td {
    display: block;
    width: 100%;
  }

  /* Hide original header row */
  .comp-table thead tr { display: none; }

  /* Each row = a card */
  .comp-table tbody tr {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 0;
    margin-bottom: 12px;
    padding: 14px 16px;
  }

  .comp-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 12px;
    text-align: left;
  }
  .comp-table td:last-child { border-bottom: none; }

  /* Feature label (first column) */
  .comp-table td:first-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--white) !important;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding-bottom: 10px;
    margin-bottom: 4px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Data cells with label */
  .comp-table td:nth-child(2)::before { content: "Parfin Capital: "; color: var(--gold); font-size: 10px; font-weight: 700; }
  .comp-table td:nth-child(3)::before { content: "Typical DSA: "; color: #666; font-size: 10px; }
  .comp-table td:nth-child(4)::before { content: "Going Directly: "; color: #555; font-size: 10px; }

  .comp-table td:nth-child(2) { background: transparent !important; color: var(--gold) !important; }
  .comp-table td:nth-child(3) { color: #666 !important; }
  .comp-table td:nth-child(4) { color: #555 !important; }
}

/* Numbers grid — 5 cells on mobile: 2 cols, last centered */
@media (max-width: 600px) {
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .number-cell:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* Footer mobile text */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col ul li,
  .footer-col ul li a { color: #cccccc !important; font-size: 14px; }
  .footer-brand p { color: #bbbbbb !important; font-size: 13px; }
  .footer-built-by { font-size: 12px; }
}

/* Founder section center on desktop too */
.founder-section--centered .founder-photo {
  aspect-ratio: 2/3;
  min-height: 360px;
}
.founder-section--centered .founder-photo img {
  object-position: center top;
}

/* =============================================
   v2.4 FIXES
   ============================================= */

/* ── 1. FOUNDER PHOTO — Circle Shape */
.founder-photo {
  width: 280px !important;
  height: 280px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  border: 3px solid var(--gold) !important;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.12), 0 8px 40px rgba(0,0,0,0.5) !important;
  flex-shrink: 0;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo img,
.founder-photo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 50% !important;
  display: block !important;
}

/* Mobile founder circle */
@media (max-width: 768px) {
  .founder-photo {
    width: 220px !important;
    height: 220px !important;
    margin: 0 auto !important;
  }
}

/* ── 2. COMPARISON TABLE — Mobile (complete rewrite) */
@media (max-width: 768px) {

  .comparison-section { padding: 40px 16px; }
  .comp-table { display: block; width: 100%; }

  /* Hide thead completely */
  .comp-table thead { display: none !important; }
  .comp-table tbody { display: block; width: 100%; }

  /* Each TR = a card */
  .comp-table tbody tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 2px solid var(--gold);
    background: rgba(255,255,255,0.02);
    padding: 0;
    overflow: hidden;
  }

  /* Reset all td */
  .comp-table td {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100% !important;
    text-align: center !important;
    background: transparent !important;
    font-size: 12px !important;
    padding: 0 !important;
    border: none !important;
  }

  /* Feature name cell (first td) — full width label */
  .comp-table td:first-child {
    display: block !important;
    grid-column: unset;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    background: rgba(201,168,76,0.06) !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid rgba(201,168,76,0.15) !important;
    text-align: left !important;
  }

  /* Data row wrapper — grid 3 cols */
  .comp-table td:not(:first-child) {
    display: none !important; /* hide original tds */
  }

  /* Use a custom wrapper approach via pure CSS attribute */
  .comp-table tbody tr::after {
    content: none;
  }
}

/* Better approach — use CSS grid on the tr for data cells */
@media (max-width: 768px) {
  .comp-table tbody tr {
    display: block;
  }

  /* Create a 3-col data row after the feature label */
  .comp-table td:first-child {
    display: block !important;
    width: 100% !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    background: rgba(201,168,76,0.07) !important;
    padding: 10px 14px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(201,168,76,0.12) !important;
  }

  /* Data cells — show as flex row */
  .comp-table td:nth-child(2),
  .comp-table td:nth-child(3),
  .comp-table td:nth-child(4) {
    display: inline-flex !important;
    flex-direction: column !important;
    width: 33.33% !important;
    padding: 10px 6px !important;
    text-align: center !important;
    font-size: 11px !important;
    vertical-align: top;
    border-right: 1px solid rgba(255,255,255,0.04) !important;
  }
  .comp-table td:nth-child(4) {
    border-right: none !important;
  }

  /* Label above each value */
  .comp-table td:nth-child(2)::before {
    content: "Parfin";
    display: block;
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
  }
  .comp-table td:nth-child(3)::before {
    content: "DSA";
    display: block;
    font-size: 9px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .comp-table td:nth-child(4)::before {
    content: "Direct";
    display: block;
    font-size: 9px;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  /* Gold column styling */
  .comp-table td:nth-child(2) {
    color: var(--gold) !important;
    background: rgba(201,168,76,0.04) !important;
    font-weight: 600 !important;
  }
  .comp-table td:nth-child(3) { color: #777 !important; }
  .comp-table td:nth-child(4) { color: #555 !important; }

  /* Check/cross styling */
  .comp-table .check { color: var(--gold) !important; font-size: 14px !important; }
  .comp-table .cross { color: #444 !important; font-size: 14px !important; }

  /* Restore display — override previous broken rule */
  .comp-table td:not(:first-child) { display: inline-flex !important; }
}

/* =============================================
   v2.5 — FOUNDER PHOTO PERFECT CIRCLE FIX
   ============================================= */

/* Force exact square container — kills the oval */
.founder-photo {
  width: 300px !important;
  height: 300px !important;
  min-width: 300px !important;
  min-height: 300px !important;
  max-width: 300px !important;
  max-height: 300px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  border: 3px solid var(--gold) !important;
  box-shadow: 0 0 0 7px rgba(201,168,76,0.15),
              0 0 0 8px rgba(201,168,76,0.05),
              0 12px 48px rgba(0,0,0,0.6) !important;
  flex-shrink: 0 !important;
  background: var(--mid) !important;
  display: block !important;
  position: relative !important;
  padding: 0 !important;
  align-self: flex-start;
}

/* Image fills circle perfectly */
.founder-photo img,
.founder-photo .founder-photo-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  border-radius: 50% !important;
  display: block !important;
}

/* Grid row: align photo to top so it doesn't stretch */
.founder-grid {
  align-items: flex-start !important;
}

/* Mobile */
@media (max-width: 768px) {
  .founder-photo {
    width: 220px !important;
    height: 220px !important;
    min-width: 220px !important;
    min-height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    margin: 0 auto 32px !important;
  }
  .founder-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* =============================================
   v2.6 — COMPARISON TABLE PROPER MOBILE TABLE
   ============================================= */
@media (max-width: 768px) {

  /* Undo all previous card/block overrides */
  .comp-table,
  .comp-table thead,
  .comp-table tbody,
  .comp-table tr,
  .comp-table th,
  .comp-table td { display: revert !important; }

  .comp-table td:not(:first-child) { display: table-cell !important; }

  /* Scrollable wrapper */
  .comparison-section { padding: 40px 0 40px 0; overflow: hidden; }
  .comparison-section .sec-header { padding: 0 16px; }

  /* Table: horizontal scroll on mobile */
  .comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 12px;
    /* hint there's more to scroll */
    background:
      linear-gradient(to right, #0a0a0a 10px, transparent 10px),
      linear-gradient(to left,  #0a0a0a 10px, transparent 10px) 100% 0,
      radial-gradient(farthest-side at 0 50%, rgba(201,168,76,0.18), transparent),
      radial-gradient(farthest-side at 100% 50%, rgba(201,168,76,0.18), transparent) 100% 0;
    background-repeat: no-repeat;
    background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
  }

  .comp-table {
    width: 100% !important;
    min-width: 520px;           /* forces scroll rather than squish */
    border-collapse: collapse;
    table-layout: fixed;
  }

  /* Column widths */
  .comp-table th:first-child,
  .comp-table td:first-child { width: 42%; text-align: left !important; }
  .comp-table th:nth-child(2),
  .comp-table td:nth-child(2) { width: 22%; }
  .comp-table th:nth-child(3),
  .comp-table td:nth-child(3) { width: 18%; }
  .comp-table th:nth-child(4),
  .comp-table td:nth-child(4) { width: 18%; display: table-cell !important; }

  /* Header row */
  .comp-table th {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    padding: 12px 8px !important;
    white-space: nowrap;
    border-bottom-width: 2px;
  }
  .comp-table th:first-child { font-size: 9px !important; color: #666 !important; }

  /* Data cells */
  .comp-table td {
    font-size: 11px !important;
    padding: 11px 8px !important;
    line-height: 1.3;
    vertical-align: middle;
  }
  .comp-table td:first-child {
    font-size: 11px !important;
    color: #ccc !important;
    font-weight: 500 !important;
    padding-left: 0 !important;
  }

  /* Parfin column stays gold */
  .comp-table td:nth-child(2) {
    color: var(--gold) !important;
    font-weight: 700 !important;
    background: rgba(201,168,76,0.04) !important;
  }

  /* Check / cross */
  .comp-table .check { color: var(--gold) !important; font-size: 13px !important; }
  .comp-table .cross { color: #3a3a3a !important; font-size: 13px !important; }

  /* Scroll hint label */
  .comp-table-scroll-hint {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    padding: 6px 16px 0;
  }
}

/* Hide scroll hint on desktop */
@media (min-width: 769px) {
  .comp-table-scroll-hint { display: none; }
  .comp-table-wrap { overflow-x: visible; }
}
