:root{
  /* Business-friendly light theme */
  /* Navy-based theme */
  --accent:#071a2b; /* deep navy */
  --accent-2:#0b2545; /* darker navy accent */
  --accent-3:#123a66; /* lighter navy */
  --accent-4:#345c8b; /* slate accent */
  /* light blue used for the 'Office' text (darkened for readability) */
  --office: #6faee8;
  --bg:#9fbfdc; /* ~2x darker than previous light background */
  --card:#ffffff; /* white cards */
  --text:#071224; /* dark text for cards */
  --page-text:#071224; /* header/text color when background is light */
  --muted:#8b98a6; /* muted slate */
}
*{box-sizing:border-box}
/* make sure the pale-blue page background is applied */
html, body { height: 100%; background-color: var(--bg); }
.body-bg{ }
.body-bg{ }
body{font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:var(--page-text); margin:0; background-color:var(--bg); background-image:none; font-size:18px; line-height:1.6}
.container{max-width:1100px; margin:0 auto; padding:20px; background:transparent}
.header-inner{display:flex; align-items:center; justify-content:space-between}
.brand{display:flex; align-items:center}
.brand a{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand .logo{height:96px; width:96px; display:block; border-radius:14px; padding:8px; background:transparent;}
.brand .brand-text{font-weight:800; color:var(--text); font-size:1.25rem}
.brand .accent{background:linear-gradient(90deg,var(--office),var(--accent-3)); -webkit-background-clip:text; background-clip:text; color:transparent; font-weight:900; -webkit-text-stroke:0.4px rgba(0,0,0,0.08); text-stroke:0.4px rgba(0,0,0,0.08); letter-spacing:0.04em}
.primary-nav{display:flex; gap:12px}
.primary-nav .nav-link{color:var(--text); text-decoration:none; padding:8px 14px; border-radius:8px; transition:all .12s ease}
.primary-nav .nav-link:hover{transform:translateY(-2px); box-shadow:0 6px 18px rgba(4,20,36,0.08); background:rgba(4,20,36,0.08); color:var(--text)}
.primary-nav .nav-link.active{background:linear-gradient(90deg,var(--accent-3),var(--accent)); color:var(--card)}
.primary-nav .nav-link:not(:last-child)::after{content:"|"; display:inline-block; margin:0 8px; color:rgba(4,20,36,0.18);}
.nav-toggle{display:none; background:transparent; border:0; font-size:1.6rem}
.site-header{
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(4,20,36,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--text);
}

.site-header .container{padding-top:20px; padding-bottom:20px}
.header-inner{gap:12px}
.site-header .brand .logo{filter: none}
.header-inner .primary-nav{align-items:center}

.hero{background:var(--card); color:var(--text); padding:12px 16px; border-radius:10px 10px 0 0; box-shadow:none; margin-bottom:0; border:0}
.hero h1{margin:0 0 4px 0; color:var(--text); font-size:1.25rem; font-weight:700}
.lead{color:var(--muted); font-weight:500; font-size:1rem}

/* homepage hero */
.homepage-hero{background:linear-gradient(90deg,var(--accent-3),var(--accent)); color:#fff; padding:22px; border-radius:12px; text-align:center}
.homepage-hero .lead{color:rgba(255,255,255,0.92)}
.homepage-hero h1{font-size:2rem; line-height:1.05; text-shadow:0 2px 6px rgba(0,0,0,0.28); color:#ffffff}
/* ensure buttons and links in the hero are visible on the gradient */
.homepage-hero .hero-ctas .btn{color:#ffffff}
.homepage-hero .hero-ctas .btn-ghost{color:#ffffff; border-color:rgba(255,255,255,0.28); background:rgba(255,255,255,0.06)}
.hero-ctas{margin-top:12px; display:flex; gap:10px; justify-content:center}
.btn-ghost{background:transparent; color:var(--accent-2); border:1px solid rgba(4,20,36,0.14)}

.features{margin-top:18px}
.features-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px}
.feature-card{background:var(--card); padding:16px; border-radius:10px; box-shadow:0 6px 18px rgba(4,20,36,0.04); text-align:center}
.feature-img{width:100%; height:120px; object-fit:cover; border-radius:8px; margin-bottom:10px}

.examples{margin-top:18px}
.cta-band{background:linear-gradient(90deg,var(--accent-2),var(--accent-4)); color:#fff; padding:20px; margin-top:18px; border-radius:10px}
.cta-band .lead{color:rgba(255,255,255,0.95)}

/* examples grid styling */
.examples-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:12px; margin-top:12px}
.example-card{background:var(--card); padding:14px; border-radius:8px; box-shadow:0 6px 18px rgba(4,20,36,0.04)}
.example-card h3{margin-top:0}

/* product gallery styles */
.product-gallery{margin-top:18px}
.photo-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:12px}
.photo-grid img{width:100%; height:140px; object-fit:cover; border-radius:8px; box-shadow:0 6px 18px rgba(4,20,36,0.06)}
.photo-grid figure{margin:0}
.photo-grid figcaption{font-size:0.85rem; color:var(--muted); margin-top:6px}

/* inline floating photos mixed through content */
.inline-photo{width:220px; height:140px; object-fit:cover; border-radius:8px; box-shadow:0 6px 18px rgba(4,20,36,0.06); margin:12px}
.inline-photo.left{float:left; margin-right:16px}
.inline-photo.right{float:right; margin-left:16px; margin-top:45px;}
.inline-photo + p, .inline-photo + ul, .inline-photo + h2{clear:none}

/* utility to shift a section right */
.shift-right{margin-left:250px}

/* inline SVG wrapper for local illustrations */
.inline-svg{width:220px; height:140px; border-radius:8px; box-shadow:0 6px 18px rgba(4,20,36,0.06); overflow:hidden; display:inline-block; margin:12px}
.inline-svg.left{float:left; margin-right:16px}
.inline-svg.right{float:right; margin-left:16px}
.inline-svg svg{width:100%; height:100%; display:block}

/* prominent statistic banner used on product page */
.stat-banner{display:flex; align-items:center; gap:16px; background:linear-gradient(90deg,var(--accent-3),var(--accent-2)); color:#fff; padding:16px; border-radius:10px; margin:18px 0}
.stat-banner .stat-number{font-weight:800; font-size:1.6rem}
.stat-banner .stat-text{opacity:0.95}
.site-main .content{background:var(--card); padding:26px; border-radius:0 0 10px 10px; box-shadow:0 6px 18px rgba(4,20,36,0.04); border:1px solid rgba(4,20,36,0.06); border-top:0; margin-top:0}
.site-footer{margin-top:36px; padding:22px 0; color:var(--text); background:var(--card); border-top:1px solid rgba(4,20,36,0.04); box-shadow:0 -6px 20px rgba(4,20,36,0.03)}
.site-footer .container{display:flex; align-items:center; justify-content:space-between; gap:12px}
.site-footer .footer-links a{margin-left:12px; color:var(--accent-3); text-decoration:none; font-weight:600}

/* Contact form styles */
.contact-page{display:flex; justify-content:center}
.contact-card{background:var(--card); padding:24px; border-radius:12px; width:100%; max-width:820px; box-shadow:0 10px 30px rgba(4,20,36,0.06); border:1px solid rgba(4,20,36,0.14)}
.contact-card h1{margin-top:0}
.contact-card .lead{margin-bottom:14px}

/* make the heading and lead above the contact form black for better contrast */
.contact-card h1, .contact-card .lead { color: #000000; }
.form-row{display:flex; gap:12px}
.form-col{flex:1}
.label{display:block; margin-bottom:6px; font-weight:600}
label{display:block; margin-bottom:6px; font-weight:600}
input, textarea{width:100%; padding:10px 12px; border-radius:8px; border:1.5px solid rgba(4,20,36,0.28); background:#fff; font-size:1rem}
input:focus, textarea:focus{outline:none; border-color:var(--accent-2); box-shadow:0 10px 26px rgba(11,37,69,0.12)}
.form-actions{display:flex; gap:8px; margin-top:12px}
.alert{background:#e9f7ef; color:#064e3b; padding:12px; border-radius:8px; margin-bottom:12px}
.btn-ghost{background:transparent; color:var(--accent-2); border:1px solid rgba(4,20,36,0.14)}

.consent-section{margin:10px 0 14px}
.consent-label{display:flex; align-items:flex-start; gap:10px; margin-bottom:0; font-weight:500}
.consent-label input[type="checkbox"]{width:auto; margin-top:4px; padding:0; border:none; border-radius:0; box-shadow:none}
.consent-help{margin:6px 0 0 30px; color:var(--muted); font-size:.9rem}

@media(max-width:720px){
  .form-row{flex-direction:column}
}

@media(max-width:720px){
  .site-footer .container{flex-direction:column; align-items:flex-start}
}

.btn{display:inline-block; background:linear-gradient(90deg,var(--accent-2),var(--accent-4)); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; box-shadow:0 6px 18px rgba(4,20,36,0.08); transition:transform .12s ease}
.btn:hover{transform:translateY(-2px); box-shadow:0 12px 30px rgba(4,20,36,0.12)}

/* Mobile */
@media(max-width:720px){
  .primary-nav{display:none; position:absolute; top:70px; right:18px; background:var(--card); padding:12px; border-radius:12px; box-shadow:0 10px 40px rgba(15,23,42,0.12); flex-direction:column}
  .nav-toggle{display:block}
  .hero{padding:22px}
  .brand a{font-size:1.25rem}
}

.form-checkbox-optin {
    display: flex;
    align-items: center;
    margin: 1.5em 0 0.5em 0;
}

.form-checkbox-optin label {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2em;
    gap: 0.5em;
}

.form-checkbox-optin input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
    accent-color: #2563eb; /* Optional: makes the checkbox blue */
    margin-right: 0.5em;
}

.form-privacy {
    margin-bottom: 1.5em;
    color: #444;
}
