:root{
  --ogd-forest:#16271a;
  --ogd-forest-2:#213b28;
  --ogd-sage:#5d8745;
  --ogd-sage-pale:#e9f0e3;
  --ogd-cream:#fbf8f1;
  --ogd-soft:#f7f5ef;
  --ogd-white:#fff;
  --ogd-ink:#16271a;
  --ogd-muted:#586357;
  --ogd-light:#7d877b;
  --ogd-border:#e2ded3;
  --ogd-amber:#a66f34;
  --ogd-red:#a33e3e;
  --ogd-red-pale:#fcf0f0;
  --ogd-shadow:0 18px 44px rgba(22,39,26,.08);
  --ogd-shadow-strong:0 26px 70px rgba(22,39,26,.16);
}

.ogd-guide{
  background:var(--ogd-cream);
  color:var(--ogd-ink);
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.7;
  overflow:hidden;
}

.ogd-guide *{box-sizing:border-box}

.ogd-guide-wrap{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
}

.ogd-guide-hero{
  background:
    radial-gradient(circle at 75% 25%,rgba(93,135,69,.28),transparent 34%),
    linear-gradient(135deg,#102417 0%,#172f1e 52%,#0f2115 100%);
  color:#fff;
  text-align:center;
  padding:96px 0 104px;
}

.ogd-eyebrow,
.ogd-section-label,
.ogd-card small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:800;
  color:var(--ogd-sage);
  margin-bottom:12px;
}

.ogd-guide h1,
.ogd-guide h2{
  font-family:"Lora",Georgia,serif;
  line-height:1.15;
  margin:0 0 18px;
  color:var(--ogd-forest);
}

.ogd-guide-hero h1{
  color:#fff;
  font-size:clamp(42px,7vw,72px);
  max-width:850px;
  margin-left:auto;
  margin-right:auto;
}

.ogd-guide-hero h1 em{
  color:#97bd73;
  font-style:italic;
}

.ogd-hero-sub{
  color:rgba(255,255,255,.74);
  max-width:760px;
  margin:0 auto 30px;
  font-size:18px;
}

.ogd-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:0 auto 34px;
}

.ogd-pills span{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.86);
  border-radius:999px;
  padding:7px 15px;
  font-size:13px;
  font-weight:700;
}

.ogd-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--ogd-sage);
  color:#fff!important;
  text-decoration:none!important;
  border-radius:14px;
  padding:14px 28px;
  font-weight:800;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.ogd-btn:hover{
  transform:translateY(-1px);
  background:#6f984f;
}

.ogd-guide-section{
  padding:78px 0;
}

.ogd-soft{
  background:var(--ogd-soft);
  border-top:1px solid var(--ogd-border);
  border-bottom:1px solid var(--ogd-border);
}

.ogd-dark-band{
  background:linear-gradient(135deg,#102417,#19321f);
  color:#fff;
}

.ogd-dark-band h2,
.ogd-dark-band h3{
  color:#fff;
}

.ogd-dark-band p,
.ogd-dark-band span{
  color:rgba(255,255,255,.74);
}

.ogd-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.ogd-card{
  background:#fff;
  border:1px solid var(--ogd-border);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--ogd-shadow);
}

.ogd-card-dark{
  background:linear-gradient(135deg,#102417,#19321f);
  border-color:rgba(255,255,255,.12);
  color:#fff;
  box-shadow:var(--ogd-shadow-strong);
}

.ogd-card-dark h2,
.ogd-card-dark p{
  color:#fff;
}

.ogd-card h2{
  font-size:clamp(26px,3vw,38px);
}

.ogd-card h3{
  margin:0 0 8px;
  color:var(--ogd-forest);
  font-size:18px;
}

.ogd-card p,
.ogd-guide p{
  color:var(--ogd-muted);
  margin:0;
}

.ogd-card-dark p{
  color:rgba(255,255,255,.74);
}

.ogd-lead{
  max-width:790px;
  font-size:18px;
  margin-bottom:28px!important;
}

.ogd-stack{
  background:#fff;
  border:1px solid var(--ogd-border);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--ogd-shadow);
}

.ogd-stack-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:end;
  margin-bottom:18px;
}

.ogd-stack-head h2{
  margin:0;
  font-size:30px;
}

.ogd-stack-head span{
  color:var(--ogd-sage);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.ogd-flow{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
}

.ogd-flow div{
  position:relative;
  min-height:116px;
  background:var(--ogd-sage-pale);
  border:1px solid rgba(93,135,69,.24);
  border-radius:18px;
  padding:14px 10px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ogd-flow div:not(:last-child)::after{
  content:"→";
  position:absolute;
  right:-13px;
  top:50%;
  transform:translateY(-50%);
  color:var(--ogd-sage);
  font-weight:900;
  z-index:3;
}

.ogd-flow strong{
  color:var(--ogd-forest);
  font-size:13px;
  line-height:1.2;
}

.ogd-flow small{
  color:var(--ogd-light);
  font-size:11px;
  line-height:1.25;
  margin-top:5px;
}

.ogd-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:26px;
}

.ogd-mini-grid{
  grid-template-columns:repeat(2,1fr);
  margin-top:0;
}

.ogd-compare{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:26px;
}

.ogd-compare > div{
  border-radius:24px;
  padding:28px;
  box-shadow:var(--ogd-shadow);
}

.ogd-compare-bad{
  background:var(--ogd-red-pale);
  border:1px solid rgba(163,62,62,.2);
}

.ogd-compare-good{
  background:var(--ogd-sage-pale);
  border:1px solid rgba(93,135,69,.25);
}

.ogd-compare h3{
  margin:0 0 14px;
  color:var(--ogd-forest);
}

.ogd-compare p{
  padding:7px 0;
  border-bottom:1px solid rgba(22,39,26,.08);
  font-size:15px;
}

.ogd-vault{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:28px;
  background:linear-gradient(135deg,#102417,#19321f);
  padding:22px;
  border-radius:28px;
  box-shadow:var(--ogd-shadow-strong);
}

.ogd-vault div{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  padding:22px;
}

.ogd-vault h3{
  color:#c8d8a6;
  margin:0 0 8px;
}

.ogd-vault p{
  color:rgba(255,255,255,.72);
  font-size:14px;
}

.ogd-fees{
  background:#fff;
  border:1px solid var(--ogd-border);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--ogd-shadow);
  margin-top:28px;
}

.ogd-fees div{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:22px;
  padding:24px 28px;
  border-bottom:1px solid var(--ogd-border);
}

.ogd-fees div:last-child{
  border-bottom:0;
}

.ogd-fees strong{
  font-family:"Lora",Georgia,serif;
  font-size:24px;
  color:var(--ogd-forest);
}

.ogd-fees span{
  color:var(--ogd-muted);
}

.ogd-timeline{
  list-style:none;
  counter-reset:ogdstep;
  padding:0;
  margin:32px 0 0;
}

.ogd-timeline li{
  counter-increment:ogdstep;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:20px;
  position:relative;
  margin-bottom:26px;
}

.ogd-timeline li::before{
  content:counter(ogdstep);
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--ogd-sage-pale);
  border:2px solid var(--ogd-sage);
  color:var(--ogd-forest);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:"Lora",Georgia,serif;
  font-weight:800;
  z-index:2;
}

.ogd-timeline li:not(:last-child)::after{
  content:"";
  position:absolute;
  left:27px;
  top:56px;
  bottom:-28px;
  width:2px;
  background:var(--ogd-border);
}

.ogd-timeline strong{
  display:block;
  color:var(--ogd-forest);
  font-size:18px;
  margin-top:6px;
}

.ogd-dark-band .ogd-timeline strong{
  color:#fff;
}

.ogd-timeline span{
  display:block;
  color:var(--ogd-muted);
}

.ogd-highlight{
  background:linear-gradient(135deg,#102417,#19321f);
  border-radius:26px;
  padding:34px;
  margin-top:28px;
  box-shadow:var(--ogd-shadow-strong);
}

.ogd-highlight h3{
  color:#c8d8a6;
  margin:0 0 8px;
}

.ogd-highlight p{
  color:rgba(255,255,255,.76);
}

.ogd-faq{
  display:grid;
  gap:12px;
  margin-top:28px;
}

.ogd-faq details{
  background:#fff;
  border:1px solid var(--ogd-border);
  border-radius:18px;
  padding:18px 20px;
  box-shadow:var(--ogd-shadow);
}

.ogd-faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--ogd-forest);
}

.ogd-faq p{
  margin-top:12px;
}

.ogd-cta{
  background:linear-gradient(135deg,#102417,#19321f);
  border-radius:30px;
  padding:56px 34px;
  text-align:center;
  color:#fff;
  box-shadow:var(--ogd-shadow-strong);
}

.ogd-cta h2{
  color:#fff;
  font-size:clamp(30px,4vw,48px);
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.ogd-cta p{
  color:rgba(255,255,255,.72);
  max-width:700px;
  margin:0 auto 28px;
}

@media(max-width:980px){
  .ogd-two-col,
  .ogd-compare{
    grid-template-columns:1fr;
  }

  .ogd-flow{
    grid-template-columns:1fr;
  }

  .ogd-flow div:not(:last-child)::after{
    content:"↓";
    right:auto;
    left:50%;
    top:auto;
    bottom:-19px;
    transform:translateX(-50%);
  }

  .ogd-card-grid,
  .ogd-mini-grid,
  .ogd-vault{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .ogd-guide-wrap{
    width:min(100% - 28px,1120px);
  }

  .ogd-guide-hero{
    padding:64px 0 72px;
  }

  .ogd-guide-section{
    padding:52px 0;
  }

  .ogd-card-grid,
  .ogd-mini-grid,
  .ogd-vault{
    grid-template-columns:1fr;
  }

  .ogd-stack-head{
    display:block;
  }

  .ogd-fees div{
    grid-template-columns:1fr;
    gap:8px;
  }

  .ogd-timeline li{
    grid-template-columns:54px 1fr;
    gap:14px;
  }

  .ogd-guide-hero h1{
    font-size:40px;
  }
}

/* Guest guide additions from full HTML guide */
.ogd-guide-topbar{
  background:rgba(22,39,26,.98);
  padding:18px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.ogd-guide-logo{
  font-family:"Lora",Georgia,serif;
  color:#fff!important;
  text-decoration:none!important;
  font-size:18px;
}

.ogd-guide-topbar span{
  color:var(--ogd-sage);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ogd-policies{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--ogd-border);
  border:1px solid var(--ogd-border);
  border-radius:22px;
  overflow:hidden;
  margin-top:28px;
  box-shadow:var(--ogd-shadow);
}

.ogd-policy{
  background:#fff;
  padding:26px 22px;
}

.ogd-policy span{
  display:block;
  font-size:28px;
  line-height:1;
  margin-bottom:12px;
}

.ogd-policy h3{
  margin:0 0 8px;
  color:var(--ogd-forest);
}

.ogd-policy p{
  color:var(--ogd-light);
  font-size:14px;
}

.ogd-callout{
  border-left:4px solid var(--ogd-sage);
  border-radius:0 16px 16px 0;
  padding:22px 26px;
  margin-top:30px;
}

.ogd-callout-green{
  background:var(--ogd-sage-pale);
}

.ogd-callout p{
  color:var(--ogd-forest);
  margin:0;
}

.ogd-reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}

.ogd-review{
  background:#fff;
  border:1px solid var(--ogd-border);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--ogd-shadow);
}

.ogd-stars{
  color:var(--ogd-amber);
  font-size:15px;
  margin-bottom:12px;
}

.ogd-review .quote{
  color:var(--ogd-ink);
  font-style:italic;
  font-size:15px;
  line-height:1.7;
  margin-bottom:14px;
}

.ogd-review .by{
  color:var(--ogd-light);
  font-size:13px;
  margin-bottom:12px;
}

.ogd-review span{
  display:inline-block;
  background:var(--ogd-sage-pale);
  color:var(--ogd-forest-2);
  font-size:12px;
  font-weight:800;
  border-radius:999px;
  padding:4px 10px;
}

@media(max-width:980px){
  .ogd-policies,
  .ogd-reviews{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .ogd-guide-topbar{
    padding:16px 20px;
    display:block;
  }

  .ogd-guide-topbar span{
    display:block;
    margin-top:4px;
  }

  .ogd-policies,
  .ogd-reviews{
    grid-template-columns:1fr;
  }
}

/* === Guest Guide Design Polish v1 === */

.ogd-guide{
  background:
    radial-gradient(circle at 8% 18%, rgba(93,135,69,.08), transparent 28%),
    radial-gradient(circle at 92% 42%, rgba(166,111,52,.07), transparent 26%),
    var(--ogd-cream);
}

.ogd-guide-hero{
  padding:118px 0 122px;
  position:relative;
}

.ogd-guide-hero:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-34px;
  transform:translateX(-50%);
  width:min(980px,calc(100% - 40px));
  height:68px;
  background:var(--ogd-cream);
  border-radius:34px 34px 0 0;
}

.ogd-guide-hero .ogd-guide-wrap{
  position:relative;
  z-index:2;
}

.ogd-guide-hero h1{
  letter-spacing:-.035em;
  text-wrap:balance;
}

.ogd-hero-sub{
  font-size:19px;
  line-height:1.85;
}

.ogd-guide-section{
  padding:88px 0;
}

.ogd-guide h2{
  letter-spacing:-.025em;
  text-wrap:balance;
}

.ogd-guide h3{
  letter-spacing:-.01em;
}

.ogd-card,
.ogd-stack,
.ogd-compare > div,
.ogd-fees,
.ogd-faq details,
.ogd-review,
.ogd-policy{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ogd-card:hover,
.ogd-review:hover,
.ogd-policy:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 58px rgba(22,39,26,.12);
  border-color:rgba(93,135,69,.22);
}

.ogd-card{
  border-radius:28px;
}

.ogd-card-grid .ogd-card{
  min-height:188px;
}

.ogd-stack{
  padding:30px;
  border-radius:32px;
}

.ogd-flow div{
  min-height:128px;
  border-radius:20px;
}

.ogd-flow strong{
  font-size:14px;
}

.ogd-flow small{
  font-size:12px;
}

.ogd-compare > div{
  border-radius:26px;
}

.ogd-compare h3{
  font-family:"Lora",Georgia,serif;
  font-size:24px;
}

.ogd-vault{
  border-radius:32px;
  padding:30px;
}

.ogd-vault div{
  min-height:172px;
}

.ogd-fees{
  border-radius:30px;
}

.ogd-fees div{
  padding:28px 32px;
}

.ogd-timeline li{
  margin-bottom:32px;
}

.ogd-timeline strong{
  font-size:20px;
}

.ogd-highlight,
.ogd-cta{
  position:relative;
  overflow:hidden;
}

.ogd-highlight:before,
.ogd-cta:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 84% 18%, rgba(93,135,69,.28), transparent 34%);
  pointer-events:none;
}

.ogd-highlight > *,
.ogd-cta > *{
  position:relative;
  z-index:2;
}

.ogd-policies{
  border-radius:26px;
}

.ogd-reviews{
  align-items:stretch;
}

.ogd-review{
  display:flex;
  flex-direction:column;
}

.ogd-review .by{
  margin-top:auto;
}

.ogd-faq details{
  padding:20px 24px;
}

.ogd-faq summary{
  list-style:none;
  position:relative;
  padding-right:34px;
}

.ogd-faq summary::-webkit-details-marker{
  display:none;
}

.ogd-faq summary:after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:var(--ogd-sage);
  font-size:24px;
  line-height:1;
}

.ogd-faq details[open] summary:after{
  content:"–";
}

.ogd-cta{
  padding:70px 42px;
}

.ogd-cta h2{
  letter-spacing:-.035em;
}

@media(max-width:980px){
  .ogd-guide-hero{
    padding:88px 0 96px;
  }

  .ogd-card-grid .ogd-card{
    min-height:auto;
  }

  .ogd-vault div{
    min-height:auto;
  }
}

@media(max-width:640px){
  .ogd-guide-hero{
    padding:68px 0 76px;
  }

  .ogd-guide-hero:after{
    height:36px;
    bottom:-18px;
  }

  .ogd-guide-section{
    padding:58px 0;
  }

  .ogd-card,
  .ogd-stack,
  .ogd-compare > div,
  .ogd-vault,
  .ogd-fees,
  .ogd-review,
  .ogd-policy{
    border-radius:22px;
  }

  .ogd-card,
  .ogd-stack,
  .ogd-compare > div,
  .ogd-vault,
  .ogd-review{
    padding:22px;
  }

  .ogd-cta{
    padding:46px 22px;
  }
}

/* === Guest Guide Design Polish v2 — stronger visual hierarchy === */

.ogd-guide-topbar{
  position:relative;
  z-index:10;
}

.ogd-guide-hero{
  min-height:620px;
  display:flex;
  align-items:center;
}

.ogd-guide-hero h1{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  font-size:clamp(48px,7vw,82px);
}

.ogd-pills{
  max-width:860px;
}

.ogd-pills span{
  padding:9px 16px;
  backdrop-filter:blur(8px);
}

.ogd-two-col{
  margin-top:-28px;
  position:relative;
  z-index:4;
}

.ogd-card h2{
  font-size:clamp(28px,3.2vw,42px);
}

.ogd-card p{
  font-size:16px;
}

.ogd-stack{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,rgba(93,135,69,.45),rgba(166,111,52,.18)) border-box;
  border:1px solid transparent;
}

.ogd-section-label{
  color:var(--ogd-sage);
}

.ogd-guide-section > .ogd-guide-wrap > h2{
  font-size:clamp(34px,4vw,54px);
  max-width:850px;
}

.ogd-lead{
  max-width:850px;
  color:#566154;
}

.ogd-card-grid .ogd-card{
  position:relative;
  overflow:hidden;
}

.ogd-card-grid .ogd-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--ogd-sage),rgba(166,111,52,.5));
  opacity:.85;
}

.ogd-compare{
  gap:24px;
}

.ogd-compare-bad,
.ogd-compare-good{
  min-height:330px;
}

.ogd-compare-good{
  box-shadow:0 24px 60px rgba(93,135,69,.14);
}

.ogd-vault{
  margin-top:34px;
  background:
    radial-gradient(circle at 85% 15%,rgba(93,135,69,.28),transparent 32%),
    linear-gradient(135deg,#102417,#19321f);
}

.ogd-vault h3{
  font-family:"Lora",Georgia,serif;
}

.ogd-fees strong{
  font-size:26px;
}

.ogd-timeline{
  max-width:920px;
}

.ogd-timeline li{
  background:#fff;
  border:1px solid var(--ogd-border);
  border-radius:22px;
  padding:20px 24px 20px 20px;
  box-shadow:0 14px 34px rgba(22,39,26,.06);
}

.ogd-timeline li::after{
  display:none;
}

.ogd-timeline li::before{
  margin-top:2px;
}

.ogd-policies{
  box-shadow:0 22px 54px rgba(22,39,26,.09);
}

.ogd-policy h3{
  font-family:"Lora",Georgia,serif;
  font-size:21px;
}

.ogd-review{
  min-height:330px;
}

.ogd-faq{
  max-width:900px;
}

.ogd-faq details{
  border-radius:20px;
}

.ogd-cta{
  border:1px solid rgba(255,255,255,.12);
}

.ogd-cta p{
  font-size:17px;
}

@media(max-width:980px){
  .ogd-guide-hero{
    min-height:auto;
  }

  .ogd-two-col{
    margin-top:0;
  }

  .ogd-compare-bad,
  .ogd-compare-good{
    min-height:auto;
  }
}

@media(max-width:640px){
  .ogd-guide-hero h1{
    font-size:42px;
  }

  .ogd-pills span{
    width:100%;
  }

  .ogd-timeline li{
    padding:18px;
  }
}

/* === Guest Hero Refinement v3 — fix top section only === */

.ogd-guide-topbar{
  background:#fbf8f1 !important;
  border-bottom:1px solid #e2ded3 !important;
  padding:9px 30px !important;
  display:flex !important;
  justify-content:flex-start !important;
  gap:6px !important;
}

.ogd-guide-logo{
  color:#5d8745 !important;
  font-family:inherit !important;
  font-size:14px !important;
  font-weight:600 !important;
}

.ogd-guide-topbar span{
  color:#16271a !important;
  font-size:14px !important;
  font-weight:500 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
}

.ogd-guide-topbar span:before{
  content:"/ ";
  color:#7c8479;
}

.ogd-guide-hero{
  min-height:auto !important;
  padding:76px 0 82px !important;
  display:block !important;
}

.ogd-guide-hero:after{
  display:none !important;
}

.ogd-guide-hero h1{
  font-size:clamp(42px,5.1vw,68px) !important;
  max-width:820px !important;
  margin-bottom:22px !important;
  line-height:1.08 !important;
}

.ogd-hero-sub{
  color:rgba(255,255,255,.82) !important;
  font-size:18px !important;
  line-height:1.75 !important;
  max-width:740px !important;
  margin-bottom:34px !important;
}

.ogd-pills{
  max-width:980px !important;
  margin-bottom:34px !important;
}

.ogd-pills span{
  font-size:13px !important;
  padding:8px 15px !important;
}

.ogd-btn{
  padding:13px 28px !important;
  border-radius:12px !important;
}

@media(max-width:640px){
  .ogd-guide-topbar{
    padding:9px 18px !important;
    flex-wrap:wrap !important;
  }

  .ogd-guide-hero{
    padding:54px 0 60px !important;
  }

  .ogd-guide-hero h1{
    font-size:39px !important;
  }

  .ogd-hero-sub{
    font-size:16px !important;
  }
}

/* === Guest Hero Alignment + Review Link Fix === */

.ogd-guide-hero{
  text-align:center !important;
}

.ogd-guide-hero .ogd-guide-wrap{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
}

.ogd-hero-sub{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
  display:block !important;
}

.ogd-pills{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
}

.ogd-pills a,
.ogd-pills span{
  color:rgba(255,255,255,.9) !important;
  text-decoration:none !important;
}

.ogd-review-pill{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  padding:8px 15px;
  backdrop-filter:blur(8px);
}

.ogd-review-pill:hover{
  background:rgba(255,255,255,.16);
}


/* === Guest Intro Card Note === */
.ogd-card-note{
  margin-top:22px !important;
  padding-top:18px !important;
  border-top:1px solid rgba(255,255,255,.18) !important;
  color:rgba(255,255,255,.86) !important;
  font-size:15px !important;
  line-height:1.65 !important;
  font-style:italic;
}


/* === OGD Difference Card Note Fix === */
.ogd-difference-card{
  display:flex;
  flex-direction:column;
}

.ogd-card-note-light{
  margin-top:auto !important;
  padding-top:18px !important;
  border-top:1px solid var(--ogd-border) !important;
  color:var(--ogd-forest) !important;
  font-size:15px !important;
  line-height:1.65 !important;
  font-style:italic;
}

/* === Protection Stack Modern v1 === */
.ogd-stack-section{
  padding-top:28px !important;
}

.ogd-stack-modern{
  padding:38px 42px !important;
  border-radius:34px !important;
  background:
    radial-gradient(circle at 95% 10%, rgba(93,135,69,.08), transparent 34%),
    #fff !important;
  box-shadow:0 24px 70px rgba(22,39,26,.10) !important;
}

.ogd-stack-modern .ogd-stack-head{
  align-items:center !important;
  margin-bottom:30px !important;
}

.ogd-stack-modern .ogd-stack-head h2{
  font-size:clamp(32px,3.4vw,48px) !important;
  letter-spacing:-.03em !important;
}

.ogd-stack-modern .ogd-stack-head span{
  border:1px solid rgba(93,135,69,.22);
  background:#f7f5ef;
  padding:9px 16px;
  border-radius:999px;
  letter-spacing:.12em;
}

.ogd-stack-modern .ogd-flow{
  counter-reset:stackstep;
  grid-template-columns:repeat(7,1fr) !important;
  gap:14px !important;
}

.ogd-stack-modern .ogd-flow div{
  counter-increment:stackstep;
  min-height:176px !important;
  border-radius:24px !important;
  background:linear-gradient(180deg,#ffffff 0%,#fbf8f1 100%) !important;
  border:1px solid rgba(93,135,69,.18) !important;
  box-shadow:0 12px 32px rgba(22,39,26,.055);
  padding:24px 14px 20px !important;
  justify-content:flex-end !important;
}

.ogd-stack-modern .ogd-flow div:before{
  content:counter(stackstep);
  position:absolute;
  top:14px;
  left:14px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--ogd-sage);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  box-shadow:0 8px 18px rgba(93,135,69,.22);
}

.ogd-stack-modern .ogd-flow div:after{
  content:"→" !important;
  right:-15px !important;
  color:var(--ogd-sage) !important;
  font-size:24px;
}

.ogd-stack-modern .ogd-flow div:last-child:after{
  display:none !important;
}

.ogd-stack-modern .ogd-flow strong{
  font-size:16px !important;
  line-height:1.15 !important;
  margin-bottom:8px !important;
}

.ogd-stack-modern .ogd-flow small{
  font-size:14px !important;
  line-height:1.35 !important;
  color:#7c8479 !important;
}

@media(max-width:1100px){
  .ogd-stack-modern .ogd-flow{
    grid-template-columns:repeat(2,1fr) !important;
  }

  .ogd-stack-modern .ogd-flow div:after{
    display:none !important;
  }
}

@media(max-width:640px){
  .ogd-stack-section{
    padding-top:14px !important;
  }

  .ogd-stack-modern{
    padding:26px 18px !important;
  }

  .ogd-stack-modern .ogd-stack-head{
    display:block !important;
  }

  .ogd-stack-modern .ogd-stack-head span{
    display:inline-block;
    margin-top:10px;
  }

  .ogd-stack-modern .ogd-flow{
    grid-template-columns:1fr !important;
  }

  .ogd-stack-modern .ogd-flow div{
    min-height:132px !important;
    text-align:left !important;
    align-items:flex-start !important;
    padding-left:58px !important;
  }

  .ogd-stack-modern .ogd-flow div:before{
    top:24px;
    left:18px;
  }
}

/* === Protection Stack Real SVG Icons === */
.ogd-stack-icon{
  width:54px;
  height:54px;
  border-radius:999px;
  background:var(--ogd-sage-pale);
  border:1px solid rgba(93,135,69,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
}

.ogd-stack-icon svg{
  width:28px;
  height:28px;
  fill:none;
  stroke:var(--ogd-sage);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ogd-stack-modern .ogd-flow div{
  justify-content:center !important;
  padding-top:38px !important;
}

.ogd-stack-modern .ogd-flow div:before{
  top:12px !important;
  left:12px !important;
}

@media(max-width:640px){
  .ogd-stack-icon{
    margin:0 0 10px;
  }

  .ogd-stack-modern .ogd-flow div{
    padding-top:22px !important;
  }
}

/* === Protection Stack Alignment Fix === */

.ogd-stack-modern .ogd-flow{
  align-items:stretch !important;
}

.ogd-stack-modern .ogd-flow div{
  display:grid !important;
  grid-template-rows:34px 72px 54px 48px !important;
  align-items:center !important;
  justify-items:center !important;
  text-align:center !important;
  min-height:250px !important;
  padding:18px 12px 22px !important;
}

.ogd-stack-modern .ogd-flow div:before{
  position:static !important;
  grid-row:1 !important;
  margin:0 auto !important;
}

.ogd-stack-icon{
  grid-row:2 !important;
  width:64px !important;
  height:64px !important;
  margin:0 auto !important;
}

.ogd-stack-icon svg{
  width:34px !important;
  height:34px !important;
}

.ogd-stack-modern .ogd-flow strong{
  grid-row:3 !important;
  min-height:44px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 !important;
}

.ogd-stack-modern .ogd-flow small{
  grid-row:4 !important;
  min-height:42px !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:center !important;
  margin:0 !important;
}

.ogd-stack-modern .ogd-flow div:after{
  top:50% !important;
}

@media(max-width:1100px){
  .ogd-stack-modern .ogd-flow div{
    min-height:190px !important;
  }
}

@media(max-width:640px){
  .ogd-stack-modern .ogd-flow div{
    grid-template-rows:auto !important;
    grid-template-columns:34px 58px 1fr !important;
    min-height:auto !important;
    text-align:left !important;
    justify-items:start !important;
    column-gap:14px !important;
    padding:18px !important;
  }

  .ogd-stack-modern .ogd-flow div:before{
    grid-column:1 !important;
    grid-row:1 / span 2 !important;
  }

  .ogd-stack-icon{
    grid-column:2 !important;
    grid-row:1 / span 2 !important;
    width:48px !important;
    height:48px !important;
  }

  .ogd-stack-icon svg{
    width:26px !important;
    height:26px !important;
  }

  .ogd-stack-modern .ogd-flow strong{
    grid-column:3 !important;
    grid-row:1 !important;
    min-height:0 !important;
    justify-content:flex-start !important;
  }

  .ogd-stack-modern .ogd-flow small{
    grid-column:3 !important;
    grid-row:2 !important;
    min-height:0 !important;
    justify-content:flex-start !important;
  }
}

/* === Protection Stack Number Position Fix === */

.ogd-stack-modern .ogd-flow div{
  position:relative !important;
  grid-template-rows:76px 60px 52px !important;
  padding:48px 12px 22px !important;
}

.ogd-stack-modern .ogd-flow div:before{
  position:absolute !important;
  top:18px !important;
  left:18px !important;
  margin:0 !important;
  grid-row:auto !important;
}

.ogd-stack-icon{
  grid-row:1 !important;
}

.ogd-stack-modern .ogd-flow strong{
  grid-row:2 !important;
}

.ogd-stack-modern .ogd-flow small{
  grid-row:3 !important;
}

@media(max-width:640px){
  .ogd-stack-modern .ogd-flow div:before{
    position:absolute !important;
    top:18px !important;
    left:18px !important;
  }
}

/* === Guest Guide Spacing Fix v1 === */

/* General section rhythm */
.ogd-guide-section{
  padding-top:56px !important;
  padding-bottom:56px !important;
}

/* First cards after hero */
.ogd-guide > section.ogd-guide-section:nth-of-type(2){
  padding-top:58px !important;
  padding-bottom:34px !important;
}

/* Protection Stack section */
.ogd-guide > section.ogd-stack-section:nth-of-type(3){
  padding-top:22px !important;
  padding-bottom:42px !important;
}

/* Protection Features section immediately after stack */
.ogd-guide > section.ogd-guide-section:nth-of-type(4){
  padding-top:44px !important;
}

/* Stop intro cards floating too far from the stack */
.ogd-two-col{
  margin-top:0 !important;
}

/* Make stack container tighter vertically */
.ogd-stack-modern{
  margin-top:0 !important;
  margin-bottom:0 !important;
  padding-top:34px !important;
  padding-bottom:34px !important;
}

/* Reduce empty space inside stack header */
.ogd-stack-modern .ogd-stack-head{
  margin-bottom:24px !important;
}

/* Prevent massive gaps under stack cards */
.ogd-stack-modern .ogd-flow{
  margin-bottom:0 !important;
}

/* Protection features title area */
.ogd-guide > section.ogd-guide-section:nth-of-type(4) .ogd-lead{
  margin-bottom:22px !important;
}

/* Card grid spacing */
.ogd-card-grid{
  margin-top:22px !important;
}

/* If viewport is wide enough, keep stack horizontal */
@media(min-width:980px){
  .ogd-stack-modern .ogd-flow{
    grid-template-columns:repeat(7,1fr) !important;
  }
}

/* Tablet spacing */
@media(max-width:980px){
  .ogd-guide-section{
    padding-top:44px !important;
    padding-bottom:44px !important;
  }

  .ogd-guide > section.ogd-stack-section:nth-of-type(3){
    padding-top:18px !important;
    padding-bottom:34px !important;
  }
}

/* Mobile spacing */
@media(max-width:640px){
  .ogd-guide-section{
    padding-top:34px !important;
    padding-bottom:34px !important;
  }

  .ogd-guide > section.ogd-guide-section:nth-of-type(2){
    padding-top:36px !important;
    padding-bottom:24px !important;
  }

  .ogd-guide > section.ogd-stack-section:nth-of-type(3){
    padding-top:16px !important;
    padding-bottom:28px !important;
  }

  .ogd-guide > section.ogd-guide-section:nth-of-type(4){
    padding-top:32px !important;
  }
}

/* === Mobile Protection Stack Fix === */
@media(max-width:640px){

  .ogd-stack-section{
    padding-top:26px !important;
    padding-bottom:34px !important;
  }

  .ogd-stack-modern{
    width:calc(100% - 24px) !important;
    padding:28px 18px !important;
    border-radius:28px !important;
  }

  .ogd-stack-modern .ogd-stack-head{
    margin-bottom:22px !important;
  }

  .ogd-stack-modern .ogd-stack-head h2{
    font-size:34px !important;
    line-height:1.1 !important;
  }

  .ogd-stack-modern .ogd-stack-head span{
    font-size:11px !important;
    padding:8px 12px !important;
    letter-spacing:.09em !important;
  }

  .ogd-stack-modern .ogd-flow{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .ogd-stack-modern .ogd-flow div{
    display:grid !important;
    grid-template-columns:34px 52px 1fr !important;
    grid-template-rows:auto auto !important;
    column-gap:14px !important;
    min-height:auto !important;
    padding:16px 18px !important;
    border-radius:20px !important;
    text-align:left !important;
    align-items:center !important;
    justify-items:start !important;
  }

  .ogd-stack-modern .ogd-flow div:before{
    position:static !important;
    grid-column:1 !important;
    grid-row:1 / span 2 !important;
    width:28px !important;
    height:28px !important;
    margin:0 !important;
  }

  .ogd-stack-modern .ogd-flow div:after{
    display:none !important;
  }

  .ogd-stack-icon{
    grid-column:2 !important;
    grid-row:1 / span 2 !important;
    width:46px !important;
    height:46px !important;
    margin:0 !important;
  }

  .ogd-stack-icon svg{
    width:24px !important;
    height:24px !important;
  }

  .ogd-stack-modern .ogd-flow strong{
    grid-column:3 !important;
    grid-row:1 !important;
    min-height:0 !important;
    font-size:16px !important;
    line-height:1.2 !important;
    justify-content:flex-start !important;
    margin:0 0 3px !important;
  }

  .ogd-stack-modern .ogd-flow small{
    grid-column:3 !important;
    grid-row:2 !important;
    min-height:0 !important;
    font-size:14px !important;
    line-height:1.35 !important;
    justify-content:flex-start !important;
    align-items:flex-start !important;
    margin:0 !important;
  }
}
