:root{
  --yellow:#F4A066; --cream:#F9E5B3; --cream-border:#F1D596;
  --green:#22C55E; --text:#0f172a; --muted:#ffffff; --border:#e5e7eb;
  --site-width:880px; /* adjust to taste */
}


*{box-sizing:border-box} html,body{margin:0;padding:0}
body{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Noto Sans,Arial;color:var(--text);background:#ffffff;line-height:1.6}

/* Header */
.header{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border-bottom:0px solid var(--border);z-index:20}
.nav{max-width:var(--site-width);margin:0 auto;padding:12px 20px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:10px;color:#111827;text-decoration:none;font-weight:800}
.brand img{width:32px;height:32px;border-radius:50%}
.menu{display:flex;gap:12px}
.menu a{color:#111827;text-decoration:none;padding:8px 10px;border-radius:10px}
.menu a:hover{background:#eef2ff}
.container{max-width:var(--site-width);margin:0 auto;padding:20px}

/* Hero */
.hero-photo{position:relative}
.hero-photo .img{height:420px;background:center/cover no-repeat #ddd}
.hero-overlay{position:absolute;left:50%;top:14px;transform:translateX(-50%);display:grid;justify-items:center;color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.35);row-gap:4px}
.hero-overlay .logo{width:90px;height:90px;border-radius:50%;box-shadow:0 6px 18px rgba(0,0,0,.25)}
.hero-overlay .title{font-weight:900;font-size:34px;margin:0}
.hero-overlay .tag{margin:0}
.hero-bar{background:var(--yellow);color:#fff;text-align:center;padding:28px 20px;border-bottom:1px solid var(--cream-border)}

/* === Features (icons closer to text) === */
.features{display:grid;grid-template-columns:1fr 1fr;gap:18px 24px;margin:14px auto 4px;max-width:var(--site-width)}
.feature{display:grid;grid-template-columns:18px 1fr;column-gap:4px;align-items:center}
.feature img{width:16px;height:16px;margin-top:0;grid-row:1/span 2}
.feature .l1{font-weight:800;line-height:1.25;margin-top:-1px}
.feature .l2{line-height:1.25;margin-top:2px}

/* Card + Home */
.round-card{background:#fff;border:1px solid var(--cream-border);border-radius:28px;padding:26px 28px;box-shadow:0 14px 30px rgba(2,6,23,.08);color:var(--text);max-width:var(--site-width);margin:0 auto}
.home{display:grid;grid-template-columns:1fr 1fr;gap:10px 48px;align-items:start}
.price-head{font-weight:900;margin:0 0 12px}

/* === Prices left-aligned, tidy spacing, tabular numerals === */
.price-table{display:grid;grid-template-columns:auto auto;gap:12px 18px;align-items:center;margin:0}
.price{font-weight:900;justify-self:start;text-align:left;font-variant-numeric:tabular-nums}

/* CTA */
.cta-band{color:#fff;text-align:center;margin:24px 0 18px}
.cta-band .big{font-weight:900;color:#16a34a;font-size:28px;margin:0 0 8px}
.cta-band .free{font-weight:900;font-size:32px;display:flex;align-items:center;justify-content:center;gap:10px}
.cta-band .free img{width:36px;height:auto;display:block}
/* Slightly tighter spacing below the home card */
.round-card{margin:6px auto 10px}

/* Footer */
.footer{padding:22px;border-top:1px solid var(--border);background:#fff;color:#374151}
.small{font-size:.92rem}

/* Form (unchanged) */
.hero-slim,.form-hero{background:var(--yellow);padding:26px 0;color:#fff;text-align:center}
.card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:18px 20px;box-shadow:0 10px 24px rgba(2,6,23,.06)}
fieldset{border:1px solid var(--border);border-radius:16px;padding:16px;margin:18px 0;background:#fff}
legend{padding:0 8px;font-weight:900;color:#111827}
label{display:block;margin:10px 0 6px;font-weight:600}
input,select,textarea{width:100%;padding:10px 12px;border:1px solid #d1d5db;border-radius:10px;background:#fff}
textarea{min-height:110px;resize:vertical}
.inline-2{display:grid;gap:12px}
.inline-3{display:grid;gap:12px}
@media(min-width:720px){
  .inline-2{grid-template-columns:1fr 1fr}
  .inline-3{grid-template-columns:1fr 1fr 1fr}
}
.hint{font-size:.9rem;color:var(--muted)}
.req{color:#ef4444;margin-left:4px}
.checklist{display:grid;gap:14px;margin-top:6px}
.checklist label.row{display:grid;grid-template-columns:22px 1fr;align-items:start;column-gap:12px;cursor:pointer}
.checklist input[type=checkbox]{width:18px;height:18px;margin-top:2px}
.btn{background:#F4A066;color:#fff;border:none;border-radius:12px;padding:10px 16px;cursor:pointer;font-weight:800}
.btn:hover{opacity:.95}
.btn-cta{background:var(#F4A066)}

/* Contact icons row */
.contact-row{display:flex;gap:24px;align-items:center;justify-content:center;margin:18px 0 0}
.contact-row .row{display:flex;gap:8px;align-items:center}
.contact-row img{width:20px;height:20px}

/* Responsive tweaks */
@media (max-width:768px){
  .features{grid-template-columns:1fr;gap:14px 18px}
  .feature{grid-template-columns:18px 1fr;column-gap:6px}
  .feature img{width:16px;height:16px}
  .home{grid-template-columns:1fr;gap:24px}
  .cta-band .free{font-size:24px;gap:8px}
  .cta-band .free img{width:22px}
  .hero-photo .img{height:360px}
}

/* Features – make icon column narrow and the gap tiny */
.feature{
  display:grid;
  grid-template-columns:16px 1fr; /* icon column width */
  column-gap:2px;                 /* space between icon and text */
  align-items:center;
}
.feature img{width:16px;height:16px;margin:0;grid-row:1/span 2}

/* Prices – left align both columns and numbers */
.price-table{
  display:grid;
  grid-template-columns:auto auto; /* label | price (both left) */
  gap:12px 14px;                   /* tighten label↔price gap */
  align-items:center;
}
.price{
  font-weight:900;
  justify-self:start;              /* left edge */
  text-align:left;
  font-variant-numeric:tabular-nums;
}


/* === FINAL FORCE OVERRIDES (high specificity + !important) === */

/* 1) Features: shrink icon column and gap (icon ↔ text) */
.hero-bar .features .feature{
  display:grid !important;
  grid-template-columns:14px 1fr !important; /* icon col narrower */
  column-gap:2px !important;                 /* tighter gap */
  align-items:center !important;
}
.hero-bar .features .feature img{
  width:14px !important;
  height:14px !important;
  margin:0 !important;
  grid-row:1/span 2 !important;
}

/* 2) Prices: left-align labels and prices */
.hero-bar .price-table{
  display:grid !important;
  grid-template-columns:auto auto !important; /* label | price (both left) */
  gap:12px 14px !important;
  align-items:center !important;
}
.hero-bar .price{
  font-weight:900 !important;
  justify-self:start !important;
  text-align:left !important;
  font-variant-numeric:tabular-nums !important;
}


/* === FLEXBOX FOR FEATURES (icons tight to text) === */
.hero-bar .features{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px 18px !important;
}
.hero-bar .features .feature{
  display:flex !important;
  align-items:center !important;
  gap:2px !important; /* controls icon↔text space */
}
.hero-bar .features .feature img{
  width:16px !important;
  height:16px !important;
  margin:0 !important;
}


/* === CONSOLIDATED FINAL RULES (centering + flex icons + left prices) === */

/* Centre features block under the heading */
.hero-bar .features{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:18px 24px !important;
  max-width:980px !important;
  margin:14px auto 4px !important;   /* centres the grid under the heading */
  text-align:left !important;
}

/* Icons close to text via flex */
.hero-bar .features .feature{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;                 /* adjust 4–8px to taste */
}
.hero-bar .features .feature img{
  width:16px !important;
  height:16px !important;
  margin:0 !important;
}

/* Home card centred to same width */
.hero-bar .round-card{
  max-width:980px !important;
  margin:12px auto !important;
}

/* Left‑aligned labels and prices */
.price-head{font-weight:900 !important;margin:0 0 12px !important}
.hero-bar .price-table{
  display:grid !important;
  grid-template-columns:auto auto !important;
  gap:12px 18px !important;
  align-items:center !important;
  margin:0 !important;
}
.hero-bar .price{
  font-weight:900 !important;
  justify-self:start !important;
  text-align:left !important;
  font-variant-numeric:tabular-nums !important;
}

/* Mobile */
@media (max-width:768px){
  .hero-bar .features{grid-template-columns:1fr !important;gap:14px 18px !important}
  .hero-bar .round-card{max-width:100% !important;margin:12px auto !important}
}









/* ==== One centred rail + precise alignment ==== */

/* Centre all hero content on the same vertical axis */
.hero-bar .container{display:flex;flex-direction:column;align-items:center}

.hero-center{width:min(860px,100%);margin:0 auto;text-align:center}

/* Heading */
.hero-title{margin:0;font-weight:900;font-size:40px;line-height:1.15}

/* Features (two columns), icon tight to text */
.hero-center .features{
  width:100%;max-width:860px;margin:18px auto 6px;
  display:grid;grid-template-columns:1fr 1fr;gap:18px 56px;
  text-align:left;
}
.hero-center .feature{display:flex;align-items:flex-start;gap:8px}
.hero-center .feature img{width:20px;height:20px;margin-top:3px}
.hero-center .feature .l1{font-weight:800;line-height:1.25}
.hero-center .feature .l2{line-height:1.25;margin-top:2px}

/* Home card: same rail width and centred */
.hero-center .round-card{width:100%;max-width:860px;margin:16px auto}

/* Make headings align with first column text */
.hero-center .home{
  display:grid;grid-template-columns:1fr 1fr;gap:10px 48px;align-items:start
}
.hero-center .home > div{display:grid;row-gap:12px;justify-items:start}
.price-head{margin:0;padding:0;justify-self:start;text-align:left}
.price-table{margin:0;justify-self:start;display:grid;grid-template-columns:auto auto;gap:12px 24px;align-items:center}
.price-table > div{padding:0}                 /* remove any stray indentation */
.price{font-weight:900;justify-self:start;text-align:left;font-variant-numeric:tabular-nums}

/* Keep CTA paws modest */
.cta-band .free img{width:36px;height:auto;display:block}

/* Responsive */
@media (max-width:768px){
  .hero-center{width:94vw}
  .hero-center .features{grid-template-columns:1fr;gap:14px 18px}
  .hero-center .round-card{max-width:100%}
  .cta-band .free{font-size:24px;gap:8px}
  .cta-band .free img{width:22px}
}

.btn { text-decoration: none; }

/* Mobile nav: stack links under the logo for tidy spacing */
@media (max-width: 520px){
  .nav{ flex-wrap: wrap; row-gap:8px; }
  .menu{
    width:100%;
    justify-content: space-between;   /* even spacing */
  }
  .menu a{
    padding:10px 12px;                /* good tap targets */
    border-radius:12px;
  }
}

/* === GLOBAL CENTRING + CONSISTENT WIDTH === */

/* 1  Universal centred layout container */
.main-content{
  max-width:var(--site-width);           /* remove the duplicate 'max-width:' */
  margin:0 auto;
  padding:0 20px;                        /* matches header side padding */
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

/* 2  All images same width, responsive */
.main-content img{
  width:100%;
  max-width:var(--site-width);
  height:auto;
  display:block;
  border-radius:16px;
}

/* 3  Buttons centred under images */
.main-content .btn{
  text-align:center;
  align-self:center;
}

/* 4  Full-width alignment tweak on mobile */
@media (max-width:768px){
  .main-content{max-width:94vw;padding:0}
  .main-content img{border-radius:10px}
}

/* === HOME HERO IMAGE === */
.poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;                  /* space between image and button */
  padding: 0;                 /* remove vertical padding */
  background: #ffffff;
  margin: 0 auto 20px;        /* small space between poster sections */
}

.poster img {
  width: 100%;
  max-width: var(--site-width);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;

}

.poster p {
  margin: 0;                  /* remove top and bottom margin */
  display: flex;
  justify-content: center;    /* centre button horizontally */
}

.poster .btn {
  margin: 2px 0 0;           /* slight space above button only */
}

.brand span {
  color: #F4A066;       /* your logo text colour */
  font-weight: 800;     /* keep it bold */
}

/* Reserve space for the scrollbar to stop horizontal shift */
html{scrollbar-gutter:stable both-edges}

/* Fallback for browsers without scrollbar-gutter support */
@supports not (scrollbar-gutter:stable){
  html{overflow-y:scroll}
}

/* Hide the line break on desktop, show on mobile */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

/* Footer contact links: match surrounding text style */
.contact-link {
  color: inherit;              /* same colour as the text */
  text-decoration: none;       /* remove underline */
  font-weight: inherit;        /* same weight as other footer text */
}

.contact-link:hover {
  text-decoration: underline;  /* subtle underline only when hovered (optional) */
}

/* Mobile line break for footer */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

