@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   EK Marine Service – Performant Static Site
   Design: Nautical Theme – Navy / Marine Blue / Gold
   ============================================================ */

:root {
  --navy:    #0a1f3c;
  --blue:    #0d5ea8;
  --blue-lt: #1a7ed4;
  --gold:    #e8a020;
  --gold-lt: #f5c050;
  --white:   #ffffff;
  --gray-10: #f4f6f9;
  --gray-20: #e8ecf2;
  --gray-60: #6b7a8e;
  --gray-90: #1e2a38;
  --text:    #2d3748;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(10,31,60,.12);
  --trans:   .25s ease;
}

/* ---------- Reset & Base ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ------------------------------------- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.center { text-align: center; }
.items-center { align-items: center; }
.gap-2  { gap: 1rem; }

/* ---------- Header / Navigation --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: .7rem;
  color: var(--white); font-size: 1.1rem; font-weight: 700;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.logo-text span { color: var(--gold); }

.site-nav { display: flex; gap: .25rem; align-items: center; }
.site-nav a {
  color: rgba(255,255,255,.85);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .9rem;
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a::after { content: '▾'; font-size: .7rem; opacity: .8; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 220px;
  padding: .5rem 0;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .88rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: var(--trans);
}

/* ---------- Hero Slider ----------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy);
}
.hs-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hs-slide.active { opacity: 1; z-index: 1; }
.hs-slide.active .hs-content > * {
  animation: hs-fadeup .9s cubic-bezier(.4,0,.2,1) both;
}
.hs-slide.active .hs-eyebrow  { animation-delay: .2s; }
.hs-slide.active .hs-title    { animation-delay: .4s; }
.hs-slide.active .hs-sub      { animation-delay: .55s; }
.hs-slide.active .hs-buttons  { animation-delay: .7s; }
@keyframes hs-fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,31,60,.35) 0%,
    rgba(10,31,60,.55) 50%,
    rgba(10,31,60,.72) 100%
  );
}
.hs-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}
.hs-eyebrow {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .8rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hs-title {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 1.05;
  text-shadow: 1px 1px 6px rgba(0,0,0,.6);
  margin-bottom: .7rem;
  text-transform: uppercase;
}
.hs-sub {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: clamp(.95rem, 2.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: .1em;
  opacity: .92;
  text-shadow: .5px .5px 3px rgba(0,0,0,.5);
  margin-bottom: 2.2rem;
  max-width: 600px;
}
.hs-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hs-btn {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: 1rem; font-weight: 500; letter-spacing: .06em;
  padding: .75rem 2.2rem;
  border-radius: 3px;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: all .2s ease;
  text-transform: uppercase;
}
.hs-btn-primary {
  background: rgba(0,0,0,.32);
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.hs-btn-primary:hover { background: rgba(0,0,0,.52); border-color: #fff; }
.hs-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.hs-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* Arrows */
.hs-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1.4rem;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.hs-arrow:hover { background: rgba(0,0,0,.58); }
.hs-prev { left: 1.8rem; }
.hs-next { right: 1.8rem; }

/* Dots */
.hs-dots {
  position: absolute; bottom: 1.8rem; left: 50%; z-index: 10;
  transform: translateX(-50%);
  display: flex; gap: .6rem;
}
.hs-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.hs-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- Hero (page-hero sub-pages) -------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5c 60%, #0a3a6e 100%);
  color: var(--white);
  padding: 7rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff08" d="M0,96L80,112C160,128,320,160,480,160C640,160,800,128,960,112C1120,96,1280,96,1360,96L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"/></svg>') bottom/cover no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  padding: .3rem .9rem; border-radius: 50px;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; opacity: .9; margin-bottom: 2rem; }
.hero-badge {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  width: 240px; height: 240px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  font-size: .85rem; line-height: 1.4;
}
.hero-badge strong { font-size: 1.4rem; color: var(--gold); display: block; margin-bottom: .3rem; }

/* ---------- Buttons --------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline  { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue     { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-lt); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ---------- Cards ----------------------------------------- */
.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10,31,60,.08);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10,31,60,.14); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-20); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gray-60);
}
.card-body { padding: 1.4rem; }
.card-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .5rem;
}
.card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.card-price {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin: .6rem 0 1rem;
}
.card-price .from { font-size: .8rem; font-weight: 400; color: var(--gray-60); }

/* ---------- Section Headers ------------------------------- */
.section-header { margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-60); max-width: 580px; font-size: 1.05rem; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 48px; height: 4px;
  background: var(--gold); border-radius: 2px;
  margin: .75rem 0;
}
.divider.center { margin: .75rem auto; }

/* ---------- Feature Boxes --------------------------------- */
.feature-box {
  padding: 2rem;
  border-radius: 10px;
  background: var(--gray-10);
  border-left: 4px solid var(--blue);
  transition: border-color var(--trans), background var(--trans);
}
.feature-box:hover { background: #ecf3fb; border-color: var(--gold); }
.feature-icon {
  font-size: 2.2rem; margin-bottom: 1rem;
}
.feature-box h4 { margin-bottom: .5rem; color: var(--navy); }

/* ---------- Brand Logos ----------------------------------- */
.partner-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: center;
  padding: 2rem 0;
}
.partner-logo {
  background: var(--white);
  border: 1px solid var(--gray-20);
  border-radius: 8px;
  padding: .6rem 1.2rem;
  font-weight: 700; font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: .03em;
  transition: box-shadow var(--trans);
  display: flex; align-items: center; justify-content: center;
  min-width: 100px; min-height: 56px;
}
.partner-logo img {
  max-height: 44px; max-width: 120px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.partner-logo:hover { box-shadow: 0 4px 16px rgba(13,94,168,.15); }

/* ---------- CTA Banner ------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p  { opacity: .85; margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-buttons   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact Form ---------------------------------- */
.contact-form { max-width: 600px; }
.form-group   { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--gray-20);
  border-radius: var(--radius);
  font-size: .95rem; font-family: inherit;
  transition: border-color var(--trans), box-shadow var(--trans);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,94,168,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Info List -------------------------------------- */
.info-list li {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-20);
}
.info-list li:last-child { border-bottom: none; }
.info-list .info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.info-list .info-label { font-weight: 600; font-size: .85rem; color: var(--gray-60); margin-bottom: .15rem; }
.info-list .info-val   { color: var(--text); }

/* ---------- Testimonials ---------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: 0 2px 16px rgba(10,31,60,.07);
  border-top: 4px solid var(--gold);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .8rem; }
.testimonial-card p { color: var(--gray-60); font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; font-size: .9rem; }

/* ---------- Footer ---------------------------------------- */
.site-footer {
  background: var(--gray-90);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .9rem; margin-top: .8rem; line-height: 1.6; }
.footer-col h5 {
  color: var(--white); font-size: .9rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a { display: block; padding: .25rem 0; font-size: .9rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.social-row { display: flex; gap: .7rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background var(--trans);
}
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ---------- Breadcrumb ------------------------------------- */
.breadcrumb {
  background: var(--gray-10);
  padding: .75rem 0;
  font-size: .85rem;
  color: var(--gray-60);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

/* ---------- Page Hero ------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5c 100%);
  color: var(--white);
  padding: 4rem 0;
}
.page-hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--gold-lt);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .8rem;
  border-radius: 50px; margin-bottom: 1rem;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p   { opacity: .85; max-width: 600px; font-size: 1.05rem; }

/* ---------- Product Detail Lists -------------------------- */
.product-card {
  display: flex;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10,31,60,.08);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10,31,60,.13); }
.product-card-img {
  width: 200px; flex-shrink: 0;
  background: var(--gray-10);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.product-card-body { padding: 1.5rem; flex: 1; }
.product-card-body h3 { margin-bottom: .4rem; }
.product-card-body .price { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: .5rem 0 .8rem; }
.product-card-body p { color: var(--gray-60); font-size: .9rem; margin-bottom: .8rem; }

/* ---------- Table ----------------------------------------- */
.specs-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.specs-table th {
  background: var(--navy); color: var(--white);
  padding: .75rem 1rem; text-align: left; font-weight: 600;
}
.specs-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--gray-20); }
.specs-table tr:nth-child(even) td { background: var(--gray-10); }

/* ---------- Alert / Notice -------------------------------- */
.notice {
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-size: .9rem;
  margin: 1.5rem 0;
}
.notice-info  { background: #e8f4fd; border-color: var(--blue); color: #0a3d7a; }
.notice-gold  { background: #fdf5e6; border-color: var(--gold); color: #7a4a00; }

/* ---------- Responsive ------------------------------------ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-badge { display: none; }
}
@media (max-width: 768px) {
  /* Slider mobile */
  .hero-slider { height: 70vh; min-height: 420px; }
  .hs-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hs-sub { font-size: .92rem; margin-bottom: 1.6rem; }
  .hs-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .hs-prev { left: .8rem; }
  .hs-next { right: .8rem; }
  .hs-btn { font-size: .85rem; padding: .6rem 1.4rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--navy); padding: 1rem; gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { border-radius: 0; padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .dropdown-menu { position: static; display: none; border: none; padding: 0 0 0 1rem; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-toggle { display: block; }
  .header-inner { flex-wrap: wrap; position: relative; }
  .site-header { position: sticky; }
  .product-card { flex-direction: column; }
  .product-card-img { width: 100%; height: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .partner-row { gap: .8rem; }
  .hs-buttons { flex-direction: column; gap: .6rem; }
}

/* ---------- Utilities ------------------------------------- */
.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--gray-60); }
.bg-gray    { background: var(--gray-10); }
.bg-navy    { background: var(--navy); color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.tag {
  display: inline-block;
  background: var(--gray-20); color: var(--navy);
  border-radius: 50px; padding: .2rem .8rem;
  font-size: .78rem; font-weight: 600;
}
.tag-blue { background: #dbeeff; color: var(--blue); }

/* ============================================================
   v01 Rebuild: Dark + Green + Global Sliders
   ============================================================ */

:root {
  --navy: #101416;
  --blue: #00a57f;
  --blue-lt: #1fd0a7;
  --gold: #8bf1d7;
  --gold-lt: #cffff2;
  --white: #ebf2f0;
  --gray-10: #171d20;
  --gray-20: #273136;
  --gray-60: #8ea29e;
  --gray-90: #0a0d0f;
  --text: #c8d6d3;
  --radius: 11px;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

html,
body {
  background:
    radial-gradient(circle at 8% -5%, rgba(0, 165, 127, 0.28), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(0, 165, 127, 0.18), transparent 35%),
    linear-gradient(180deg, #0e1113 0%, #14191c 45%, #101416 100%);
}

body {
  color: var(--text);
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
.hs-title,
.hs-eyebrow,
.section-header .eyebrow {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--white);
  letter-spacing: 0.02em;
}

p,
.text-muted,
.section-header p,
.page-hero p,
.hero p,
.hs-sub,
.cta-banner p {
  color: #a8bab6;
}

.section,
.section-sm {
  position: relative;
}

.section::before,
.section-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.12;
  pointer-events: none;
}

.container {
  max-width: 1320px;
  position: relative;
  z-index: 1;
}

.site-header {
  background: linear-gradient(180deg, rgba(9, 11, 13, 0.96), rgba(17, 21, 24, 0.94));
  border-bottom: 1px solid rgba(0, 165, 127, 0.35);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1320px;
}

.site-nav {
  gap: 0.35rem;
}

.site-nav a {
  color: rgba(234, 242, 240, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(0, 165, 127, 0.2);
  color: #edfffb;
}

.dropdown-menu {
  background: #101619;
  border: 1px solid rgba(0, 165, 127, 0.35);
}

.dropdown-menu a:hover {
  background: rgba(0, 165, 127, 0.16);
}

.nav-cta,
.btn-primary {
  background: var(--blue) !important;
  color: #03120f !important;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 165, 127, 0.34);
}

.btn-primary:hover,
.nav-cta:hover,
.btn-blue:hover {
  background: var(--blue-lt) !important;
  color: #02110e !important;
}

.btn {
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.btn-blue {
  background: var(--blue);
  color: #04110f;
}

.btn-outline,
.hs-btn-ghost {
  border-color: rgba(0, 165, 127, 0.7);
  color: var(--gold);
}

.btn-outline:hover,
.hs-btn-ghost:hover {
  background: rgba(0, 165, 127, 0.2);
}

.hero-slider,
.hero,
.page-hero,
.cta-banner {
  border-top: 1px solid rgba(0, 165, 127, 0.2);
  border-bottom: 1px solid rgba(0, 165, 127, 0.24);
  background:
    linear-gradient(150deg, rgba(11, 14, 16, 0.96), rgba(0, 165, 127, 0.22) 140%);
}

.hero-slider {
  min-height: 540px;
  max-height: 860px;
}

.hs-overlay {
  background: linear-gradient(to bottom, rgba(8, 11, 12, 0.26) 0%, rgba(10, 13, 15, 0.64) 55%, rgba(8, 11, 13, 0.8) 100%);
}

.hs-eyebrow,
.page-hero .eyebrow,
.hero-eyebrow,
.section-header .eyebrow {
  background: rgba(0, 165, 127, 0.14);
  color: var(--gold);
  border: 1px solid rgba(0, 165, 127, 0.56);
  letter-spacing: 0.12em;
}

.hs-title,
.section-header h2,
.page-hero h1,
.hero h1,
.cta-banner h2 {
  text-transform: uppercase;
}

.hs-btn-primary {
  background: rgba(0, 165, 127, 0.22);
  border: 1px solid rgba(0, 165, 127, 0.65);
  color: #ddfff6;
}

.hs-btn-primary:hover {
  background: rgba(0, 165, 127, 0.36);
}

.hs-arrow {
  background: rgba(10, 15, 16, 0.7);
  border-color: rgba(0, 165, 127, 0.58);
}

.hs-arrow:hover {
  background: rgba(0, 165, 127, 0.28);
}

.hs-dot {
  background: rgba(182, 214, 206, 0.34);
}

.hs-dot.active {
  background: var(--blue-lt);
}

.divider {
  width: 62px;
  background: linear-gradient(90deg, var(--blue) 0%, #76f6d8 100%);
}

.breadcrumb {
  background: #0d1012;
  border-top: 1px solid rgba(0, 165, 127, 0.26);
  border-bottom: 1px solid rgba(0, 165, 127, 0.26);
  color: #95a8a4;
}

.breadcrumb a {
  color: #9af0da;
}

.bg-gray {
  background: linear-gradient(180deg, rgba(18, 22, 24, 0.85), rgba(13, 16, 18, 0.92));
}

.card,
.product-card,
.feature-box,
.testimonial-card,
.partner-logo {
  background: linear-gradient(180deg, rgba(25, 31, 34, 0.92), rgba(18, 23, 26, 0.92));
  border: 1px solid rgba(0, 165, 127, 0.24);
  box-shadow: var(--shadow);
}

.card:hover,
.product-card:hover,
.feature-box:hover,
.testimonial-card:hover,
.partner-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 255, 221, 0.68);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.48);
}

.card-img,
.product-card-img {
  background: #11171a;
}

.card-body h3,
.product-card h3,
.feature-box h4,
.footer-col h5,
.card [style*='color:var(--navy)'] {
  color: var(--white) !important;
}

.card-badge,
.tag,
.tag-blue {
  background: rgba(0, 165, 127, 0.14);
  border: 1px solid rgba(0, 165, 127, 0.4);
  color: #a5f7e2;
}

.card-price,
.product-card-body .price,
.text-blue,
.text-gold {
  color: #97f3db;
}

.notice,
.notice-info,
.notice-gold {
  background: rgba(0, 165, 127, 0.1);
  border-color: rgba(0, 165, 127, 0.74);
  color: #cbeee5;
}

.form-group label {
  color: #b4c5c1;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #10171a;
  border-color: rgba(0, 165, 127, 0.34);
  color: #e8f1ef;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #809a95;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(122, 255, 219, 0.95);
  box-shadow: 0 0 0 3px rgba(0, 165, 127, 0.25);
}

.site-footer {
  background: linear-gradient(180deg, #0f1315 0%, #090b0d 100%);
  border-top: 1px solid rgba(0, 165, 127, 0.25);
  color: #96aaa5;
}

.footer-col a:hover,
.social-link:hover {
  background: var(--blue);
  color: #02100e;
}

.social-link {
  background: rgba(0, 165, 127, 0.14);
}

.footer-bottom {
  color: #6d837f;
}

.info-list li {
  border-bottom: 1px solid rgba(0, 165, 127, 0.22);
}

.info-list .info-label {
  color: #8ba09b;
}

.info-list .info-val,
.info-list a {
  color: #d2dfdc;
}

.partner-logo img {
  filter: grayscale(1) contrast(1.1) brightness(1.34);
  opacity: 0.86;
}

.partner-logo:hover img {
  filter: grayscale(0) contrast(1.03) brightness(1.1);
  opacity: 1;
}

/* ----- Generic card/product sliders (auto via JS) ----- */
.kf-slider-shell {
  position: relative;
  margin-top: 0.4rem;
}

.kf-slider-track {
  --kf-gap: 1.25rem;
  --kf-visible: 3;
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--kf-visible) - 1) * var(--kf-gap)) / var(--kf-visible));
  gap: var(--kf-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.15rem;
  padding: 0.2rem 0.12rem 0.9rem;
  scrollbar-width: none;
}

.kf-slider-track::-webkit-scrollbar {
  display: none;
}

.kf-slider-track > * {
  scroll-snap-align: start;
  min-width: 0;
}

.kf-slider-shell[data-cols='4'] .kf-slider-track {
  --kf-visible: 4;
}

.kf-slider-shell[data-cols='3'] .kf-slider-track {
  --kf-visible: 3;
}

.kf-slider-shell[data-cols='2'] .kf-slider-track {
  --kf-visible: 2;
}

.kf-slider-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.kf-slider-controls.is-hidden {
  display: none;
}

.kf-slider-btn {
  pointer-events: auto;
  position: absolute;
  top: calc(50% - 26px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 165, 127, 0.6);
  background: rgba(10, 15, 16, 0.84);
  color: #eafff9;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
}

.kf-slider-btn:hover:not(:disabled) {
  background: rgba(0, 165, 127, 0.28);
  transform: translateY(-1px);
}

.kf-slider-btn:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.kf-slider-btn.kf-prev {
  left: -14px;
}

.kf-slider-btn.kf-next {
  right: -14px;
}

/* ----- Responsive refinements ----- */
@media (max-width: 1200px) {
  .site-nav a {
    font-size: 0.73rem;
    padding: 0.54rem 0.68rem;
  }

  .kf-slider-shell[data-cols='4'] .kf-slider-track {
    --kf-visible: 3;
  }
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  [style*='display:grid'][style*='grid-template-columns:1fr 1fr'] {
    grid-template-columns: 1fr !important;
    gap: 1.3rem !important;
  }

  .kf-slider-shell[data-cols='4'] .kf-slider-track,
  .kf-slider-shell[data-cols='3'] .kf-slider-track {
    --kf-visible: 2;
  }

  .kf-slider-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.85rem 1rem;
    position: relative;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: #101518;
    border-top: 1px solid rgba(0, 165, 127, 0.28);
    border-bottom: 1px solid rgba(0, 165, 127, 0.28);
    padding: 0.3rem 0;
    gap: 0;
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 165, 127, 0.16);
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
    white-space: normal;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > a {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 100%;
    background: #0f1417;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 1.65rem;
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero-slider {
    height: 76vh;
    min-height: 460px;
  }

  .hs-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .hs-prev {
    left: 0.7rem;
  }

  .hs-next {
    right: 0.7rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section-sm {
    padding: 2.4rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    justify-content: center;
  }

  .kf-slider-track {
    --kf-gap: 1rem;
  }

  .kf-slider-shell[data-cols='4'] .kf-slider-track,
  .kf-slider-shell[data-cols='3'] .kf-slider-track,
  .kf-slider-shell[data-cols='2'] .kf-slider-track {
    --kf-visible: 1.2;
  }

  .kf-slider-btn {
    top: auto;
    bottom: -0.2rem;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .kf-slider-btn.kf-prev {
    left: 0;
  }

  .kf-slider-btn.kf-next {
    right: 0;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hs-title {
    font-size: clamp(2rem, 11vw, 3.1rem);
    line-height: 1.1;
  }

  .hs-sub {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
  }

  .hs-eyebrow,
  .section-header .eyebrow,
  .page-hero .eyebrow,
  .hero-eyebrow {
    font-size: 0.67rem;
  }

  .kf-slider-shell[data-cols='4'] .kf-slider-track,
  .kf-slider-shell[data-cols='3'] .kf-slider-track,
  .kf-slider-shell[data-cols='2'] .kf-slider-track {
    --kf-visible: 1.05;
  }
}
