/* ============================================================
   DUARTZION — DESIGN TOKENS & CUSTOM PROPERTIES
   ============================================================ */

:root {
  
  --color-background: #F5F3EE;
  --color-surface: #FFFFFF;
  --color-surface-alt: #FFFEF9;
  --color-primary: #1A1A2E;
  --color-primary-light: #2D2D4A;
  --color-accent: #E8462A;
  --color-accent-hover: #C93820;
  --color-accent-light: #FFF0ED;
  --color-secondary: #F5C842;
  --color-secondary-dark: #D4A800;
  --color-text-primary: #1A1A2E;
  --color-text-secondary: #4A4A6A;
  --color-text-muted: #8888AA;
  --color-border: #1A1A2E;
  --color-border-light: #D8D6CF;
  --color-success: #2A7A4F;

  
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  
  --shadow-card: 4px 4px 0px #1A1A2E;
  --shadow-card-hover: 6px 6px 0px #1A1A2E;
  --shadow-card-lg: 6px 6px 0px #1A1A2E;
  --shadow-card-accent: 4px 4px 0px #E8462A;
  --shadow-elevated: 8px 8px 0px #1A1A2E;
  --shadow-subtle: 2px 2px 0px #D8D6CF;

  
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-xs: clamp(11px, 1.2vw, 12px);
  --text-sm: clamp(13px, 1.4vw, 14px);
  --text-base: clamp(15px, 1.6vw, 16px);
  --text-md: clamp(16px, 1.8vw, 18px);
  --text-lg: clamp(18px, 2vw, 20px);
  --text-xl: clamp(20px, 2.4vw, 24px);
  --text-2xl: clamp(24px, 3vw, 32px);
  --text-3xl: clamp(30px, 4vw, 42px);
  --text-4xl: clamp(36px, 5vw, 56px);
  --text-hero: clamp(40px, 6vw, 72px);

  
  --nav-height: 80px;
  --nav-height-compact: 60px;
  --nav-padding: 24px 0;
  --nav-padding-compact: 12px 0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
}

.hero-main-heading {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-heading-large {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-heading-medium {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.inner-page-heading {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-page-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.page-main {
  flex: 1;
  padding-top: var(--nav-height);
}

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--color-background);
  border-bottom: 2px solid var(--color-border);
  padding: var(--nav-padding);
  transition: padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.main-navigation.nav-compact {
  padding: var(--nav-padding-compact);
  background-color: rgba(245, 243, 238, 0.97);
  backdrop-filter: blur(8px);
}

.navigation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navigation-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.navigation-logo:hover {
  opacity: 0.8;
}

.logo-image {
  width: 36px;
  height: 36px;
  transition: width 0.3s ease, height 0.3s ease;
}

.nav-compact .logo-image {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  transition: font-size 0.3s ease;
}

.nav-compact .logo-text {
  font-size: 18px;
}

.navigation-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
}

.navigation-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navigation-links a:hover,
.navigation-links a.nav-link-active {
  color: var(--color-primary);
}

.navigation-links a.nav-link-active {
  font-weight: 600;
}

.navigation-cta-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-accent);
  color: white !important;
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.navigation-cta-button:hover {
  background-color: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   MOBILE MENU — BOTTOM SHEET
   ============================================================ */

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 46, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: var(--color-surface);
  border-top: 3px solid var(--color-border);
  border-radius: 20px 20px 0 0;
  padding: var(--space-4) var(--space-6) var(--space-8);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.mobile-menu-sheet.active {
  transform: translateY(0);
}

.mobile-menu-handle {
  width: 48px;
  height: 5px;
  background-color: var(--color-border-light);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
}

.mobile-menu-navigation {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-text-primary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  min-height: 52px;
}

.mobile-menu-link:hover {
  background-color: var(--color-background);
  border-color: var(--color-border-light);
}

.mobile-menu-link i {
  width: 20px;
  color: var(--color-accent);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-accent);
  color: white;
  font-size: var(--text-md);
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-height: 52px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mobile-menu-cta:hover {
  background-color: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

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

.primary-action-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background-color: var(--color-accent);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.primary-action-button:hover {
  background-color: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
  color: white;
}

.secondary-action-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.secondary-action-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.secondary-outlined-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background-color: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.secondary-outlined-button:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  min-height: calc(100vh - var(--nav-height));
  background-color: var(--color-background);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
  position: relative;
}

.hero-background-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(232, 70, 42, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(245, 200, 66, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
}

.hero-label-tag {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-subtle);
}

.hero-subtext {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: var(--space-6);
  max-width: 520px;
}


.hero-process-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  margin: var(--space-10) 0;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.breadcrumb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}

.breadcrumb-dot {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border-light);
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.breadcrumb-step.active .breadcrumb-dot {
  background-color: var(--color-accent);
  border-color: var(--color-border);
  color: white;
  box-shadow: var(--shadow-card-accent);
}

.breadcrumb-step:hover .breadcrumb-dot {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.breadcrumb-step-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.breadcrumb-step.active .breadcrumb-step-label {
  color: var(--color-text-primary);
}

.breadcrumb-connector {
  width: 32px;
  height: 2px;
  background-color: var(--color-border-light);
  align-self: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-visual-block {
  position: relative;
  z-index: 1;
}

.hero-image-frame {
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 4/3;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-frame:hover .hero-main-image {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.hero-floating-card i {
  color: var(--color-accent);
}

/* ============================================================
   SECTION CARDS
   ============================================================ */

.problem-statement-section,
.service-showcase-section,
.tabbed-content-section,
.process-overview-section,
.about-approach-section,
.visual-break-section,
.owners-teaser-section,
.call-to-action-section,
.methodology-intro-section,
.detailed-process-section,
.methodology-tools-section,
.pricing-approach-section,
.project-types-section,
.timeline-visual-section,
.faq-section,
.owners-questions-section,
.owners-approach-section,
.risk-protection-section,
.owners-image-section,
.contact-main-section,
.contact-map-section,
.inner-page-hero-section,
.owners-hero-section {
  padding: var(--space-20) 0;
}

.problem-statement-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.problem-description {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-5);
}

.problem-image {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.section-header-block {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-intro-text {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: var(--space-4) auto 0;
  line-height: 1.7;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-detail-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-detail-card:hover,
.service-detail-card:focus {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-elevated);
  outline: none;
}

.service-detail-card--accent {
  background-color: var(--color-primary);
}

.service-detail-card--accent .service-card-title,
.service-detail-card--accent .service-card-preview,
.service-detail-card--accent .service-expand-hint,
.service-detail-card--accent .service-card-expanded p,
.service-detail-card--accent .service-feature-list li {
  color: rgba(255,255,255,0.9);
}

.service-detail-card--accent .service-card-icon {
  background-color: var(--color-accent);
  color: white;
}

.service-detail-card--accent .service-feature-list .fa-check {
  color: var(--color-secondary);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-accent-light);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  transition: background-color 0.2s ease;
  box-shadow: var(--shadow-subtle);
}

.service-detail-card:hover .service-card-icon {
  background-color: var(--color-accent);
  color: white;
}

.service-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.service-card-preview {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.service-expand-hint {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease;
}

.service-detail-card:hover .service-expand-hint,
.service-detail-card:focus .service-expand-hint {
  gap: var(--space-3);
}

.service-card-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}

.service-detail-card.expanded .service-card-expanded {
  max-height: 400px;
  margin-top: var(--space-5);
}

.service-detail-card.expanded .service-expand-hint .fa-chevron-down {
  transform: rotate(180deg);
}

.service-expand-hint .fa-chevron-down {
  transition: transform 0.3s ease;
}

.service-card-expanded p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.service-feature-list .fa-check {
  color: var(--color-success);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   TABBED CONTENT
   ============================================================ */

.tab-interface {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
}

.tab-navigation-bar {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  background-color: var(--color-background);
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-navigation-bar::-webkit-scrollbar {
  display: none;
}

.tab-navigation-button {
  padding: var(--space-5) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  min-height: 52px;
}

.tab-navigation-button:hover {
  color: var(--color-text-primary);
}

.tab-navigation-button.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.tab-content-panels {
  padding: var(--space-10) var(--space-12);
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
  animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.tab-panel-text h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.tab-panel-text p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.tab-panel-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}

.tab-panel-link:hover {
  gap: var(--space-3);
}

.tab-panel-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-steps-layout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.process-step-card {
  flex: 1;
  min-width: 180px;
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-elevated);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.15;
}

.process-step-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.process-step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.process-step-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background-color: var(--color-background);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
}

.process-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 20px;
  padding-top: var(--space-8);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT / APPROACH
   ============================================================ */

.about-approach-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-approach-image-block {
  position: relative;
  overflow: hidden;
}

.about-approach-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-approach-image-caption {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-approach-text-block {
  padding: var(--space-12);
}

.about-approach-text-block p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-5);
}

.about-approach-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-8) 0;
}

.approach-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-background);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.approach-highlight-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-subtle);
}

.approach-highlight-item i {
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   VISUAL BREAK
   ============================================================ */

.visual-break-card {
  position: relative;
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 21/7;
}

.visual-break-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12);
}

.visual-break-quote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: white;
  text-align: center;
  max-width: 780px;
  line-height: 1.4;
  quotes: none;
}

/* ============================================================
   OWNERS TEASER
   ============================================================ */

.owners-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.owners-teaser-text p {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-5);
}

.owners-teaser-text .secondary-outlined-button {
  margin-top: var(--space-8);
}

.owners-teaser-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.owners-teaser-feature-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.owners-teaser-feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.owners-teaser-feature-card i {
  font-size: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.owners-teaser-feature-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.owners-teaser-feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.call-to-action-section {
  background-color: var(--color-primary);
  margin: 0;
  padding: var(--space-20) 0;
}

.call-to-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  background-color: var(--color-primary);
  padding: var(--space-12);
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
}

.cta-heading {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}

.cta-subtext {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
}

.cta-action-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-5);
  flex-shrink: 0;
}

.cta-primary-btn {
  background-color: var(--color-accent);
  border-color: white;
  box-shadow: 4px 4px 0px rgba(255,255,255,0.3);
}

.cta-primary-btn:hover {
  box-shadow: 6px 6px 0px rgba(255,255,255,0.3);
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-end;
}

.cta-phone-link,
.cta-email-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.cta-phone-link:hover,
.cta-email-link:hover {
  color: white;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.inner-page-hero-section,
.owners-hero-section {
  background-color: var(--color-primary);
  padding: var(--space-16) 0;
}

.inner-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.breadcrumb-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.breadcrumb-navigation a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.breadcrumb-navigation a:hover {
  color: white;
}

.breadcrumb-navigation i {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.inner-page-heading {
  color: white;
}

.inner-page-subtext {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-top: var(--space-4);
  max-width: 620px;
}

/* ============================================================
   METHODOLOGY PAGE
   ============================================================ */

.methodology-intro-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-12);
}

.methodology-intro-text {
  margin-bottom: var(--space-10);
}

.methodology-intro-text h2 {
  margin-bottom: var(--space-5);
}

.methodology-intro-text p {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-4);
}

.methodology-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.methodology-principle-item {
  padding: var(--space-6);
  background-color: var(--color-background);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.methodology-principle-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-accent);
}

.principle-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent-light);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: var(--space-4);
}

.methodology-principle-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.methodology-principle-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}


.detailed-process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  align-items: flex-start;
}

.timeline-marker {
  display: flex;
  justify-content: center;
  padding-top: var(--space-5);
}

.timeline-number {
  width: 56px;
  height: 56px;
  background-color: var(--color-accent);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card-accent);
  flex-shrink: 0;
}

.timeline-content-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-content-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.timeline-card-header h3 {
  font-size: var(--text-lg);
  font-weight: 700;
}

.timeline-duration-badge {
  padding: var(--space-1) var(--space-4);
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
}

.timeline-content-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.timeline-deliverables {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-background);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.timeline-deliverables strong {
  color: var(--color-text-primary);
}


.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.tools-item-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tools-item-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.tools-item-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 2px solid var(--color-border);
}

.tools-item-content {
  padding: var(--space-6);
}

.tools-item-content h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.tools-item-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-approach-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.pricing-approach-text h2 {
  margin-bottom: var(--space-5);
}

.pricing-approach-text p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-4);
}

.pricing-approach-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.project-type-cards-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.project-type-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.project-type-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-elevated);
}

.project-type-card--featured {
  background-color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-accent);
}

.project-type-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-type-card--featured .project-type-header h3,
.project-type-card--featured .project-type-description,
.project-type-card--featured .project-detail-label,
.project-type-card--featured .project-detail-value {
  color: rgba(255,255,255,0.9);
}

.project-type-card--featured .project-type-icon {
  background-color: var(--color-accent);
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.project-type-card--featured .project-type-cta {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.project-type-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.project-type-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-light);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.project-type-header h3 {
  font-size: var(--text-lg);
  font-weight: 700;
}

.project-type-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.project-type-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.project-type-card--featured .project-type-details {
  background-color:
rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.project-detail-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  justify-content: space-between;
}

.project-detail-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.project-detail-value {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  text-align: right;
  line-height: 1.4;
}

.project-type-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}

.project-type-cta:hover {
  gap: var(--space-3);
}


.timeline-visual-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-10);
  overflow-x: auto;
}

.timeline-visual-row {
  display: flex;
  gap: var(--space-2);
  min-width: 600px;
}

.timeline-visual-phase {
  flex: 0 0 var(--phase-width);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.timeline-visual-bar {
  padding: var(--space-4) var(--space-3);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-visual-phase span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 500;
}

.timeline-visual-bar--1 { background-color: #FFF0ED; }
.timeline-visual-bar--2 { background-color: #FFF8E1; }
.timeline-visual-bar--3 { background-color: var(--color-secondary); }
.timeline-visual-bar--4 { background-color: #E8F5E9; }
.timeline-visual-bar--5 { background-color: #E3F2FD; }


.faq-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover,
.faq-item:focus {
  box-shadow: var(--shadow-card);
  outline: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  min-height: 52px;
}

.faq-toggle-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 var(--space-8) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ============================================================
   OWNERS PAGE
   ============================================================ */

.owners-questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.owners-question-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.owners-question-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.owners-question-icon {
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.owners-question-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.owners-question-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.owners-approach-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.owners-approach-image {
  overflow: hidden;
}

.owners-approach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.owners-approach-content {
  padding: var(--space-12);
}

.owners-approach-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-5);
}

.owners-approach-steps {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.owners-approach-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--color-accent);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 800;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card-accent);
}

.owners-approach-step strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.owners-approach-step p {
  font-size: var(--text-sm) !important;
  margin-top: 0 !important;
}


.risk-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.risk-item-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.risk-item-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.risk-item-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.risk-warning-icon {
  color: var(--color-accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.risk-item-header h4 {
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.3;
}

.risk-item-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

.risk-solution {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-background);
  border: 1px solid var(--color-border-light);
  border-left: 3px solid var(--color-success);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.risk-solution i {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.owners-image-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 2fr;
}

.owners-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
  border-right: 2px solid var(--color-border);
}

.owners-image-text {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owners-image-text h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.owners-image-text p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: flex-start;
}

.contact-form-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-10);
}

.contact-form-heading {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-8);
}


.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-8);
}

.form-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
}

.form-step-dot span {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border-light);
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.form-step-dot.active span {
  background-color: var(--color-accent);
  border-color: var(--color-border);
  color: white;
  box-shadow: var(--shadow-card-accent);
}

.form-step-dot.completed span {
  background-color: var(--color-success);
  border-color: var(--color-border);
  color: white;
}

.form-step-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.form-step-dot.active .form-step-label {
  color: var(--color-text-primary);
}

.form-step-line {
  flex: 1;
  height: 2px;
  background-color: var(--color-border-light);
  margin: 0 var(--space-3);
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.form-step-line.completed {
  background-color: var(--color-success);
}

.form-step-panel {
  display: none;
}

.form-step-panel.active {
  display: block;
  animation: tabFadeIn 0.3s ease;
}

.form-field-group {
  margin-bottom: var(--space-6);
}

.form-field-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.form-required-mark {
  color: var(--color-accent);
}

.form-text-input,
.form-textarea-input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  min-height: 48px;
}

.form-text-input:focus,
.form-textarea-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 70, 42, 0.12);
}

.form-textarea-input {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-privacy-row {
  margin-bottom: var(--space-6);
}

.form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.form-privacy-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-privacy-label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-action-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: space-between;
}

.form-next-button {
  width: 100%;
  justify-content: center;
}


.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card {
  background-color: var(--color-primary);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-8);
}

.contact-info-heading {
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-6);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info-item-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-1);
}

.contact-info-item-value {
  font-size: var(--text-base);
  color: white;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease;
}

a.contact-info-item-value:hover {
  color: var(--color-secondary);
}

.office-directions-card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
}

.office-directions-heading {
  font-size: var(--text-base);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.office-directions-heading i {
  color: var(--color-accent);
}

.office-directions-address {
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
}

.office-directions-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.office-direction-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.direction-step-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-accent-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-map-card {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
}

.contact-map-heading {
  font-size: var(--text-lg);
  font-weight: 700;
  padding: var(--space-6) var(--space-8);
  border-bottom: 2px solid var(--color-border);
}

.contact-map-frame {
  overflow: hidden;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanks-page-body {
  background-color: var(--color-primary);
}

.thanks-page-body .main-navigation {
  background-color: transparent;
  border-bottom-color: rgba(255,255,255,0.15);
}

.thanks-page-body .main-navigation.nav-compact {
  background-color: rgba(26, 26, 46, 0.95);
}

.navigation-logo--light .logo-text,
.logo-text--light {
  color: white;
}

.navigation-links--light a {
  color: rgba(255,255,255,0.75);
}

.navigation-links--light a:hover {
  color: white;
}

.navigation-cta-button--light {
  border-color: rgba(255,255,255,0.4);
}

.mobile-menu-trigger--light span {
  background-color: white;
}

.thanks-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20) var(--space-6);
  min-height: calc(100vh - var(--nav-height) - 80px);
}

.thanks-content-wrapper {
  text-align: center;
  max-width: 560px;
}

.thanks-icon-block {
  font-size: 72px;
  color: var(--color-secondary);
  margin-bottom: var(--space-8);
  animation: thanksPulse 2s ease infinite;
}

@keyframes thanksPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thanks-heading {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-5);
}

.thanks-subtext {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.thanks-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.thanks-home-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-10);
  background-color: transparent;
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border: 2px solid white;
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0px rgba(255,255,255,0.25);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 52px;
}

.thanks-home-button:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(255,255,255,0.25);
}

.thanks-secondary-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.thanks-secondary-link:hover {
  color: white;
}

.page-footer--on-accent {
  background-color: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.page-footer--on-accent .footer-copyright,
.page-footer--on-accent .footer-legal-links a {
  color: rgba(255,255,255,0.5);
}

.page-footer--on-accent .footer-legal-links a:hover {
  color: white;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-12);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  align-items: flex-start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.legal-sidebar-inner {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.legal-mobile-toc-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid var(--color-border-light);
}

.legal-toc-navigation {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) 0;
}

.legal-toc-link {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: background-color 0.2s ease, color 0.2s ease, border-left-color 0.2s ease;
  border-left: 3px solid transparent;
  line-height: 1.4;
}

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

.legal-toc-link.active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background-color: var(--color-accent-light);
  font-weight: 600;
}

.legal-content-area {
  min-width: 0;
}

.legal-page-header {
  background-color: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--space-10);
  margin-bottom: var(--space-8);
}

.legal-page-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.legal-page-intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: var(--space-5);
}

.legal-section {
  background-color: var(--color-surface);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin-bottom: var(--space-5);
  scroll-margin-top: calc(var(--nav-height) + var(--space-6));
  transition: border-color 0.2s ease;
}

.legal-section:hover {
  border-color: var(--color-border);
}

.legal-section h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-border-light);
}

.legal-section h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-section p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-info-block {
  background-color: var(--color-background);
  border: 1px solid var(--color-border-light);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-5) var(--space-6);
  margin: var(--space-5) 0;
}

.legal-info-block p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2) !important;
}

.legal-info-block p:last-child {
  margin-bottom: 0 !important;
}


.legal-cookie-table-wrapper {
  overflow-x: auto;
  margin: var(--space-5) 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
}

.legal-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.legal-cookie-table th {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-cookie-table td {
  padding: var(--space-4) var(--space-5);
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border-light);
  line-height: 1.5;
}

.legal-cookie-table tr:hover td {
  background-color: var(--color-background);
}

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

.page-footer {
  background-color: var(--color-primary);
  border-top: 3px solid var(--color-border);
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding: var(--space-16) 0 var(--space-12);
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-image {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.footer-brand-description {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-address i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-links-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links-list a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: white;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: white;
}

.footer-contact-item i {
  color: var(--color-accent);
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COOKIE CONSENT — SPLIT BANNER
   ============================================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-primary);
  border-top: 3px solid var(--color-border);
  box-shadow: 0 -4px 0px var(--color-border);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.cookie-consent-banner.visible {
  transform: translateY(0);
}

.cookie-consent-left {
  padding: var(--space-8) var(--space-8) var(--space-8) var(--space-10);
  border-right: 2px solid rgba(255,255,255,0.1);
}

.cookie-consent-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-3);
}

.cookie-consent-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.cookie-consent-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-consent-right {
  padding: var(--space-8) var(--space-10) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-categories-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cookie-category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cookie-category-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cookie-category-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
}

.cookie-category-desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.cookie-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color 0.25s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: var(--radius-full);
  transition: transform 0.25s ease;
}

.cookie-toggle-switch input:checked + .cookie-toggle-track {
  background-color: var(--color-accent);
}

.cookie-toggle-switch input:checked + .cookie-toggle-track::after {
  transform: translateX(20px);
}

.cookie-toggle-switch input:disabled + .cookie-toggle-track {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-consent-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cookie-accept-all-btn {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-accent);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}

.cookie-accept-all-btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.cookie-save-btn {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background-color: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.cookie-save-btn:hover {
  background-color: rgba(255,255,255,0.1);
  color: white;
}

.cookie-reject-btn {
  padding: var(--space-2) var(--space-4);
  background-color: transparent;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: underline;
  align-self: center;
}

.cookie-reject-btn:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .navigation-links {
    display: none;
  }

  .navigation-cta-button {
    display: none;
  }

  .mobile-menu-trigger {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--space-12) var(--space-6);
    gap: var(--space-8);
  }

  .hero-visual-block {
    order: -1;
  }

  .hero-main-heading {
    font-size: clamp(36px, 6vw, 52px);
  }

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

  .about-approach-card {
    grid-template-columns: 1fr;
  }

  .about-approach-image-block {
    height: 300px;
  }

  .tab-panel-inner {
    grid-template-columns: 1fr;
  }

  .tab-panel-visual {
    order: -1;
  }

  .owners-teaser-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-layout {
    flex-direction: column;
  }

  .process-step-connector {
    transform: rotate(90deg);
    padding: 0;
    align-self: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .call-to-action-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-action-block {
    align-items: center;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .legal-page-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-mobile-toc-toggle {
    display: flex;
  }

  .legal-toc-navigation {
    display: none;
  }

  .legal-toc-navigation.open {
    display: flex;
  }

  .methodology-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-approach-card {
    grid-template-columns: 1fr;
  }

  .project-type-cards-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .owners-approach-card {
    grid-template-columns: 1fr;
  }

  .owners-approach-img {
    min-height: 280px;
  }

  .owners-image-card {
    grid-template-columns: 1fr;
  }

  .owners-full-image {
    min-height: 260px;
    border-right: none;
    border-bottom: 2px solid var(--color-border);
  }

  .risk-items-grid {
    grid-template-columns: 1fr;
  }

  .owners-questions-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent-banner {
    grid-template-columns: 1fr;
  }

  .cookie-consent-left {
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding: var(--space-6) var(--space-6) var(--space-5);
  }

  .cookie-consent-right {
    padding: var(--space-5) var(--space-6) var(--space-6);
  }

  .problem-statement-card {
    grid-template-columns: 1fr;
  }

  .visual-break-card {
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 640px)
   ============================================================ */

@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .section-container {
    padding: 0 var(--space-4);
  }

  .hero-section {
    padding: var(--space-8) var(--space-4);
  }

  .hero-label-tag {
    font-size: 10px;
  }

  .hero-process-breadcrumb {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: var(--space-2);
    scrollbar-width: none;
  }

  .hero-process-breadcrumb::-webkit-scrollbar {
    display: none;
  }

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

  .primary-action-button,
  .secondary-outlined-button {
    width: 100%;
    justify-content: center;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .tab-content-panels {
    padding: var(--space-6) var(--space-5);
  }

  .tab-navigation-button {
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-xs);
  }

  .problem-statement-card,
  .methodology-intro-card,
  .about-approach-text-block,
  .owners-approach-content {
    padding: var(--space-6);
  }

  .contact-form-card {
    padding: var(--space-6);
  }

  .call-to-action-card {
    padding: var(--space-8) var(--space-6);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-10) 0 var(--space-8);
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .footer-legal-links {
    gap: var(--space-4);
  }

  .legal-page-layout {
    padding: var(--space-6) var(--space-4);
  }

  .legal-page-header {
    padding: var(--space-6);
  }

  .legal-section {
    padding: var(--space-6);
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .methodology-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-approach-highlights {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-marker {
    padding-top: 0;
    justify-content: flex-start;
  }

  .visual-break-card {
    aspect-ratio: auto;
    min-height: 240px;
  }

  .visual-break-quote {
    font-size: clamp(16px, 4vw, 20px);
  }

  .hero-floating-card {
    display: none;
  }

  .form-action-row {
    flex-direction: column-reverse;
  }

  .form-action-row .secondary-outlined-button,
  .form-action-row .primary-action-button {
    width: 100%;
    justify-content: center;
  }

  .tab-panel-inner {
    gap: var(--space-6);
  }

  .inner-page-hero-section,
  .owners-hero-section {
    padding: var(--space-10) 0;
  }

  .inner-hero-container {
    padding: 0 var(--space-4);
  }

  .timeline-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .thanks-heading {
    font-size: clamp(28px, 8vw, 40px);
  }

  .thanks-icon-block {
    font-size: 56px;
  }

  .thanks-action-group {
    width: 100%;
  }

  .thanks-home-button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  .main-navigation,
  .mobile-menu-sheet,
  .mobile-menu-overlay,
  .cookie-consent-banner,
  .page-footer {
    display: none !important;
  }

  .page-main {
    padding-top: 0;
  }

  body {
    background-color: white;
    color: black;
  }
}