/* --------------------------------------------------------------
   GLOBAL RESET & BASE
-------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; }
body {
    margin:0; font-family:'Open Sans',Arial,sans-serif; line-height:1.6;
    background:#f8f9fa; color:#333; overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color:#007cba; text-decoration:none; transition:color .3s; }
a:hover { color:#005a87; }
ul, ol { margin-left:2rem; }
h1,h2,h3,h4 { margin:1rem 0; font-weight:600; line-height:1.2; }
h1{font-size:2.5rem;}
h2{font-size:2rem;}
h3{font-size:1.5rem;}

/* --------------------------------------------------------------
   LAYOUT HELPERS
-------------------------------------------------------------- */
.container { width:90%; max-width:1200px; margin:auto; }
.flex-header { display:flex; align-items:center; justify-content:space-between; }
.grid-2col { display:grid; grid-template-columns:1fr; gap:2rem; }
@media (min-width:768px){ .grid-2col{grid-template-columns:1fr 1fr;} }

/* --------------------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------------------- */
.site-header { background:#fff; border-bottom:1px solid #e2e2e2; position:sticky; top:0; z-index:1000; }
.logo img { height:48px; }
.nav-toggle {
    display:none; background:none; border:none; font-size:1.5rem; cursor:pointer;
}
.primary-nav { }
.nav-list { list-style:none; display:flex; gap:1.5rem; }
.nav-list a { font-weight:500; padding:.5rem 0; }
.nav-list a:hover { color:#005a87; }
@media (max-width:767px){
    .nav-toggle{display:block;}
    .primary-nav{display:none;}
    .primary-nav.active{display:block;position:absolute;top:100%;left:0;width:100%;background:#fff;box-shadow:0 4px 6px rgba(0,0,0,.1);}
    .nav-list{flex-direction:column;gap:0;}
    .nav-list a{display:block;padding:1rem;border-bottom:1px solid #e2e2e2;}
}

/* --------------------------------------------------------------
   HERO SECTION
-------------------------------------------------------------- */
.hero { position:relative; overflow:hidden; color:#fff; text-align:center; }
.hero-img { width:100%; height:auto; object-fit:cover; }
.hero-overlay {
    position:absolute; inset:0; background:rgba(0,0,0,.55);
    display:flex; flex-direction:column; justify-content:center; align-items:center;
    padding:2rem;
}
.hero h1 { font-size:2.8rem; margin-bottom:.5rem; }
.hero p { font-size:1.2rem; max-width:800px; margin:auto; }

/* --------------------------------------------------------------
   FEATURE CARDS
-------------------------------------------------------------- */
.features { background:#fff; padding:4rem 0; }
.feature-grid { display:grid; gap:2rem; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.feature-card {
    background:#f8f8f8; padding:2rem; border-radius:8px; text-align:center;
    transition:transform .3s;
}
.feature-card:hover { transform:translateY(-5px); }
.feature-icon { width:64px; height:64px; margin-bottom:1rem; }

/* --------------------------------------------------------------
   CALL‑OUT / STATUS BANNERS
-------------------------------------------------------------- */
.status-banner, .callout, .suite-benefits, .footer-callout {
    background:#fff3cd; border:1px solid #ffeaa7; border-radius:6px;
    padding:1.5rem; margin:2rem 0; text-align:center;
}
.btn-primary, .btn-secondary {
    display:inline-block; padding:.75rem 1.5rem; border:none; border-radius:4px;
    font-weight:600; cursor:pointer; transition:background .3s;
}
.btn-primary { background:#e94e1b; color:#fff; }
.btn-primary:hover { background:#d44516; }
.btn-secondary { background:#007cba; color:#fff; }
.btn-secondary:hover { background:#005a87; }

/* --------------------------------------------------------------
   PRODUCT PAGES
-------------------------------------------------------------- */
.product-hero { background:#007cba; color:#fff; padding:3rem 0; text-align:center; }
.product-details .product-media img { border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,.1); }
.product-copy ul { list-style:disc inside; margin:1rem 0; }
.product-copy a.btn-primary { margin-top:1rem; display:inline-block; }

/* --------------------------------------------------------------
   TABLES (Tech Specs)
-------------------------------------------------------------- */
table { width:100%; border-collapse:collapse; margin:1rem 0; }
th, td { padding:.75rem; border:1px solid #e2e2e2; text-align:left; }
th { background:#f0f0f0; }

/* --------------------------------------------------------------
   SUPPORT & DOCUMENTATION
-------------------------------------------------------------- */
.support-grid, .product-grid, .team-grid, .footer-grid { display:grid; gap:2rem; }
.support-card, .product-card, .team-member, .footer-about, .footer-links, .footer-contact, .footer-social {
    background:#fff; padding:1.5rem; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,.05);
}
.support-card ul, .product-card ul { margin-left:1.5rem; }
.footer-grid { grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); }
.social-list { display:flex; gap:.5rem; }
.social-list a img { width:24px; height:24px; }

/* --------------------------------------------------------------
   BLOG LISTING
-------------------------------------------------------------- */
.blog-hero { background:#005a87; color:#fff; padding:3rem 0; text-align:center; }
.blog-card { background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,.1); }
.blog-card img { width:100%; height:180px; object-fit:cover; }
.blog-card h3 { margin:1rem; }
.blog-card .meta { font-size:.85rem; color:#666; margin:0 1rem; }
.blog-card p { margin:1rem; }
.read-more { display:block; margin:0 1rem 1rem; color:#007cba; font-weight:600; }

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
.site-footer { background:#333; color:#ddd; padding:3rem 0; font-size:.9rem; }
.site-footer a { color:#ddd; }
.site-footer a:hover { color:#fff; }
.footer-bottom { text-align:center; margin-top:2rem; border-top:1px solid #444; padding-top:1rem; }

/* --------------------------------------------------------------
   FORM STYLING
-------------------------------------------------------------- */
.form-group { margin-bottom:1rem; }
label { display:block; margin-bottom:.25rem; font-weight:600; }
input, textarea, select {
    width:100%; padding:.5rem; border:1px solid #ccc; border-radius:4px;
    font-family:inherit; font-size:1rem;
}
input:focus, textarea:focus { outline:none; border-color:#007cba; box-shadow:0 0 0 2px rgba(0,124,186,.2); }
button { cursor:pointer; }

/* --------------------------------------------------------------
   UTILITIES
-------------------------------------------------------------- */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.text-center { text-align:center; }
.mt-2 { margin-top:2rem; }
.mb-2 { margin-bottom:2rem; }

/* --------------------------------------------------------------
   PRINT STYLES (optional)
-------------------------------------------------------------- */
@media print {
    .site-header, .site-footer, .nav-toggle, .btn-primary, .btn-secondary { display:none; }
    a { color:#000; text-decoration:underline; }
    body { background:#fff; color:#000; }
}