:root{
  --brand:#f36a06;      /* orange from your logo */
  --ink:#17202A;
  --muted:#5c6b7a;
  --bg:#ffffff;
  --alt:#fbfbfd;
  --ring:#e9eef4;
  --accent:#0d6efd;     /* buttons hover tint */
}

*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}

img{max-width:100%;display:block}

/* Layout */
.container{max-width:1140px;margin:0 auto;padding:0 20px}
.section{padding:64px 0}
.section.alt{background:var(--alt)}
h1,h2,h3{line-height:1.2;margin:0 0 .4em}
h1{font-size:clamp(32px,5vw,56px);letter-spacing:-.02em}
h2{font-size:clamp(24px,3.2vw,34px)}
h3{font-size:clamp(18px,2vw,22px)}
.lead{font-size:1.125rem;color:var(--muted)}
.kicker{font-weight:600;color:var(--brand);letter-spacing:.02em;margin-bottom:.5rem}

.grid{display:grid;gap:24px}
.grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:900px){.grid--3{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.grid--3{grid-template-columns:1fr}}

/* Header */
.header{
  position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--ring)
}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;color:inherit}
.brand__logo{height:34px;width:auto}
.brand__text{font-weight:700}
.brand__text strong{color:var(--brand)}

.nav{display:flex;gap:18px;align-items:center}
.nav a{color:#374151;text-decoration:none;font-weight:600}
.nav a:hover{color:var(--brand)}
.nav__cta{
  padding:8px 12px;border:1px solid var(--ring);border-radius:10px
}
.menu{display:none;border:0;background:transparent;cursor:pointer}
.menu span{display:block;width:22px;height:2px;background:#111;margin:5px 0;border-radius:2px}

@media(max-width:900px){
  .nav{position:fixed;inset:72px 0 auto 0;background:#fff;border-bottom:1px solid var(--ring);padding:16px 20px;display:none;flex-direction:column}
  .nav.nav--open{display:flex}
  .menu{display:block}
}

/* Hero */
.hero{padding:72px 0;background:linear-gradient(180deg,#fff, #fff 55%, #fbfbfd)}
.hero__inner{display:grid;grid-template-columns:1.4fr .8fr;gap:32px;align-items:center}
@media(max-width:900px){.hero__inner{grid-template-columns:1fr}}
.br-md{display:none}@media(min-width:900px){.br-md{display:inline}}

.ctas{display:flex;gap:12px;flex-wrap:wrap;margin:20px 0}
.btn{
  display:inline-block;padding:12px 18px;border-radius:12px;font-weight:700;text-decoration:none;text-align:center
}
.btn--primary{background:var(--brand);color:#fff}
.btn--primary:hover{filter:brightness(.95)}
.btn--ghost{border:1px solid var(--ring);color:#111;background:#fff}
.btn--ghost:hover{border-color:#cfd6de}
.btn--block{display:block;width:100%}

.bullets{margin:16px 0 0 0;padding-left:18px}
.bullets li{margin:.25rem 0}

.hero__card .card{
  background:#fff;border:1px solid var(--ring);border-radius:16px;padding:18px 18px 16px;box-shadow:0 8px 24px rgba(17,24,39,.06)
}
.hero__card .card h3{margin-bottom:.6rem}
.hero__card .card ul{padding-left:18px;margin:.25rem 0 1rem}

/* Features */
.feature{background:#fff;border:1px solid var(--ring);border-radius:14px;padding:18px}

/* Steps */
.steps{counter-reset:step;display:grid;gap:12px;padding-left:0}
.steps li{
  list-style:none;border:1px solid var(--ring);border-radius:12px;padding:14px 16px;background:#fff;position:relative
}
.steps li::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:-10px;top:-10px;
  background:var(--brand);color:#fff;border-radius:999px;width:28px;height:28px;display:grid;place-items:center;font-weight:800
}

/* Pricing */
.pricing .price{
  background:#fff;border:1px solid var(--ring);border-radius:14px;padding:18px;display:flex;flex-direction:column;gap:10px
}
.price--focus{border-color:var(--brand);box-shadow:0 6px 26px rgba(243,106,6,.15)}
.price__num{font-size:28px;font-weight:800}
.price__num span{font-size:14px;font-weight:600;color:var(--muted)}
.price__sub{margin-top:-6px;color:var(--muted);font-weight:700}
.price ul{padding-left:18px;margin:0 0 8px}

/* Testimonials */
.testimonials blockquote{
  margin:0;padding:16px;border:1px solid var(--ring);border-radius:12px;background:#fff;font-style:italic
}

/* Contact */
.contact .ctas{margin-top:12px}

/* Footer */
.footer{padding:24px 0;border-top:1px solid var(--ring);background:#fff}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer__nav{display:flex;gap:14px}
.footer__nav a{text-decoration:none;color:#444}
.footer__nav a:hover{color:var(--brand)}

/* Header Demo Button */
header .btn.small {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 8px 18px;
  margin-left: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

header .btn.small:hover {
  background: var(--brand);
  color: #fff;
}

/* =========================
   Footer Styles
   ========================= */
.footer {
  background: #111; /* dark, sleek background */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer-buttons {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 20px;
}

/* =========================
   Button Styles
   ========================= */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn.small {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn.small:hover {
  background: var(--brand);
  color: #fff;
}
/* === Footer === */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-divider {
  height: 4px;
  width: 100%;
  background: var(--brand); /* orange brand color */
  margin-bottom: 20px;
}

.footer-logo {
  width: 90px;
  margin-bottom: 20px;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-buttons .btn {
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.footer-buttons .btn:hover {
  background: var(--brand-dark);
}

.footer-buttons .btn.small {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
}

.footer-buttons .btn.small:hover {
  background: var(--brand);
  color: #fff;
}

.footer-copy {
  font-size: 0.85rem;
  color: #aaa;
}
/* Footer refinements */
.footer { padding-top: 56px; padding-bottom: 56px; }
.footer-content { max-width: 1100px; margin: 0 auto; }
.footer-divider { max-width: 1100px; margin: 0 auto 24px; height: 3px; background: linear-gradient(90deg, var(--brand), #ff7a1a); }

/* Logo a touch larger with subtle depth */
.footer-logo { width: 110px; margin: 0 auto 14px; filter: drop-shadow(0 4px 14px rgba(243, 106, 0, 0.18)); }

/* Button rhythm and hierarchy */
.footer-buttons { gap: 14px; margin-top: 6px; margin-bottom: 18px; }
.footer-buttons .btn { min-width: 180px; letter-spacing: .2px; }
.footer-buttons .btn.small { border-width: 1.5px; }

/* “Still on the fence?” section spacing harmony with footer */
.fence { padding: 64px 0 28px; border-top: 1px solid rgba(0,0,0,.04); }
.fence .btn { box-shadow: 0 6px 18px rgba(243,106,0,.18); }
.fence .btn:hover { box-shadow: 0 8px 22px rgba(243,106,0,.22); }

/* Mobile tidy-up */
@media (max-width: 768px) {
  .footer { padding-top: 44px; padding-bottom: 44px; }
  .footer-logo { width: 90px; }
  .footer-buttons .btn { width: 100%; max-width: 360px; }
}

/* Subtle focus rings for accessibility */
.footer-buttons .btn:focus-visible,
.fence .btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(243,106,0,.35);
}
