:root{
  --paper:#fbf7ef;
  --white:#fffdf8;
  --ink:#1b2433;
  --muted:#566273;
  --line:#ded2c0;
  --navy:#19395f;
  --orange:#df5a2a;
  --soft:#f3eadc;
}

*{box-sizing:border-box}
html,body{margin:0;max-width:100%;overflow-x:hidden}
body{
  background:var(--paper);
  color:var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:1.55;
}
img{max-width:100%}
a{color:inherit}

.container{
  width:min(1060px,100%);
  margin:0 auto;
  padding:0 22px;
}

.rr-header{
  background:#fffdf8;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.rr-nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.rr-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--ink);
  text-decoration:none;
  flex:0 0 auto;
}
.rr-logo{
  width:50px;height:50px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--navy);color:white;
  font-weight:900;letter-spacing:.02em;
}
.rr-brand-copy{display:grid;gap:2px}
.rr-brand-copy strong{font-size:22px;line-height:1.05}
.rr-brand-copy small{font-size:13px;color:var(--muted)}
.rr-links{
  display:flex;align-items:center;gap:18px;
}
.rr-links a{
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  color:var(--ink);
  white-space:nowrap;
}
.rr-desktop-cta{
  background:var(--navy);
  color:#fff!important;
  padding:12px 18px;
  border-radius:10px;
}

.hero,.section,.page-head{border-bottom:1px solid var(--line)}
.hero{padding:68px 0}
.page-head{padding:64px 0 28px}
.section{padding:60px 0}
.white{background:#fffbf4}

.hero-grid,.split{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:34px;
  align-items:center;
}
.narrow{max-width:780px;margin:0 auto}

.eyebrow,.kicker{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:8px;
  padding:8px 12px;
  color:var(--navy);
  font-weight:900;
  font-size:13px;
  margin:0 0 20px;
}

h1,h2,h3{
  font-family: Georgia, "Times New Roman", serif;
  color:var(--ink);
  line-height:1.05;
  letter-spacing:-.035em;
  margin:0 0 16px;
}
h1{font-size:clamp(46px,7vw,78px)}
h2{font-size:clamp(34px,4.5vw,52px)}
h3{font-size:28px}

.lead{
  font-family: Georgia, "Times New Roman", serif;
  color:var(--muted);
  font-size:24px;
  line-height:1.45;
  margin:0 0 24px;
}
.section-copy{
  font-family: Georgia, "Times New Roman", serif;
  color:var(--muted);
  font-size:21px;
  margin:0;
}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:10px;
  font-weight:900;
  text-decoration:none;
  border:1px solid var(--line);
  font-family:Arial,Helvetica,sans-serif;
}
.btn-primary{background:var(--orange);border-color:var(--orange);color:#fff!important}
.btn-light{background:#fffdf8;color:var(--ink)!important}
.btn-muted{background:#e8dfcf;color:#6b7280!important}
.trust-line{
  color:#5b6472;
  font-weight:800;
  margin:18px 0 0;
}

.plain-card,.start-card,.mini-list div,.portal-list,.value-block,.pkg,.helper-row,.trust-box,.faq-item,.example-card,.policy-card{
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:14px;
}
.plain-card{padding:24px}
.plain-card h2{font-size:34px}
.plain-card p,.plain-card li{color:var(--muted)}
.plain-card ul{margin:14px 0 0;padding-left:20px}

.mini-list{display:grid;gap:14px}
.mini-list div{padding:20px}
.mini-list strong{display:block;font-size:20px;margin-bottom:6px}
.mini-list span{color:var(--muted)}

.portal-list{padding:22px}
.portal-list div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  font-weight:900;
}
.portal-list div:last-child{border-bottom:0}
.portal-list b{color:var(--navy);font-size:22px}

.value-block{
  padding:28px;
  max-width:760px;
  margin:0 auto;
}
.value-block p{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--muted);
  font-size:22px;
}

/* Packages */
.package-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.pkg{
  padding:22px;
  display:flex;
  flex-direction:column;
  min-height:470px;
}
.pkg.featured{border:2px solid var(--orange)}
.pkg small{
  color:var(--orange);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:12px;
}
.pkg h3{font-size:28px;margin-top:8px}
.price,.pkg .price{
  font-size:34px;
  font-weight:900;
  margin-bottom:14px;
}
.pkg p,.pkg li{color:var(--muted)}
.pkg ul{padding-left:20px;margin:12px 0 22px}
.pkg .btn{margin-top:auto;width:100%}
.loading-packages{font-weight:800;color:var(--muted);margin-bottom:16px}
[hidden]{display:none!important}

/* Helpers */
.helper-list{display:grid;gap:16px}
.helper-row{
  display:grid;
  grid-template-columns:78px 1fr;
  gap:18px;
  padding:22px;
}
.helper-avatar{
  width:62px;height:62px;border-radius:16px;
  display:grid;place-items:center;
  background:var(--navy);color:white;
  font-weight:900;font-size:19px;
}
.helper-role{
  color:var(--orange)!important;
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.05em;
  margin:0 0 6px!important;
}
.helper-row h2{font-size:36px}
.helper-row p{color:var(--muted)}
.helper-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.helper-tags span{
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--navy);
  font-weight:900;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
}

/* Generic existing pages */
.two-col,.trust-grid,.helpers-grid,.grid-2,.examples-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.card,.helper-card,.trust-item,.faq-card{
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:14px;
  padding:22px;
}
.footer{
  background:#fffdf8;
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-row strong{display:block;color:var(--ink)}
.footer-links{display:flex;gap:12px;flex-wrap:wrap}
.footer a{text-decoration:none;font-weight:800}

/* Mobile */
@media(max-width:900px){
  .package-grid{grid-template-columns:1fr 1fr}
  .hero-grid,.split,.two-col,.trust-grid,.helpers-grid,.grid-2,.examples-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .container{padding:0 18px}
  .rr-header{position:static}
  .rr-nav{display:block;min-height:auto;padding:18px 0 14px}
  .rr-brand{margin-bottom:16px}
  .rr-logo{width:56px;height:56px}
  .rr-brand-copy strong{font-size:22px}
  .rr-brand-copy small{font-size:14px}
  .rr-links{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
  }
  .rr-links a{
    border:1px solid var(--line);
    background:#fffdf8;
    border-radius:999px;
    padding:8px 12px;
    min-height:38px;
    font-size:14px;
  }
  .rr-desktop-cta{display:none!important}

  .hero{padding:46px 0}
  .page-head{padding:44px 0 20px}
  .section{padding:44px 0}

  h1{font-size:42px}
  h2{font-size:34px}
  .lead{font-size:20px}
  .section-copy{font-size:19px}

  .actions .btn{width:100%}
  .package-grid{grid-template-columns:1fr}
  .pkg{min-height:auto}
  .helper-row{grid-template-columns:1fr}
  .footer-row{display:grid}
}
@media(max-width:420px){
  h1{font-size:38px}
  .lead{font-size:18px}
  .rr-links a{font-size:13px;padding:8px 11px}
}
