:root {
  --bg: #f7fbfa;
  --surface: #ffffff;
  --surface-soft: #eef7f5;
  --text: #102a2a;
  --muted: #5e7272;
  --border: #d8e7e4;
  --primary: #123c46;
  --primary-hover: #0f333b;
  --accent: #8de3cf;
  --accent-strong: #4fc9aa;
  --shadow: 0 10px 30px rgba(18, 60, 70, 0.08);
  --radius: 18px;
  --container: 1200px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 20, 24, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(247, 251, 250, 0.82);
  border-bottom: 1px solid rgba(16, 42, 42, 0.08);
  box-shadow: 0 10px 30px rgba(10, 20, 24, 0.10);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.site-header.scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
}



/* Premium effekt */


/* Hover effekt */
.logo:hover img {
  transform: scale(1.05);
}
.logo,
.site-nav a,
.main-nav a,
.menu-toggle {
  color: #ffffff;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled .logo,
.site-header.scrolled .site-nav a,
.site-header.scrolled .main-nav a,
.site-header.scrolled .menu-toggle {
  color: var(--text);
}

.site-nav a:hover,
.main-nav a:hover {
  color: var(--accent);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .menu-toggle {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.site-nav,
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav {
  position: static;
}

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

.site-nav a,
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #123c46, #0f333b);
  color: #ffffff;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #184955, #123c46);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--primary-hover);
}

/* =========================
   HERO / PAGE HEADER
========================= */

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-lead,
.page-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 70ch;
}

.hero-lead {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--muted);
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(180deg, rgba(18,60,70,0.06), transparent);
}


.hero-premium {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  padding: 5rem 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.82) 0%, rgba(7, 16, 22, 0.62) 42%, rgba(7, 16, 22, 0.45) 100%),
    url("/assets/img/hero-premium.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.34) 100%);
  pointer-events: none;
}

.hero-premium-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-premium .hero-eyebrow {
  color: #c7f3e6;
  margin-bottom: 0.9rem;
}

.hero-premium h1 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-premium-lead {
  max-width: 62ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.6rem;
}

.btn-hero {
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.btn-hero-secondary {
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hero-points-premium {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  gap: 0.8rem 1.2rem;
}

.hero-points-premium li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points-premium li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8de3cf;
}

@media (max-width: 992px) {
  .hero-premium {
    min-height: 620px;
    padding: 4rem 0;
    background:
      linear-gradient(180deg, rgba(7, 16, 22, 0.82) 0%, rgba(7, 16, 22, 0.58) 100%),
      url("/assets/img/hero-premium.jpg") center/cover no-repeat;
  }

  .hero-premium h1 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .hero-premium {
    min-height: 560px;
    padding: 3.25rem 0;
    align-items: flex-end;
  }

  .hero-premium-content {
    max-width: 100%;
  }

  .hero-premium h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 100%;
  }

  .hero-premium-lead {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-points-premium {
    display: grid;
    gap: 0.65rem;
  }
}

/* =========================
   CARDS / BOXES
========================= */

.hero-card,
.card,
.benefit,
.price-box,
.cta-box,
.content-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 0.85rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-item span {
  color: var(--muted);
}

.section-head {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.section-head p:last-child {
  color: var(--muted);
}

.services,
.why-us,
.pricing,
.faq-preview,
.cta {
  padding: 3rem 0;
}

.page-section {
  padding: 2rem 0 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.35rem;
  height: 100%;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefit {
  padding: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.price-box {
  padding: 1.5rem;
}

.price-box h3 {
  margin-top: 0;
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: var(--primary);
}

/* =========================
   FAQ
========================= */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
   CTA
========================= */

.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* =========================
   CONTENT LAYOUT
========================= */

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.content-box {
  padding: 1.5rem;
}

.content-box h2:first-child,
.content-box h3:first-child {
  margin-top: 0;
}

/* =========================
   FORM
========================= */

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent-strong);
}

/* =========================
   CHECK LIST
========================= */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 4rem 0 3rem;
  background: var(--primary);
  color: #fff;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

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

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.site-footer a:hover {
  color: #ffffff;
}

/* =========================
   COOKIE
========================= */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 42, 42, 0.96);
  color: #fff;
  padding: 1rem 0;
  z-index: 2000;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.hidden {
  display: none !important;
}

/* =========================
   TABLET / SMALL DESKTOP
========================= */

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .benefits,
  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .page-hero {
    padding: 3rem 0 1.25rem;
  }
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }
.site-nav,
.main-nav ul {
  display: none;
  position: absolute;
  top: calc(var(--header-height) + 10px);
  left: 1rem;
  right: 1rem;
  background: rgba(16, 42, 42, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}
  .site-nav a,
.main-nav a {
  color: #ffffff;
}

.site-nav a:hover,
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
  }

  .site-nav.open,
  .main-nav ul.open {
    display: flex;
  }

  .site-nav a,
  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .main-nav a:hover {
    background: var(--surface-soft);
  }

  .main-nav .btn-primary,
  .site-nav .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }


/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 30px;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .cards,
  .benefits,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .benefit,
  .price-box,
  .content-box,
  .hero-card {
    padding: 1.15rem;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-section,
  .services,
  .why-us,
  .pricing,
  .faq-preview,
  .cta {
    padding: 2rem 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .info-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.breadcrumbs {
  padding: 1rem 0 0;
}

.breadcrumbs-nav {
  font-size: 0.95rem;
  color: var(--muted);
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: "/";
  color: var(--muted);
}

.breadcrumbs-list a {
  color: var(--muted);
}

.breadcrumbs-list a:hover {
  color: var(--primary);
}

.breadcrumbs-list .current {
  color: var(--text);
  font-weight: 700;
}

/* ===== PREMIUM HEADER OVER HERO ===== */

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 20, 24, 0.18) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;
}

.site-header.scrolled {
  background: rgba(247, 251, 250, 0.82) !important;
  border-bottom: 1px solid rgba(16, 42, 42, 0.08) !important;
  box-shadow: 0 10px 30px rgba(10, 20, 24, 0.10) !important;
}

.site-header .logo,
.site-header .site-nav a,
.site-header .main-nav a,
.site-header .menu-toggle {
  color: #ffffff !important;
}

.site-header.scrolled .logo,
.site-header.scrolled .site-nav a,
.site-header.scrolled .main-nav a,
.site-header.scrolled .menu-toggle {
  color: #17313a !important;
}

.site-header .menu-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.site-header.scrolled .menu-toggle {
  background: rgba(255, 255, 255, 0.70) !important;
  border: 1px solid rgba(16, 42, 42, 0.10) !important;
}

/* Hero ska börja under headern men se ut som att headern ligger ovanpå */
.hero,
.hero-premium {
  padding-top: calc(var(--header-height) + 2rem) !important;
  margin-top: 0 !important;
}

/* Mobilmeny */
@media (max-width: 900px) {
  .site-nav,
  .main-nav ul {
    background: rgba(16, 42, 42, 0.72) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25) !important;
  }

  .site-nav a,
  .main-nav a {
    color: #ffffff !important;
  }

  .site-nav a:hover,
  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
  }
}
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ===== TRUST SECTION ===== */

.trust {
  padding: 1.2rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== REVIEWS ===== */

.reviews {
  padding: 3rem 0;
}

/* ===== MOBILE CTA ===== */

.mobile-cta {
  display: none;
}
.mobile-cta {
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1200;
    border-top: 1px solid var(--border);
  }

  .mobile-cta .btn {
    width: 100%;
    font-size: 1rem;
  }

  body {
    padding-bottom: 84px;
  }
}
.nav-cta {
  margin-left: 0.35rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.45rem;
  }
}
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.area-links a {
  color: var(--primary);
  font-weight: 600;
}

.area-links a:hover {
  color: var(--primary-hover);
}
.area-text {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 75ch;
}
.text-link.secondary {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .logo img {
    height: 44px;
  }
}
.logo-minimal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-minimal-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(190, 140, 45, 0.18));
}
.logo-minimal-icon {
  transition: transform 0.3s ease;
}

.logo-minimal:hover .logo-minimal-icon {
  transform: scale(1.08);
}
.logo-minimal-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-minimal-text {
  display: inline-flex;
  align-items: baseline;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.015em;
}

.logo-minimal-sbs {
  color: #f7f7f3;
}

.logo-minimal-pro {
  background: linear-gradient(135deg, #f3d98a, #d3a84b, #9a6a20);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo-minimal:hover .logo-minimal-icon,
.logo-minimal:hover .logo-minimal-text {
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}

.site-header.scrolled .logo-minimal-sbs {
  color: #102a2a;
}

.site-header.scrolled .logo-minimal-pro {
  color: #b8862f;
}

@media (max-width: 768px) {
  .logo-minimal {
    gap: 0.55rem;
  }

  .logo-minimal-icon {
    width: 32px;
    height: 32px;
  }

  .logo-minimal-text {
    font-size: 1.18rem;
  }
}
.contact-trust {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: -0.2rem;
  margin-bottom: 1rem;
}
.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  margin-top: 1rem;
}

.contact-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(18, 60, 70, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-callout {
  margin: 1.1rem 0 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(18, 60, 70, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 60, 70, 0.05), rgba(18, 60, 70, 0.02));
}

.contact-callout-label {
  margin: 0 0 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.form-helper {
  margin-top: -0.2rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .contact-hero-points {
    gap: 0.5rem;
  }

  .contact-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.contact-form {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.form-after {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-cta-section {
  padding-top: 0;
}

.contact-cta-box {
  align-items: center;
}

.contact-cta-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.contact-cta-box p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 65ch;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-strip {
  padding: 0 0 2.5rem;
}

.contact-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

.contact-strip-inner span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(18, 60, 70, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .contact-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-cta-actions .btn {
    width: 100%;
  }

  .contact-strip-inner span {
    width: 100%;
    justify-content: center;
  }
}
.form-status {
  display: none;
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  display: block;
  background: rgba(28, 122, 72, 0.10);
  color: #1d6b46;
  border: 1px solid rgba(28, 122, 72, 0.18);
}

.form-status.is-error {
  display: block;
  background: rgba(179, 59, 59, 0.10);
  color: #9f2f2f;
  border: 1px solid rgba(179, 59, 59, 0.18);
}
.site-footer {
  background: linear-gradient(180deg, #102127 0%, #0c1a1f 100%);
  color: #cfd8dc;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #cfd8dc;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #b0bec5;
}

/* LOGO */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #c8a96a, #e6c98a);
  color: #0f1f24;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.footer-logo-text {
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* CTA */
.footer-cta {
  margin-top: 0.8rem;
  display: inline-block;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #90a4ae;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #cfd8dc;
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-legal {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal li {
  margin-bottom: 0.45rem;
}

.footer-legal a {
  font-size: 0.9rem;
  color: #b8c6cc;
}
.service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  margin-top: 1rem;
}

.service-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(18, 60, 70, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .service-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
.page-hero .eyebrow {
  opacity: 0.9;
  letter-spacing: 0.08em;
}