/* Business på burk - High-Craft Scandinavian Architectural Identity */
:root {
  --bg: #EBF1F1;
  --bg-dark: #122423;
  --bg-subtle: #DFE8E7;
  --surface: #FFFFFF;
  --surface-tint: #F5F9F9;
  --surface-dark: #193130;
  --border: #DCE5E4;
  --border-strong: #BDCECD;
  --border-dark: #264342;
  --border-subtle: #E8EFEF;
  --text-primary: #122423;
  --text-secondary: #485C5B;
  --text-muted: #6C8281;
  --text-on-dark: #FFFFFF;
  --text-muted-on-dark: #A3BDBB;
  --accent: #D85D36;
  --accent-hover: #BF4E29;
  --accent-contrast: #FFFFFF;
  --success: #2E7D32;
  --success-light: #E8F5E9;
  --focus-ring: #122423;
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(18, 36, 35, 0.05);
  --shadow-md: 0 10px 24px -6px rgba(18, 36, 35, 0.08);
  --shadow-lg: 0 24px 44px -12px rgba(18, 36, 35, 0.12);
  
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-hand: 'Caveat', cursive, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  --container-max: 1120px;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  background-color: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--accent);
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.22;
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  line-height: 1.3;
}

p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.text-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(235, 241, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.nav-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.brand-tin-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-sizing: border-box;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(216, 93, 54, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(216, 93, 54, 0.32);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--text-primary);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--surface-tint);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

/* 1. Hero Section (Split Hero per Dealt Hand) */
.hero-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 2.2rem;
    padding-bottom: 2.5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-content h1 {
  max-width: 22ch;
}

.hero-content p {
  max-width: 46ch;
}

/* REAL SaaS / Customer Portal UI Preview in Hero */
.hero-ui-browser {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .hero-ui-browser {
    margin-bottom: 1.5rem; /* Safe breathing room on mobile */
  }
}

.browser-header {
  background: #E6EEEE;
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.b-dot-red { background: #E57373; }
.b-dot-yellow { background: #FFD54F; }
.b-dot-green { background: #81C784; }

.browser-address {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-body {
  padding: 1.1rem;
  background: #F8FAFA;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ui-client-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
}

.ui-client-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ui-client-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--success-light);
  color: var(--success);
  border: 1px solid rgba(46, 125, 50, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.ui-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.ui-metric-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ui-metric-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}

.ui-metric-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.ui-metric-sub {
  font-size: 0.65rem;
  color: var(--success);
  font-weight: 500;
}

/* Live Lead Feed Mockup */
.ui-feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ui-feed-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
}

.ui-feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.ui-feed-item:last-child {
  border-bottom: none;
}

.ui-lead-contact {
  font-weight: 600;
  color: var(--text-primary);
}

.ui-lead-amount {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.8rem;
}

.ui-oriiion-strip {
  background: #122423;
  color: #FFFFFF;
  border-radius: var(--radius-xs);
  padding: 0.65rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.ui-oriiion-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ui-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
}

/* 2. Problem Statement (Dark Anchor Mode for Visual Variation) */
.problem-section {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid #0B1716;
  border-bottom: 1px solid #0B1716;
}

.problem-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.problem-header h2 {
  color: var(--text-on-dark);
  margin-bottom: 0.8rem;
}

.problem-header p {
  color: var(--text-muted-on-dark);
}

.contrast-island {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contrast-island {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contrast-col {
  padding: 2rem;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .contrast-col {
    padding: 1.4rem 1.1rem;
  }
}

.contrast-col-chaos {
  background-color: var(--surface-dark);
  border: 1px solid var(--border-dark);
}

.contrast-col-order {
  background-color: #1B3837;
  border: 1px solid #305A58;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.contrast-col-order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.contrast-col h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  color: var(--text-on-dark);
  margin-bottom: 1.2rem;
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted-on-dark);
}

.contrast-item strong {
  color: var(--text-on-dark);
}

.contrast-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* 3. Core Content Bridge: Subscription Architecture Comparison */
.comparison-section {
  background-color: var(--bg-subtle);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.comp-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.4rem;
}

.comp-header h2 {
  margin-bottom: 0.6rem;
}

/* Desktop Comparison Matrix */
.comp-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.comp-table th {
  background: #EDF3F3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-badge-burk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--success);
}

.comp-badge-old {
  color: var(--text-muted);
}

/* Mobile Responsive Cards for Comparison (NEVER drops right-hand column) */
.comp-mobile-list {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 680px) {
  .comp-table-wrap {
    display: none;
  }
  .comp-mobile-list {
    display: flex;
  }
}

.comp-card-mobile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}

.comp-card-mobile-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.4rem;
}

.comp-card-mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.85rem;
  gap: 0.5rem;
}

.comp-card-mobile-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* 4. The Unboxing (Signature Element Section) */
.unboxing-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.unboxing-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}

/* Strictly 1 eyebrow on the entire page */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(18, 36, 35, 0.05);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.unboxing-header h2 {
  margin-bottom: 0.6rem;
}

/* The Digital Specimen Tin Component */
.specimen-tin-container {
  max-width: 980px;
  margin: 0 auto;
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  box-sizing: border-box;
}

.tin-bezel {
  background: linear-gradient(180deg, #F8FAFA 0%, #EBF1F1 100%);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tin-bezel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.tin-screw {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #DCE5E4;
  border: 1px solid #B0C4C3;
  position: relative;
}

.tin-screw::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1px;
  background: #7B8F8E;
  transform: translateY(-50%) rotate(45deg);
}

.tin-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.tin-tray {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background-color: var(--border);
  padding: 1px;
}

@media (max-width: 840px) {
  .tin-tray {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .tin-tray {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tin-compartment {
  background-color: var(--surface);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .tin-compartment {
    padding: 1.4rem 1.1rem;
  }
}

.tin-compartment:hover,
.tin-compartment:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(18, 36, 35, 0.08);
  background-color: #FFFFFF;
  z-index: 2;
}

.compartment-index {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.compartment-title {
  font-size: 1.18rem;
  color: var(--text-primary);
}

.compartment-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.compartment-highlight {
  background: linear-gradient(135deg, #FFFFFF 0%, #FCF8F6 100%);
  border-left: 3px solid var(--accent);
}

.tin-footer-seal {
  padding: 1.2rem 1.6rem;
  background-color: #F8FAFA;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 480px) {
  .tin-footer-seal {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem;
  }
}

.inspection-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px dashed rgba(18, 36, 35, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(-1.5deg);
}

.stamp-handwriting {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.stamp-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

/* 5. Operational Method (Clean Linear Architectural Timeline) */
.method-section {
  background-color: var(--bg);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.method-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.method-header h2 {
  margin-bottom: 0.6rem;
}

/* Architectural Numbered Progression (Breaks container monotony) */
.method-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
}

@media (max-width: 780px) {
  .method-timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }
}

.method-step {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.step-num-badge {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #B5C9C8;
  line-height: 1;
  letter-spacing: -0.04em;
}

.method-step h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.method-step p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.step-rule {
  height: 2px;
  background: #CBDAD9;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Dynamic Reviews Section */
.reviews-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.review-card {
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.review-stars {
  color: #E29934;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.review-author {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* 6. Action Island (Single-Purpose Conversion Container) */
.action-section {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .action-section {
    padding-bottom: 6.5rem;
  }
}

.action-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.6rem;
  background-color: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .action-card {
    padding: 1.6rem 1.1rem;
  }
}

.action-card h2 {
  margin-bottom: 0.5rem;
}

.action-card > p {
  margin-bottom: 1.6rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: #FFFFFF;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 3px rgba(18, 36, 35, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.checkbox-label a {
  color: var(--text-primary);
  text-decoration: underline;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.status-success {
  display: block;
  background-color: #E8F5E9;
  color: #1E4620;
  border: 1px solid #C8E6C9;
}

.form-status.status-error {
  display: block;
  background-color: #FFEBEE;
  color: #B71C1C;
  border: 1px solid #FFCDD2;
}

/* 7. Footer (Clean Utility Band) */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  margin-top: auto;
}

@media (max-width: 600px) {
  .site-footer {
    padding-bottom: 6rem; /* Guarantees chat widget clearance */
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }
}

.footer-brand h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 34ch;
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Oriiion Badge - REQUIRED EXACT CSS */
.oriiion-badge{display:inline-flex;align-items:center;gap:.5em;background:#F7F3EF;color:#57525A;text-decoration:none;border-radius:999px;padding:.5em 1em .5em 1.1em;font-size:.75rem;font-weight:500;letter-spacing:.01em;line-height:1;box-shadow:0 1px 2px rgba(0,0,0,.25);transition:box-shadow .15s ease,transform .15s ease}
.oriiion-badge:hover{box-shadow:0 2px 8px rgba(0,0,0,.35);transform:translateY(-1px)}
.oriiion-badge span{transform:translateY(.5px)}
.oriiion-badge img{height:17px;width:auto;display:block}

/* Subpages Shared */
.booking-header {
  padding-top: 3rem;
  padding-bottom: 2rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.booking-header h1 {
  margin-bottom: 0.8rem;
}

.booking-container {
  max-width: 620px;
  margin: 0 auto 5rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .booking-container {
    padding: 1.4rem 1rem;
  }
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.slot-btn {
  padding: 0.55rem 0.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.slot-btn:hover {
  border-color: var(--accent);
  background: #FFF5F2;
}

.slot-btn.active {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.legal-container {
  max-width: 740px;
  margin: 3rem auto 5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .legal-container {
    padding: 1.6rem 1.1rem;
  }
}

.legal-content h1 {
  margin-bottom: 1.2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.legal-content ul {
  margin-bottom: 1.2rem;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

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