:root{
  --white:#ffffff;
  --black:#0b0b0b;
  --brown:#3a2a1d;
  --brown2:#24180f;
  --gold:#d6b35a;
  --gold2:#b9922f;

  --bg:#fbfbfd;
  --card:#ffffff;
  --text:#141414;
  --muted:#5c5c5c;
  --stroke: rgba(20,20,20,.12);

  --shadow: 0 18px 50px rgba(0,0,0,.08);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(214,179,90,.25), transparent 60%),
              radial-gradient(900px 600px at 80% -10%, rgba(58,42,29,.18), transparent 60%),
              var(--bg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

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

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px;
  width:auto; height:auto;
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(251,251,253,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,20,20,.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:38px; height:38px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--black), var(--brown));
  color: var(--gold);
  font-weight:900;
  box-shadow: 0 12px 26px rgba(0,0,0,.15);
}
.brand-name{ font-weight: 900; letter-spacing: -.02em; }
.brand-sub{ font-size: 12px; color: var(--muted); margin-top:2px; display:block; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight: 700;
  font-size: 14px;
}
.nav a{ color:#1b1b1b; }
.nav-cta{
  padding:10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  box-shadow: 0 14px 30px rgba(214,179,90,.25);
}

.nav-toggle{
  display:none;
  border:0;
  background: transparent;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.1);
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#111;
  margin:4px auto;
  border-radius: 99px;
}

.mobile-nav{
  border-top: 1px solid rgba(20,20,20,.08);
  background: rgba(251,251,253,.92);
}
.mobile-nav-inner{
  padding: 14px 0 18px;
  display:grid;
  gap:10px;
}
.mobile-nav a{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.08);
  background: #fff;
  font-weight: 800;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(20,20,20,.12);
  font-weight: 900;
  letter-spacing: -.01em;
}
.btn-gold{
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#111;
  box-shadow: 0 18px 40px rgba(214,179,90,.26);
}
.btn-dark{
  background: linear-gradient(135deg, var(--black), var(--brown));
  color: #fff;
  border: 0;
}
.btn-ghost{
  background: transparent;
}

/* Hero */
.hero{
  padding: 56px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}
.hero-card{
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20,20,20,.08);
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(214,179,90,.25), transparent 55%),
    radial-gradient(700px 400px at 100% 0%, rgba(58,42,29,.18), transparent 55%),
    #fff;
}
.hero-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.12);
  background: rgba(255,255,255,.7);
  font-weight: 800;
  font-size: 13px;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
  max-width: 56ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}
.trust-row{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.1);
  background: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 13px;
}

/* Side panel */
.hero-side{
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(20,20,20,.08);
  background: linear-gradient(135deg, var(--black), var(--brown2));
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
  position: relative;
  overflow:hidden;
}
.hero-side:before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214,179,90,.35), transparent 60%);
  transform: rotate(18deg);
}
.hero-side h3{
  margin:0 0 8px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.hero-side .muted{ color: rgba(255,255,255,.72); font-weight:600; }
.hero-side .mini{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.mini-card{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.mini-card strong{ color: var(--gold); }

/* Sections */
.section{
  padding: 28px 0;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom: 14px;
}
.section h2{
  margin: 0;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -.02em;
}
.section .lead{
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

/* Cards grid */
.grid{
  display:grid;
  gap:14px;
}
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.card{
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(20,20,20,.08);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.card h4{ margin:0 0 6px; letter-spacing:-.01em; }
.card p{ margin:0; color:var(--muted); font-weight:600; line-height:1.55; }
.card .badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.1);
  background: rgba(214,179,90,.18);
  margin-bottom: 10px;
}

/* CTA band */
.cta-band{
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(20,20,20,.08);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(214,179,90,.25), transparent 55%),
    linear-gradient(135deg, rgba(58,42,29,.12), rgba(11,11,11,.04)),
    #fff;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* Footer */
.footer{
  margin-top: 34px;
  padding: 34px 0;
  background: #0b0b0b;
  color: #fff;
}
.footer-inner{ }
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr 1fr;
  gap: 18px;
}
.footer a{ color: rgba(255,255,255,.78); display:block; padding: 6px 0; font-weight:700; }
.footer a:hover{ color:#fff; opacity:1; }
.footer-head{ font-weight: 900; margin-bottom: 8px; color: var(--gold); }
.footer-title{ font-weight: 900; letter-spacing: -.02em; }
.footer-sub{ color: rgba(255,255,255,.7); font-weight: 600; margin-top: 4px; }
.footer-brand{ display:flex; gap:12px; align-items:flex-start; }
.footer .muted{ color: rgba(255,255,255,.65); font-weight:600; }
.fineprint{ margin-top: 14px; color: rgba(255,255,255,.55); font-weight: 600; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav{ display:none; }
  .nav-toggle{ display:inline-block; }
}
@media (max-width: 520px){
  .container{ width: calc(100% - 26px); }
  .hero-card{ padding: 24px; border-radius: 22px; }
  .hero-side{ padding: 22px; border-radius: 22px; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
}






/* Services page */
.svc-tabs{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.svc-tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.12);
  background: rgba(255,255,255,.85);
  font-weight: 900;
  cursor:pointer;
}
.svc-tab.is-active{
  background: linear-gradient(135deg, var(--black), var(--brown));
  color: #fff;
  border-color: rgba(255,255,255,.10);
}

.svc-tools{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.svc-search{
  flex: 1 1 340px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.svc-search input{
  width:100%;
  border:0;
  outline:0;
  font-weight: 800;
  font-size: 14px;
  background: transparent;
}

.svc-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.12);
  background: rgba(255,255,255,.85);
  font-weight: 900;
  cursor:pointer;
  font-size: 13px;
}
.chip.is-active{
  background: rgba(214,179,90,.22);
  border-color: rgba(214,179,90,.45);
}

.svc-panels{ margin-top: 14px; }
.svc-panel{ display:none; }
.svc-panel.is-active{ display:block; }

.svc-grid{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-card{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(20,20,20,.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.svc-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.svc-ico{
  width:42px; height:42px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(214,179,90,.18);
  border: 1px solid rgba(214,179,90,.35);
  font-size: 18px;
}
.svc-badge{
  font-weight: 900;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20,20,20,.05);
  border: 1px solid rgba(20,20,20,.08);
  color:#222;
}
.svc-card h3{
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.svc-card p{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}
.svc-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
  align-items:center;
}

.svc-corporate{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 980px){
  .svc-grid{ grid-template-columns: 1fr; }
  .svc-corporate{ grid-template-columns: 1fr; }
}

/* How it works */
.how-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.how-block{
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(20,20,20,.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.how-block h3{ margin:0 0 4px; letter-spacing:-.02em; }
.how-block .muted{ color: var(--muted); font-weight:600; margin:0; }
.how-head{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-bottom: 12px;
}
.how-ico{
  width:44px; height:44px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(214,179,90,.18);
  border: 1px solid rgba(214,179,90,.35);
  font-size: 18px;
}
.how-ico.dark{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.how-steps{ display:grid; gap: 10px; margin-top: 12px; }
.how-step{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(20,20,20,.08);
  background: rgba(251,251,253,.7);
}
.how-step h4{ margin:0 0 4px; letter-spacing:-.02em; }
.how-step p{ margin:0; color: var(--muted); font-weight:600; line-height:1.65; }

.num{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--black), var(--brown));
  color: var(--gold);
  flex: 0 0 auto;
}
.num.dark{
  background: rgba(214,179,90,.2);
  color: #111;
  border: 1px solid rgba(214,179,90,.35);
}

.how-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
  align-items:center;
}

/* Dark variant */
.how-dark{
  background: linear-gradient(135deg, var(--black), var(--brown2));
  color:#fff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}
.how-dark .how-step{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.how-dark .how-step p{ color: rgba(255,255,255,.72); }
.how-dark .muted{ color: rgba(255,255,255,.72); }

@media (max-width: 980px){
  .how-wrap{ grid-template-columns: 1fr; }
}


.price-list{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}
.price-list li{
  padding:8px 0;
  border-bottom:1px solid rgba(20,20,20,.08);
  font-weight:600;
}

.estimator{
  margin-top:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(20,20,20,.08);
  background:rgba(251,251,253,.7);
}
.est-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
.est-grid input, .est-grid select{
  width:100%;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(20,20,20,.15);
  font-weight:600;
}
.estimate-result{
  margin-top:12px;
  font-weight:800;
  color:var(--brown);
}

.sourcing-table table{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
}
.sourcing-table th, .sourcing-table td{
  padding:10px;
  border:1px solid rgba(20,20,20,.1);
  text-align:left;
}
.sourcing-table th{
  background:rgba(214,179,90,.2);
}



/* Corporate page */
.corp-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: stretch;
}
.corp-hero-card{
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(20,20,20,.08);
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(214,179,90,.25), transparent 55%),
    radial-gradient(700px 400px at 100% 0%, rgba(58,42,29,.18), transparent 55%),
    #fff;
  box-shadow: var(--shadow);
}
.corp-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.corp-title .gold{ color: var(--gold2); }
.corp-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
  max-width: 62ch;
}
.corp-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 10px;
}

.corp-hero-side{
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(20,20,20,.08);
  background: linear-gradient(135deg, var(--black), var(--brown2));
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
  position: relative;
  overflow:hidden;
}
.corp-hero-side:before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214,179,90,.35), transparent 60%);
  transform: rotate(18deg);
}
.corp-hero-side .muted{ color: rgba(255,255,255,.72); font-weight:600; }

.corp-plans{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: stretch;
}

.plan-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.plan{
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(20,20,20,.08);
  background: rgba(251,251,253,.7);
}
.plan-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.plan-tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.12);
  background: rgba(255,255,255,.9);
  font-weight: 900;
  font-size: 12px;
}
.plan-tag.gold{
  background: rgba(214,179,90,.22);
  border-color: rgba(214,179,90,.45);
}
.plan ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 980px){
  .corp-hero{ grid-template-columns: 1fr; }
  .corp-plans{ grid-template-columns: 1fr; }
  .plan-grid{ grid-template-columns: 1fr; }
}


/* Become an agent page */
.agent-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: stretch;
}
.agent-hero-card{
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(20,20,20,.08);
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(214,179,90,.25), transparent 55%),
    radial-gradient(700px 400px at 100% 0%, rgba(58,42,29,.18), transparent 55%),
    #fff;
  box-shadow: var(--shadow);
}
.agent-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.agent-title .gold{ color: var(--gold2); }
.agent-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
  max-width: 62ch;
}
.agent-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 10px;
}
.agent-hero-side{
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(20,20,20,.08);
  background: linear-gradient(135deg, var(--black), var(--brown2));
  color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
  position: relative;
  overflow:hidden;
}
.agent-hero-side:before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214,179,90,.35), transparent 60%);
  transform: rotate(18deg);
}
.agent-hero-side .muted{ color: rgba(255,255,255,.72); font-weight:600; }

.agent-benefits{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 980px){
  .agent-hero{ grid-template-columns: 1fr; }
  .agent-benefits{ grid-template-columns: 1fr; }
}


/* Contact page */
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-wrap input,
.contact-wrap textarea{
  width:100%;
  padding:10px;
  margin:6px 0 12px;
  border-radius:12px;
  border:1px solid rgba(20,20,20,.15);
  font-weight:600;
}

@media (max-width:980px){
  .contact-wrap{ grid-template-columns:1fr; }
}


.review-card .stars{
  font-size:18px;
  color: var(--gold2);
  margin-bottom:8px;
}
.review-card strong{
  display:block;
  margin-top:8px;
  font-weight:900;
}