:root {
  --bb-navy: #365786;
  --bb-slate: #2C3A4A;
  --bb-teal: #308E93;

  --bb-bg: #F6F8FB;
  --bb-border: #D7DEE8;
  --bb-text: #0B1220;
  --bb-muted: #5B6776;

  --font-heading: "Oxanium", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;


  --bb-font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 18px;
  --shadow: 0 10px 28px rgba(11, 18, 32, 0.08);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
font-size: 20px;
  margin: 0;
  font-family: var(--bb-font);
  color: var(--bb-text);
  background: var(--bb-bg);
  line-height: 1.5;
}



h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px; /* optional but looks great with Oxanium */
}

.container {
  width: min(1500px, calc(100% - 20rem));
  margin: 0 auto;
}

.statement-line {
  font-size: 1.4rem;          /* bigger than body text */
  font-weight: 600;           /* strong but professional */
  line-height: 1.4;
  margin-top: 0.75rem;
  margin-bottom: 2rem;

  color: var(--bb-text);
  max-width: 100%;            /* full-width */
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bb-border);
}

.header-inner {
  display: flex;
  width: min(1500px, calc(100% - 10rem));
  align-items: center;
  gap: 2rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  min-width: 230px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--bb-navy);
  font-size: 22px;
  line-height: 1.1;
}

.logo img {
  width: clamp(140px, 30vw, 240px);
  height: auto;
  display: block;
}

.site-header {
  padding: 10px 0; /* gives the header breathing room */
}
.header-inner {
  align-items: center;
}

.about-photo {
  width: 100%;          /* adjust to taste: 200â€“260px */
  height: auto;
  border-radius: 16px;   /* soft, friendly corners */
  display: block;
}

.branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* use center if you want centered */
  gap: 4px;
}

/* [LOGO]   Business Data Backup & Monitoring*/

.brand-tag {
  color: var(--bb-muted);
  font-size: 14px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: var(--bb-slate);
  font-weight: 600;
  font-size: 1.5rem;
}

.nav a:hover { color: var(--bb-navy); }

.nav-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 18px;
}

@media (max-width: 1200px) {
  .mobile-nav {
    border-top: 1px solid var(--bb-border);
    padding: 10px 20px 18px;
    gap: 10px;
  }

  .mobile-nav a {
    text-decoration: none;
    color: var(--bb-slate);
    font-weight: 600;
    display: grid;
  }
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  border: 1px solid transparent;
  min-width: 14rem;
}

.btn-primary {
  background: var(--bb-slate);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.header-btn-primary {
  background: var(--bb-slate);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-primary:hover { filter: brightness(0.95); }
.header-btn-primary:hover { filter: brightness(0.95); }

.btn-secondary {
  background: #fff;
  color: var(--bb-navy);
  border: 1px solid var(--bb-border);
}

.btn-secondary:hover { border-color: rgba(0, 128, 129, 0.45); }

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  background: var(--bb-slate);
  color: #ffffff !important;
  box-shadow: var(--shadow);
  margin-top: 20px;
  width: 20rem;
}

.nav-btn:hover { filter: brightness(0.95); }


/* Hero */
.hero {
  padding: 54px 0 26px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}


.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: #ffffff;
}

.lead {
  font-size: clamp(22px, 2.8vw, 32px);
  margin: 0 0 12px;
  color: var(--bb-slate);
}

.micro, .support {
  margin: 0 0 10px;
  color: var(--bb-muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 210px;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,128,129,0.10);
  color: var(--bb-teal);
  border: 1px solid rgba(0,128,129,0.30);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
}

.diagram-mini {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mini-step {
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 12px;
  background: var(--bb-bg);
}

.mini-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--bb-navy);
}

.mini-sub {
  color: var(--bb-muted);
  font-size: 14px;
}

.mini-arrow {
  color: var(--bb-teal);
  font-weight: 900;
  text-align: center;
}

/* Sections */
.section {
  padding: 52px 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.section h2 {
  margin: 0 0 10px;
  font-size: 50px;
  color: var(--bb-navy);
}

.section-sub {
  margin: 0 0 22px;
  color: var(--bb-muted);
  font-size: 18px;
  max-width: 72ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column; /* stack content top to bottom */
  flex: 1 1 0;            /* cards share row width evenly */
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  gap: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.05);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--bb-navy);
  font-size: 30px;
}

.card p { margin: 0; color: var(--bb-slate); }

.card btn {
  width: 20rem; 
}

.card__actions{
  margin-top: auto;
  padding-top: 1rem;      /* optional spacing from content */
}

/* Flow */
.flow-wrap { margin: 18px 0 24px; }
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

/*Your computer - Bennett Backup Box - Data Center */
.flow-step {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 16px;
}

.flow-title { 
  text-align: center; 
  font-size: 35px; 
  font-weight: 900; 
  color: var(--bb-navy); 
  font-family: var(--font-heading);
}
.flow-sub { text-align: center; color: var(--bb-muted); font-size: 18px; margin-top: 4px; }
.flow-arrow img { 
  width: 3rem;
  height: auto;
  object-fit: contain;
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.icon-card {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(0,128,129,0.10);
  border: 1px solid rgba(0,128,129,0.25);
  color: var(--bb-teal);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.icon-title { 
  font-weight: 900; 
  color: var(--bb-navy); 
  font-family: var(--font-heading);
}
.icon-sub { color: var(--bb-muted); font-size: 14px; margin-top: 2px; }

/*feature cards*/

/* FEATURE CARDS (clean replace) */

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* How It Works Bubbles - Full-width card */
.feature {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;

  background: #ffff;
  border: 1px solid var(--bb-border);
  border-radius: 18px;
  padding: 20px;
}

/* Stable image frame (same size every time) */
.feature-media {
  flex: 0 0 320px;     /* fixed column width */
  height: 220px;       /* fixed frame height */
  border-radius: 14px;
  overflow: hidden;    /* keeps rounded corners */
  background: var(--bb-bg);
}

/* Image always fills the frame consistently */
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* For badge-style images (donâ€™t crop) */
.feature-img--contain {
  object-fit: contain;
  padding: 18px;
}

/* Text */
.feature-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
}

.feature-body p {
  margin: 0;
  color: var(--bb-text);
  line-height: 1.6;
}

/* Mobile: stack image on top */
@media (max-width: 1200px) {
  .feature {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-media {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }
}

.feature--reverse {
  flex-direction: row-reverse;
}

/* Highlighted feature card - Built on Proven Standards - background for pic*/
.feature--highlight {
  background-color: rgba(48, 142, 147, 0.08); /* soft, calm background */
  border: 1px solid var(--bb-border);
}


/*3-2-1 pic*/
.feature--stacked {
  display: block;
  width: 100%;
}

.feature-media-full {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

/*3-2-1 pic*/
.feature-media-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}


/* Monthly Backup Status Reports bubble*/
.report-note {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 18px;
}

.report-note h3 { margin: 0 0 8px; color: var(--bb-navy); }
.report-note p { margin: 0; color: var(--bb-slate); }

/* About */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.photo-placeholder {
  height: 300px;
  border-radius: var(--radius);
  border: 1px dashed var(--bb-border);
  display: grid;
  place-items: center;
  color: var(--bb-muted);
  background: var(--bb-bg);
}

.about-line { margin-top: 12px; }

.portfolio {
  margin-top: 18px;
  border-top: 1px solid var(--bb-border);
  padding-top: 14px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 25vw;
  gap: 4rem;
}

/* Scope */
.scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scope-col {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 18px;
}

.scope-col h3 { margin: 0 0 10px; color: var(--bb-navy); }
.scope-col ul { margin: 0; padding-left: 18px; color: var(--bb-slate); }
.scope-col li { margin: 6px 0; }

/* FAQ */
.faq {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--bb-navy);
}

.faq p { color: var(--bb-slate); margin: 10px 0 0; }

/* Contact */
.contact-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

label { display: grid; gap: 6px; font-weight: 700; color: var(--bb-slate); }

input, textarea {
  font-family: var(--bb-font);
  font-size: 16px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--bb-border);
  background: #fff;
  color: var(--bb-text);
}

input:focus, textarea:focus {
  outline: 3px solid rgba(0,128,129,0.18);
  border-color: rgba(0,128,129,0.45);
}

.muted { color: var(--bb-muted); }
.small { font-size: 1.2rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--bb-border);
  padding: 24px 0;
  background: #fff;
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand { font-weight: 900; color: var(--bb-navy); }

/* Responsive */
@media (max-width: 1300px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow img { display: none; }
  .about { grid-template-columns: 1fr; }
  .scope { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .about-content { grid-template-columns: 1fr; }
  .feature-media-full { grid-template-columns: 1fr; }

  .about-photo {
    margin: 0 auto; 
    width: 50vw;
    height: auto;

  }

  .container {
    width: min(1500px, calc(100% - 10rem));
    margin: 0 auto;
  }

  .header-inner {
    display: flex;
    width: min(1500px, calc(100% - 10rem));
    align-items: center;
    gap: 18px;
    padding: 14px 0;
  }

}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow img { display: none; }
  .about { grid-template-columns: 1fr; }
  .scope { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .about-content { grid-template-columns: 1fr; }
  .feature-media-full { grid-template-columns: 1fr; }
  .about-photo {
    margin: 0 auto; 
    width: 50vw;
    height: auto;

  }

  .container {
    width: min(1500px, calc(100% - 2rem));
    margin: 0 auto;
  }

  .header-inner {
    display: flex;
    width: min(1500px, calc(100% - 2rem));
    align-items: center;
    gap: 18px;
    padding: 14px 0;
  }

}

.full-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--bb-border);
  display: block;
  margin: 24px auto;
}

/*computer-onsite-data center pic*/
.full-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--bb-border);
  display: block;
  margin: 24px auto;
}

/* Monitoring & Verification section */
#monitoring {
  background-color: rgba(47, 164, 169, 0.08); /* soft blue-green */
}


/*Hero Section - Home-Page*/
/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    #365786,
    #2FA4A9
  );
  color: #ffffff;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

.hero-sub {
  font-size: 1.6rem;
  margin-bottom: 28px;
  opacity: 0.95;
  font-family: var(--font-heading);
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Contact line */
.hero-contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1.5rem;
}

.hero-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.hero-contact a:hover {
  text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 1100px) {
  .hero {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
