/* ==========================================================================
   BNEHOST — Brisbane Web Hosting
   Design system: river-teal aesthetic (drawn from the BNE HOST logomark's
   Brisbane River squiggle). Verdana per brand guide; the squiggle motif,
   generous teal/ink contrast, and confident scale carry the personality.
   ========================================================================== */

:root {
  --teal: #55c2ba;
  --teal-dark: #3a9d96;
  --teal-tint: #e7f7f6;
  --teal-tint-2: #cdeeeb;
  --ink: #003e4d;
  --ink-2: #005266;
  --ink-3: #00303c;
  --text: #0c2b32;
  --text-muted: #4d6b71;
  --off-white: #f6faf9;
  --white: #ffffff;
  --line: #dcece9;
  --amber: #e0a339;

  --font: Verdana, Geneva, Tahoma, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 44, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 44, 54, 0.14);
  --shadow-lg: 0 24px 60px rgba(0, 44, 54, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: bold;
}

h1 { font-size: 42px; letter-spacing: -0.5px; }
h2 { font-size: 30px; }
h3 { font-size: 19px; }

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 64px 0; }

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--tint {
  background: var(--off-white);
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: #b9d8dc; }

/* ---------------------------------- Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: bold;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--ink-3);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #67cec6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ---------------------------------- Header ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { height: 40px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links {
  display: flex;
  gap: 30px;
}

.nav__links a {
  font-weight: bold;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.2s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active { color: var(--teal-dark); }

.nav__cta { display: flex; align-items: center; gap: 18px; }

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  font-size: 14px;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ---------------------------------- Footer ---------------------------------- */

.site-footer {
  background: var(--ink-3);
  color: #a9cdd2;
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--teal); }

.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { color: #8fb7bd; max-width: 280px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #6f9aa0;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------------------------------- Utility ---------------------------------- */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.text-center { text-align: center; }

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--teal-tint);
  color: var(--teal-dark);
}

/* ---------------------------------- Wave divider ---------------------------------- */

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 0;
}

.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  position: relative;
  background: radial-gradient(circle at 82% 18%, rgba(85, 194, 186, 0.22), transparent 55%), linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 65%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 130px;
}

.hero__river {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero h1 { color: var(--white); font-size: 50px; margin-bottom: 20px; }
.hero h1 span { color: var(--teal); }

.hero p.lead {
  color: #c3dee2;
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__trust div { font-size: 13px; color: #9fc4c9; }
.hero__trust strong { display: block; font-size: 22px; color: var(--white); }

.hero__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}

.hero__panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

.hero__panel-row:last-child { border-bottom: none; }
.hero__panel-row span:first-child { color: #a9cdd2; }
.hero__panel-row span:last-child { color: var(--white); font-weight: bold; }

/* ---------------------------------- Feature cards ---------------------------------- */

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-tint-2);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal-dark);
}

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 14px; }

/* ---------------------------------- Pricing ---------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.price-card--popular {
  border-color: var(--teal);
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-tint) 140%);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.price-card--popular:hover { transform: scale(1.03) translateY(-6px); }

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--ink);
  color: var(--teal);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-card__name { font-size: 13px; font-weight: bold; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px; }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-card__price .amount { font-size: 40px; font-weight: bold; color: var(--ink); }
.price-card__price .cycle { font-size: 14px; color: var(--text-muted); }

.price-card__desc { font-size: 13px; margin-bottom: 24px; }

.price-card__specs {
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card__specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
}

.price-card__specs li:first-child { border-top: none; }

.price-card__specs li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ---------------------------------- Testimonials ---------------------------------- */

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}

.testimonial-card__mark {
  font-size: 48px;
  color: var(--teal-tint-2);
  font-family: Georgia, serif;
  line-height: 0;
  position: relative;
  top: 22px;
}

.testimonial-card p.quote {
  color: var(--text);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; font-size: 13px; color: var(--ink); }
.testimonial-card__author span { font-size: 12px; color: var(--text-muted); }

/* ---------------------------------- CTA banner ---------------------------------- */

.cta-banner {
  background: var(--ink);
  border-radius: 20px;
  padding: 56px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,194,186,0.35), transparent 70%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #b9d8dc; margin: 0; }
.cta-banner__actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 2; }

/* ---------------------------------- Page hero (inner pages) ---------------------------------- */

.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero__inner { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { color: var(--white); font-size: 36px; margin-bottom: 12px; }
.page-hero p { color: #c3dee2; margin: 0; font-size: 16px; }

.breadcrumb {
  font-size: 12px;
  color: var(--teal);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* ---------------------------------- Forms ---------------------------------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.form-row { margin-bottom: 20px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: var(--ink);
  margin-bottom: 7px;
}

input, textarea, select {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text);
  transition: border-color 0.18s ease, background 0.18s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ---------------------------------- About page bits ---------------------------------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip div strong {
  display: block;
  font-size: 32px;
  color: var(--ink);
}

.stat-strip div span { font-size: 13px; color: var(--text-muted); }

.value-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.value-row:first-child { border-top: none; }

.value-row .num {
  font-size: 13px;
  font-weight: bold;
  color: var(--teal-dark);
  width: 34px;
  flex-shrink: 0;
}

.value-row h3 { margin-bottom: 4px; }
.value-row p { margin: 0; font-size: 14px; }

/* ---------------------------------- Cart page ---------------------------------- */

.cart-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.cart-summary h3 { margin-bottom: 4px; }
.cart-summary .package-name { color: var(--teal-dark); font-weight: bold; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

.cart-summary__price {
  font-size: 34px;
  font-weight: bold;
  color: var(--ink);
  margin: 14px 0 18px;
}

.cart-summary__price span { font-size: 14px; color: var(--text-muted); font-weight: normal; }

.cart-summary__specs li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}

.cart-summary__specs li:first-child { border-top: none; }

.cart-select {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.pkg-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  background: var(--white);
  color: var(--text);
  transition: all 0.15s ease;
}

.pkg-pill.active {
  border-color: var(--teal);
  background: var(--teal-tint);
  color: var(--teal-dark);
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 30px; }
  .form-row-split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .hero__trust { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  h1 { font-size: 30px; }
  .hero { padding: 60px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cart-summary { position: static; }
}

