
:root{
  --rrit-navy:#07111f;
  --rrit-dark:#0f172a;
  --rrit-blue:#0284c7;
  --rrit-sky:#38bdf8;
  --rrit-cyan:#ecfeff;
  --rrit-orange:#f97316;
  --rrit-green:#14b8a6;
  --rrit-muted:#64748b;
  --rrit-line:#e2e8f0;
  --rrit-light:#f8fafc;
  --rrit-white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--rrit-dark);
  background:#fff;
}
a{color:inherit}
.top-strip{
  background:#06101d;
  color:#dbeafe;
  font-size:14px;
  padding:9px 5%;
}
.top-strip .inner{
  max-width:1180px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.nav-inner{
  max-width:1180px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--rrit-blue),var(--rrit-green));
}
.brand strong{display:block}
.brand small{display:block;color:var(--rrit-muted);font-size:12px}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  text-decoration:none;
  font-weight:800;
  color:#334155;
  font-size:14px;
}
.nav-links a:hover{color:var(--rrit-blue)}
.menu-toggle{display:none}
.btn{
  display:inline-block;
  padding:14px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  transition:.25s ease;
  border:0;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(15,23,42,.18);
}
.btn.primary{
  background:linear-gradient(135deg,var(--rrit-blue),#0369a1);
  color:#fff!important;
}
.btn.orange{
  background:linear-gradient(135deg,var(--rrit-orange),#fb923c);
  color:#fff!important;
}
.btn.dark{
  background:var(--rrit-dark);
  color:#fff!important;
}
.btn.light{
  background:#fff;
  color:var(--rrit-dark);
}
.btn.outline{
  border:1px solid rgba(255,255,255,.35);
  color:#fff!important;
  background:rgba(255,255,255,.10);
}
.hero{
  min-height:720px;
  padding:95px 5%;
  color:#fff;
  display:grid;
  align-items:center;
  background:
    radial-gradient(circle at top left,rgba(56,189,248,.32),transparent 34%),
    radial-gradient(circle at bottom right,rgba(249,115,22,.20),transparent 28%),
    linear-gradient(135deg,rgba(7,17,31,.95),rgba(8,47,73,.88)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
}
.hero-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  font-size:13px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-weight:900;
  color:#7dd3fc;
}
.hero h1{
  margin:0 0 22px;
  font-size:clamp(42px,6vw,78px);
  line-height:.97;
  letter-spacing:-2px;
}
.hero p{
  max-width:720px;
  font-size:20px;
  line-height:1.7;
  color:#e2e8f0;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}
.hero-panel{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  padding:28px;
  backdrop-filter:blur(14px);
  box-shadow:0 36px 90px rgba(0,0,0,.32);
}
.hero-panel h2{margin:0 0 16px;font-size:30px}
.market-stat{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.market-stat div{
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}
.market-stat strong{
  display:block;
  color:#7dd3fc;
  font-size:30px;
}
.section{
  padding:90px 5%;
}
.section.alt{background:var(--rrit-light)}
.section.dark{
  background:linear-gradient(135deg,#07111f,#082f49);
  color:#fff;
}
.section.dark p{color:#cbd5e1}
.section-heading{
  max-width:820px;
  margin:0 auto 48px;
  text-align:center;
}
.section-heading h2{
  margin:0 0 16px;
  font-size:clamp(32px,4vw,56px);
  line-height:1.08;
  letter-spacing:-1px;
}
.section-heading p{
  margin:0;
  color:var(--rrit-muted);
  font-size:18px;
  line-height:1.7;
}
.section.dark .section-heading p{color:#cbd5e1}
.container{
  max-width:1180px;
  margin:auto;
}
.category-row{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:34px;
}
.category-pill{
  border:1px solid var(--rrit-line);
  border-radius:999px;
  padding:10px 14px;
  background:#fff;
  font-weight:900;
  color:#334155;
  cursor:pointer;
}
.category-pill.active,
.category-pill:hover{
  background:var(--rrit-dark);
  color:#fff;
}
.template-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.template-card{
  background:#fff;
  border:1px solid var(--rrit-line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  transition:.25s ease;
}
.template-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(14,165,233,.18);
  border-color:#38bdf8;
}
.template-thumb{
  min-height:220px;
  padding:24px;
  display:grid;
  align-content:end;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(2,132,199,.86),rgba(20,184,166,.82)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1200&q=80");
  background-size:cover;
  background-position:center;
}
.template-thumb.contractor{
  background:
    linear-gradient(135deg,rgba(15,23,42,.86),rgba(249,115,22,.78)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80");
  background-size:cover;
}
.template-thumb.restaurant{
  background:
    linear-gradient(135deg,rgba(15,23,42,.80),rgba(220,38,38,.72)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80");
  background-size:cover;
}
.template-thumb.medical{
  background:
    linear-gradient(135deg,rgba(2,132,199,.82),rgba(15,23,42,.78)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1200&q=80");
  background-size:cover;
}
.template-thumb.salon{
  background:
    linear-gradient(135deg,rgba(131,24,67,.82),rgba(249,115,22,.62)),
    url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1200&q=80");
  background-size:cover;
}
.template-thumb.future{
  background:linear-gradient(135deg,#0f172a,#334155);
}
.template-status{
  display:inline-block;
  width:max-content;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0f172a;
  font-weight:900;
  font-size:12px;
  margin-bottom:10px;
}
.template-card-body{padding:26px}
.template-card h3{
  margin:0 0 10px;
  font-size:24px;
}
.template-card p{
  color:#64748b;
  line-height:1.65;
}
.price-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:20px 0;
  padding-top:18px;
  border-top:1px solid var(--rrit-line);
}
.price-line strong{
  font-size:24px;
  color:var(--rrit-blue);
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.card-actions .btn{padding:12px 15px;font-size:14px}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.benefit-card{
  background:#fff;
  border:1px solid var(--rrit-line);
  border-radius:22px;
  padding:26px;
  box-shadow:0 16px 40px rgba(15,23,42,.07);
}
.dark .benefit-card{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.16);
}
.benefit-card h3{margin:0 0 10px}
.benefit-card p{margin:0;color:#64748b;line-height:1.65}
.dark .benefit-card p{color:#cbd5e1}
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.process-card{
  padding:30px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--rrit-line);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.process-card span{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--rrit-blue),var(--rrit-green));
  color:#fff;
  font-weight:900;
  font-size:22px;
  margin-bottom:18px;
}
.upsell-panel{
  max-width:1180px;
  margin:auto;
  padding:34px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--rrit-line);
  box-shadow:0 24px 70px rgba(15,23,42,.10);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.upsell-list{
  display:grid;
  gap:14px;
}
.upsell-list div{
  padding:16px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid var(--rrit-line);
  font-weight:800;
}
.footer{
  padding:70px 5% 28px;
  background:#07111f;
  color:#cbd5e1;
}
.footer-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
}
.footer h3,.footer h4{color:#fff}
.footer a{
  display:block;
  text-decoration:none;
  color:#cbd5e1;
  margin:9px 0;
}
.footer a:hover{color:#7dd3fc}
.copyright{
  max-width:1180px;
  margin:28px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.10);
  color:#94a3b8;
  font-size:14px;
}
.rrit-credit{
  background:#000;
  color:#fff;
  text-align:center;
  padding:14px 20px;
  font-size:14px;
}
.rrit-credit a{
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.subhero{
  padding:110px 5% 80px;
  color:#fff;
  text-align:center;
  background:
    linear-gradient(135deg,rgba(7,17,31,.94),rgba(8,47,73,.90)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
}
.subhero h1{
  font-size:clamp(42px,6vw,72px);
  line-height:.98;
  margin:0 0 18px;
}
.subhero p{
  max-width:780px;
  margin:auto;
  color:#dbeafe;
  font-size:19px;
  line-height:1.7;
}
.form-card{
  max-width:900px;
  margin:auto;
  background:#fff;
  border:1px solid var(--rrit-line);
  border-radius:28px;
  padding:34px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form-card label{
  display:block;
  font-weight:900;
  color:#334155;
}
.form-card input,.form-card select,.form-card textarea{
  width:100%;
  margin-top:8px;
  padding:14px;
  border-radius:12px;
  border:1px solid var(--rrit-line);
  font-size:15px;
}
.form-card textarea{
  min-height:150px;
}
.full{grid-column:1/-1}
@media(max-width:980px){
  .menu-toggle{display:block;background:var(--rrit-dark);color:#fff;border:0;border-radius:10px;padding:10px 13px;font-weight:900}
  .nav-links{display:none;position:absolute;left:0;right:0;top:76px;background:#fff;padding:20px;flex-direction:column;border-bottom:1px solid var(--rrit-line)}
  .nav-links.open{display:flex}
  .hero-grid,.upsell-panel{grid-template-columns:1fr}
  .template-grid{grid-template-columns:repeat(2,1fr)}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .hero{padding:70px 20px;min-height:auto}
  .section{padding:65px 20px}
  .template-grid,.benefit-grid,.footer-grid,.form-grid{grid-template-columns:1fr}
  .hero-actions,.card-actions{flex-direction:column}
  .btn{width:100%;text-align:center}
}

/* Production polish */
.top-strip a{color:#dbeafe;text-decoration:none;font-weight:800}
.top-strip a:hover{color:#7dd3fc}
.single-feature{grid-template-columns:1fr 1fr}
.template-card .btn{white-space:nowrap}
.site-header a:focus,.btn:focus,.category-pill:focus{outline:3px solid rgba(56,189,248,.55);outline-offset:3px}
.template-status{box-shadow:0 8px 20px rgba(0,0,0,.15)}
.footer p{line-height:1.7}
@media(max-width:780px){.single-feature{grid-template-columns:1fr}}
