
:root {
  --navy: #2B0733;
  --navy-2: #4C0758;
  --ink: #221427;
  --muted: #6E6073;
  --gold: #B68A10;
  --gold-2: #D9B75E;
  --sand: #F7F3E8;
  --mist: #EFEADB;
  --white: #ffffff;
  --green: #7C0F89;
  --line: rgba(11, 19, 36, 0.12);
  --shadow: 0 20px 45px rgba(11, 19, 36, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.top-strip .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 750;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand img { width: 44px; height: 44px; }
.brand span small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.94rem;
  color: #28354c;
}
.nav-links a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-color: var(--gold); }
.nav-cta {
  padding: 10px 16px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 999px;
  color: var(--navy) !important;
  background: rgba(181, 138, 56, 0.08);
}

.hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(215,180,106,0.18), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, #ffffff 45%, var(--mist) 100%);
  overflow: hidden;
}
.hero .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 760;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3, h4 { line-height: 1.12; color: var(--navy); margin: 0; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.55rem, 5.5vw, 4.95rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead {
  margin-top: 22px;
  max-width: 680px;
  color: #43506a;
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 760;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 12px 22px rgba(11, 19, 36, 0.22); }
.btn-secondary { background: rgba(255,255,255,0.82); color: var(--navy); border-color: var(--line); }
.btn-gold { background: var(--gold); color: var(--navy); }

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(181,138,56,0.64), rgba(255,255,255,0), rgba(47,103,92,0.34));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-card img { border-radius: 26px; background: var(--navy); }
.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.metric {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 14px;
  min-height: 94px;
}
.metric strong { display: block; font-size: 1.6rem; line-height: 1; color: var(--gold-2); }
.metric span { display: block; margin-top: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.74); }

main section { padding: 86px 24px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.kicker { color: var(--gold); font-weight: 790; text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.78rem; margin-bottom: 12px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 30px rgba(11, 19, 36, 0.06);
}
.card.dark {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.08);
}
.card.dark h3, .card.dark h2 { color: #fff; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }
.card.dark p, .card.dark li { color: rgba(255,255,255,0.72); }
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(181,138,56,0.14);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-weight: 850;
}
.service-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 800;
}
.card.dark .service-link { color: var(--gold-2); }

.band { background: var(--navy); color: rgba(255,255,255,0.78); }
.band h2, .band h3 { color: var(--white); }
.band .kicker { color: var(--gold-2); }
.band .section-head p { color: rgba(255,255,255,0.72); }
.band .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); box-shadow: none; }
.band .card p, .band .card li { color: rgba(255,255,255,0.72); }
.band .card h3 { color: #fff; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split img { border-radius: 28px; box-shadow: var(--shadow); }
.check-list, .plain-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.check-list li, .plain-list li {
  position: relative;
  padding-left: 31px;
  color: #43506a;
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.65);
}
.plain-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.process {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 78px;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: var(--sand);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 850;
  border: 1px solid var(--line);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); }

.quote-panel {
  background: linear-gradient(135deg, var(--navy), #17243a);
  border-radius: 34px;
  padding: clamp(32px, 6vw, 64px);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.quote-panel:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(181,138,56,0.18);
}
.quote-panel h2 { color: #fff; max-width: 760px; }
.quote-panel p { margin-top: 18px; max-width: 790px; color: rgba(255,255,255,0.72); }

.cta {
  background:
    linear-gradient(135deg, rgba(181,138,56,0.2), rgba(47,103,92,0.14)),
    var(--sand);
}
.cta-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow);
}
.cta-card p { color: var(--muted); margin-top: 16px; }

.form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.form label { font-weight: 720; color: var(--navy); font-size: 0.92rem; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form textarea { min-height: 130px; resize: vertical; }
.form small { color: var(--muted); }

.footer {
  background: #7C0F89;
  color: rgba(255,255,255,0.72);
  padding: 56px 24px 34px;
}
.footer .inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 34px; }
.footer h4 { color: #fff; margin-bottom: 14px; }
.footer a { color: rgba(255,255,255,0.76); display: block; margin: 8px 0; }
.footer .fine-print {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 28px;
  padding-top: 22px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
}
.disclaimer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.86rem;
}

.page-title .inner { padding-top: 66px; padding-bottom: 62px; }
.page-title h1 { max-width: 930px; }
.page-title .lead { max-width: 800px; }
.breadcrumb { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--green); font-weight: 740; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,0.72); font-weight: 720; font-size: 0.88rem; color: var(--navy); }
.table-like { display: grid; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.table-row { display: grid; grid-template-columns: 0.9fr 1.4fr; border-bottom: 1px solid var(--line); }
.table-row:last-child { border-bottom: 0; }
.table-row strong, .table-row span { padding: 18px; }
.table-row strong { background: var(--sand); color: var(--navy); }
.table-row span { color: var(--muted); }

@media (max-width: 920px) {
  .hero .inner, .split, .section-head, .cta-card { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .footer .inner { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  main section { padding: 64px 20px; }
}

@media (max-width: 560px) {
  .hero .inner { padding-top: 60px; }
  .hero-metric-grid { grid-template-columns: 1fr; }
  .step { padding-left: 0; padding-top: 70px; }
  .table-row { grid-template-columns: 1fr; }
}


/* Rozis Holdings supplied brand theme overrides
   Logo colour sample: Purple #7C0F89, Ivory #EAE7D6, Gold #B68A10. */
:root {
  --rozis-purple: #7C0F89;
  --rozis-purple-dark: #2B0733;
  --rozis-purple-mid: #5F096D;
  --rozis-ivory: #EAE7D6;
  --rozis-gold: #B68A10;
  --rozis-gold-light: #D9B75E;
}

.top-strip {
  background: var(--rozis-purple-dark);
  color: rgba(234, 231, 214, 0.88);
}
.site-header {
  background: rgba(124, 15, 137, 0.96);
  border-bottom: 1px solid rgba(182, 138, 16, 0.28);
}
.nav { padding-top: 12px; padding-bottom: 12px; }
.brand {
  min-width: 275px;
  color: var(--rozis-ivory);
}
.brand span { display: none; }
.brand img {
  width: min(305px, 70vw);
  height: auto;
  border-radius: 0;
  object-fit: contain;
}
.nav-links { color: rgba(234, 231, 214, 0.88); }
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: var(--rozis-gold-light);
}
.nav-cta {
  border-color: rgba(234, 231, 214, 0.68) !important;
  color: var(--rozis-purple-dark) !important;
  background: var(--rozis-ivory);
}

.hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(217,183,94,0.24), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(234,231,214,0.14), transparent 28%),
    linear-gradient(135deg, var(--rozis-purple) 0%, var(--rozis-purple-mid) 58%, var(--rozis-purple-dark) 100%);
}
.hero .eyebrow,
.hero .breadcrumb,
.hero .breadcrumb a,
.hero h1,
.hero h2,
.hero .lead,
.hero .tag {
  color: var(--rozis-ivory);
}
.hero .eyebrow:before { background: var(--rozis-gold-light); }
.hero .lead { color: rgba(234, 231, 214, 0.82); }
.hero .tag {
  border-color: rgba(234, 231, 214, 0.28);
  background: rgba(234, 231, 214, 0.10);
}
.hero-card {
  background: rgba(234, 231, 214, 0.10);
  border-color: rgba(234, 231, 214, 0.18);
  box-shadow: 0 28px 60px rgba(43,7,51,0.25);
}
.hero-card:before {
  background: linear-gradient(135deg, rgba(217,183,94,0.75), rgba(234,231,214,0.10), rgba(124,15,137,0.36));
}
.hero-card img { background: var(--rozis-purple-dark); }
.btn-primary {
  background: var(--rozis-gold);
  color: var(--rozis-purple-dark);
  box-shadow: 0 14px 26px rgba(43,7,51,0.26);
}
.btn-secondary {
  background: rgba(234,231,214,0.10);
  color: var(--rozis-ivory);
  border-color: rgba(234,231,214,0.36);
}
.btn-gold { background: var(--rozis-gold); color: var(--rozis-purple-dark); }
.kicker { color: var(--rozis-purple); }
.icon { background: rgba(124,15,137,0.08); color: var(--rozis-purple); }
.card.dark,
.band,
.metric,
.quote-panel {
  background: var(--rozis-purple-dark);
}
.metric strong,
.band .kicker,
.card.dark .service-link,
.footer .service-link { color: var(--rozis-gold-light) !important; }
.cta {
  background:
    linear-gradient(135deg, rgba(124,15,137,0.10), rgba(182,138,16,0.18)),
    var(--rozis-ivory);
}
.footer {
  background: var(--rozis-purple);
  color: rgba(234,231,214,0.78);
}
.footer h4,
.footer .brand { color: #fff; }
.footer a { color: rgba(234,231,214,0.82); }
.footer .fine-print {
  border-top-color: rgba(234,231,214,0.16);
  color: rgba(234,231,214,0.62);
}
.disclaimer {
  background: rgba(43,7,51,0.22);
  border-color: rgba(234,231,214,0.14);
}
.table-row strong { background: #F7F3E8; }

@media (max-width: 920px) {
  .brand { min-width: 0; }
}
