/* ==========================================================================
   Informationworker AB - Stylesheet
   Dark Tech Background with Crisp Light Cards & Bright Hero
   ========================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Dark Page Background */
  --color-page-bg: #090d16;
  --color-page-bg-alt: #0e1526;
  
  /* Crisp Light Card Surfaces */
  --color-card-bg: #ffffff;
  --color-card-bg-alt: #f8fafc;
  --color-card-border: #e2e8f0;
  --color-card-border-hover: #93c5fd;
  
  /* Typography Colors */
  --color-text-on-dark: #f8fafc;
  --color-text-on-dark-muted: #94a3b8;
  --color-text-on-card: #0f172a;
  --color-text-on-card-muted: #475569;
  
  /* Brand & Accent Colors */
  --color-brand-blue: #2563eb;
  --color-brand-blue-hover: #1d4ed8;
  --color-brand-cyan: #38bdf8;
  --color-brand-emerald: #10b981;
  --color-brand-emerald-dark: #059669;

  /* Shadows */
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 20px 35px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 99, 235, 0.25);
  --shadow-card-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-page-bg);
  color: var(--color-text-on-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Typography & Shared UI Components
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-cyan);
  background-color: rgba(56, 189, 248, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(56, 189, 248, 0.28);
}

.section-tag-light {
  color: #60a5fa;
  background-color: rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.35);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-weight: 800;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.6;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 11px 22px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.55);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 12px 26px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  background: rgba(14, 21, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
  padding: 5px;
}

.brand-logo:hover .logo-mark {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.25);
  transform: translateY(-1px);
}

.logo-symbol {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-icon {
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #38bdf8;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #38bdf8;
  border-radius: 2px;
}

.nav-cta-mobile {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-desktop-cta {
  font-size: 0.88rem;
  padding: 8px 18px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Section - Bright & Wide NOD-huset with Sleek Compact Frosted Card
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  color: #ffffff;
  overflow: hidden;
  background-color: #090d16;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  /* Ljus, solbelyst och skarp bild av NOD-huset */
  filter: brightness(1.22) contrast(1.05) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Mycket mjuk och subtil övergång på vänsterkanten */
  background: linear-gradient(
    90deg, 
    rgba(9, 13, 22, 0.72) 0%, 
    rgba(9, 13, 22, 0.35) 45%, 
    rgba(9, 13, 22, 0.05) 75%, 
    rgba(9, 13, 22, 0) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 660px;
  background: rgba(10, 15, 29, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.65);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 13px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(96, 165, 250, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 14px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
}

.hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.02rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-stats-grid {
  display: flex;
  align-items: center;
  background: rgba(9, 13, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.32rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.14);
  margin: 0 16px;
}

/* ==========================================================================
   Problem & Solution Section - Crisp Light Cards
   ========================================================================== */

.problem-solution-section {
  padding: 90px 0;
  background-color: var(--color-page-bg);
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--color-card-bg);
  color: var(--color-text-on-card);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.challenge-card {
  position: relative;
}

.card-status-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-warning {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.badge-success {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.challenge-card h3 {
  font-size: 1.38rem;
  margin-bottom: 20px;
  color: var(--color-text-on-card);
  font-weight: 700;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-indicator {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-indicator.red {
  background-color: #fee2e2;
  color: #dc2626;
}

.icon-indicator.green {
  background-color: #dcfce7;
  color: #16a34a;
}

.check-list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--color-text-on-card);
  margin-bottom: 2px;
}

.check-list p {
  font-size: 0.9rem;
  color: var(--color-text-on-card-muted);
  line-height: 1.45;
}

.problem-box {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  border-color: #fecaca;
}

.solution-box {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border-color: #a7f3d0;
  box-shadow: 0 10px 28px -5px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Services Section - Crisp Light Cards
   ========================================================================== */

.services-section {
  padding: 95px 0;
  background-color: var(--color-page-bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #3b82f6;
}

.featured-service {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 12px 30px -8px rgba(37, 99, 235, 0.25);
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  background-color: #eff6ff;
  color: var(--color-brand-blue);
  border-radius: var(--radius-md);
  border: 1px solid #dbeafe;
}

.service-highlight-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #2563eb;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--color-text-on-card);
  font-weight: 700;
}

.service-summary {
  font-size: 0.92rem;
  color: var(--color-text-on-card-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-on-card);
  line-height: 1.45;
}

.service-features svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-brand-blue);
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover {
  color: var(--color-brand-blue-hover);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Calculator Section - Crisp Light Interactive Card
   ========================================================================== */

.calculator-section {
  padding: 95px 0;
  background-color: var(--color-page-bg);
}

.calculator-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 44px;
  color: #0f172a;
  box-shadow: var(--shadow-card);
  border: 1px solid #e2e8f0;
}

.calc-header .section-tag {
  background-color: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.calc-header .section-title {
  color: #0f172a !important;
}

.calc-desc {
  color: #475569;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 10px auto 0;
}

.calc-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  margin-top: 44px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.slider-group {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.slider-header label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.slider-val {
  font-size: 1.12rem;
  font-weight: 800;
  color: #2563eb;
}

.custom-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
  transition: transform var(--transition-fast);
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.custom-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.slider-hint {
  display: block;
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 6px;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.result-box {
  border-radius: var(--radius-md);
  padding: 22px;
}

.result-box.primary-result {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.result-box.secondary-result {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.result-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.result-number {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1e3a8a;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.result-number small {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
}

.result-number.highlight-green {
  color: #047857;
}

.result-sub {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.45;
}

.calc-cta-wrap {
  margin-top: 6px;
}

/* ==========================================================================
   About Section - Crisp Light Profile Card & Experience Cards
   ========================================================================== */

.about-section {
  padding: 95px 0;
  background-color: var(--color-page-bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  padding: 16px;
  box-shadow: var(--shadow-card);
  max-width: 260px;
  margin: 0 auto;
}

.profile-img-container {
  position: relative;
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f1f5f9;
}

.profile-img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.profile-badge {
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.profile-badge .badge-icon {
  width: 13px;
  height: 13px;
  color: var(--color-brand-cyan);
  flex-shrink: 0;
}

.profile-details-mini {
  padding: 16px 6px 4px;
}

.profile-details-mini h4 {
  font-size: 1.22rem;
  margin-bottom: 2px;
  color: #0f172a;
  font-weight: 700;
}

.profile-role {
  font-size: 0.88rem;
  color: var(--color-brand-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.mini-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  background-color: #f8fafc;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-fast);
}

.mini-contact-link svg {
  width: 15px;
  height: 15px;
  color: var(--color-brand-blue);
}

.mini-contact-link:hover {
  background-color: #eff6ff;
  border-color: #93c5fd;
}

.about-text-col .lead-text {
  font-size: 1.12rem;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-text-col p {
  color: var(--color-text-on-dark-muted);
  margin-bottom: 26px;
}

.experience-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.exp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.exp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius-sm);
  color: var(--color-brand-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-brand-blue);
}

.exp-info strong {
  display: block;
  font-size: 0.96rem;
  color: #0f172a;
  margin-bottom: 2px;
  font-weight: 700;
}

.exp-info span {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.45;
}

.location-box {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.loc-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  color: var(--color-brand-blue);
  flex-shrink: 0;
}

.loc-pin svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-brand-blue);
}

.loc-text strong {
  display: block;
  color: #0f172a;
  font-size: 0.94rem;
  font-weight: 700;
}

.loc-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #475569;
}

/* ==========================================================================
   Process Section - Crisp Light Step Cards
   ========================================================================== */

.process-section {
  padding: 85px 0;
  background-color: var(--color-page-bg);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}

.step-card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 700;
}

.step-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}

.step-connector {
  width: 36px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ==========================================================================
   Contact Section - Light Crisp Card Wrapper
   ========================================================================== */

.contact-section {
  padding: 95px 0;
  background: linear-gradient(180deg, var(--color-page-bg-alt) 0%, var(--color-page-bg) 100%);
}

.contact-card-wrapper {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

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

.contact-info-panel {
  background: linear-gradient(135deg, #0d1424 0%, #111a2e 100%);
  color: #ffffff;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
}

.contact-heading {
  font-size: 2rem;
  color: #ffffff;
  margin: 10px 0 14px;
  line-height: 1.2;
}

.contact-intro {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 32px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  transition: transform var(--transition-fast);
}

a.contact-detail-item:hover {
  transform: translateX(4px);
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38bdf8;
}

.detail-icon svg {
  width: 20px;
  height: 20px;
}

.detail-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 600;
}

.detail-value {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}

.office-nod-preview {
  margin-top: auto;
}

.nod-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: var(--radius-md);
}

.nod-mini-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nod-mini-text strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
}

.nod-mini-text span {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.3;
  display: block;
}

.contact-form-panel {
  padding: 50px 44px;
  background-color: #ffffff;
  color: #0f172a;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: #0f172a;
  font-weight: 700;
}

.form-subtitle {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background-color: #f8fafc;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-feedback {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-feedback.success {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: #060911;
  color: #94a3b8;
  padding: 65px 0 0;
  border-top: 1px solid #141d33;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 46px;
}

.logo-mark-footer {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 360px;
}

.footer-desc strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.footer-heading {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links li a, .footer-links li span {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-links li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    max-width: 280px;
    margin: 0 auto 24px;
  }

  .calc-body-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 66px;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-desktop-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: flex-start;
  }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
  }

  .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 18px;
  }

  .nav-cta-mobile .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

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

  .hero-stats-grid {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
  }

  .stat-divider {
    display: none;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 18px;
  }

  .step-connector {
    width: 2px;
    height: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-panel, .contact-form-panel {
    padding: 32px 20px;
  }

  .calculator-card {
    padding: 32px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
