/* Design Tokens based on design_0.json - Optimized V2 */
:root {
  /* Colors */
  --color-primary-blue: #2746EE;
  --color-primary-light: #4D69FF;
  --color-primary-dark: #1F37C0;
  --color-accent-green: #5AB36C;
  --color-accent-green-light: #7ED48E;
  --color-accent-hover: #469857;
  --color-danger-red: #E21F4E;
  --color-bg-soft: #F4F7FA;
  --color-bg-card: #FFFFFF;
  --color-bg-section: #FFFFFF;
  --color-border-soft: #EFEFEF;
  --color-border-input: #E5E7EB;
  --color-text-main: #0F172A;
  --color-text-soft: #334155;
  --color-text-muted: #64748B;
  --color-badge-pos-bg: #E6F7EC;
  --color-badge-pos-text: #2E7D4F;
  --color-gradient-primary: linear-gradient(135deg, #2746EE 0%, #4D69FF 100%);
  --color-gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);

  /* Typography */
  --font-family-base: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-family-serif: 'Merriweather', 'Georgia', 'Times New Roman', serif; /* Added for Magazine */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --fs-hero: 52px; 
  --fs-h1: 42px;
  --fs-h2: 36px;
  --fs-h3: 24px;
  --fs-h4: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-label: 13px;

  /* Spacing */
  --spacing-container-x: 64px;
  --spacing-section: 120px; /* More breathing room */
  --spacing-gutter: 40px;

  /* Radii */
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  --shadow-float: 0 20px 40px -5px rgba(15, 23, 42, 0.08);
  --shadow-btn-primary: 0 10px 25px -5px rgba(39, 70, 238, 0.4);
  --shadow-btn-hover: 0 15px 35px -5px rgba(39, 70, 238, 0.5);
}

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

body {
  font-family: var(--font-family-base);
  background-color: var(--color-bg-section);
  color: var(--color-text-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 90px; /* Compensation for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); font-weight: var(--fw-bold); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-bold); line-height: 1.3; }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); }

p { margin-bottom: 1.5rem; }

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

/* Layout Utilities */
.container {
  max-width: 1400px; /* Increased width */
  margin: 0 auto;
  padding: 0 var(--spacing-container-x);
}

.grid {
  display: grid;
  gap: var(--spacing-gutter);
}

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

.section {
  padding: var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
}

.section-bg-soft {
  background-color: #F8FAFC; /* Clean solid gray-blue */
}

/* Remove gradient from bg-grid */
.bg-grid {
    background: #F8FAFC; /* Solid color, no gradient */
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.text-center { text-align: center; }
.text-primary { color: var(--color-primary-blue); }
.font-medium { font-weight: var(--fw-medium); }
.font-bold { font-weight: var(--fw-bold); }

/* Navigation */
.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-soft);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  color: var(--color-text-main);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  margin-left: 2px;
  position: relative;
  bottom: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  margin: 6px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

/* Mobile Menu State */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Components */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-gradient-primary);
  color: white;
  box-shadow: var(--shadow-btn-primary);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background-color: var(--color-accent-green);
  color: white;
  box-shadow: 0 4px 15px rgba(90, 179, 108, 0.3);
}

.btn-secondary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 179, 108, 0.4);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border-soft);
  padding: 14px 28px;
}

.btn-ghost:hover {
  border-color: var(--color-primary-blue);
  color: var(--color-primary-blue);
  background-color: rgba(39, 70, 238, 0.05);
}

.btn-full {
  width: 100%;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-large);
  padding: 40px; /* More padding */
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

/* Icon Box for Features */
.icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #F0F4FF 0%, #E6EFFF 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-primary-blue);
  transition: all 0.3s;
}

.card:hover .icon-box {
  background: var(--color-primary-blue);
  color: white;
  transform: scale(1.05);
}

/* Feature Grid specific */
.feature-grid-item {
    border-radius: var(--radius-large);
    background: white;
    padding: 32px;
    border: 1px solid var(--color-border-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Process Steps */
.process-track {
    position: relative;
    padding-left: 0;
}

.process-track::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary-blue) 0%, var(--color-accent-green) 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    background: white;
    padding: 24px 32px 24px 80px; /* Left padding for icon space */
    border-radius: var(--radius-medium);
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border-soft);
    transition: transform 0.2s;
    z-index: 1;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-marker {
    position: absolute;
    left: 0; /* Align with card edge roughly, refined below */
    top: 50%;
    transform: translateY(-50%);
    margin-left: -25px; /* Pull out of card */
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid white; /* Inner border */
    box-shadow: 0 0 0 2px var(--color-primary-blue), 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    z-index: 2;
}

/* Adjust marker position relative to container, not card */
.process-step {
    /* Reset padding to align nicely */
    margin-left: 50px; /* Space for the line/marker area */
    padding-left: 32px; /* Normal padding inside card */
}

.process-marker {
    left: -50px; /* Position relative to the pushed card */
    margin-left: 0;
}

.process-step:nth-child(2) .process-marker {
    color: #3B82F6; /* Middle blue */
    box-shadow: 0 0 0 2px #3B82F6, 0 4px 6px rgba(0,0,0,0.05);
}

.process-step:nth-child(3) .process-marker {
    color: var(--color-accent-green);
    box-shadow: 0 0 0 2px var(--color-accent-green), 0 4px 6px rgba(0,0,0,0.05);
}

/* Form - Optimized with Floating Labels */
.form-card-floating {
    background: #FFFFFF;
    backdrop-filter: none;
    border-radius: var(--radius-large);
    padding: 32px; /* Slightly tighter padding */
    box-shadow: 0 25px 50px -12px rgba(39, 70, 238, 0.25), 0 0 0 1px rgba(0,0,0,0.03);
    border: none;
    border-top: 4px solid var(--color-primary-blue);
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
    text-align: left; /* Reset text align for inputs */
}

/* Hide default labels as we use floating ones */
.form-label {
    display: none;
}

.form-input, .form-select {
    height: 56px;
    padding: 24px 16px 8px; /* Top padding for label space */
    font-size: 16px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid var(--color-border-input);
    width: 100%;
    transition: all 0.2s;
    appearance: none; /* Clean select */
    color: var(--color-text-main);
    font-family: inherit;
}

.form-textarea {
    padding: 24px 16px 8px;
    min-height: 120px;
    resize: vertical;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid var(--color-border-input);
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    color: var(--color-text-main);
}

.floating-label {
    position: absolute;
    left: 16px;
    top: 18px;
    color: var(--color-text-muted);
    font-size: 15px;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
    z-index: 10;
}

/* Active State for Label */
.form-input:focus ~ .floating-label,
.form-input:not(:placeholder-shown) ~ .floating-label,
.form-select:focus ~ .floating-label,
.form-select:valid ~ .floating-label,
.form-textarea:focus ~ .floating-label,
.form-textarea:not(:placeholder-shown) ~ .floating-label {
    top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary-blue);
    transform: translateY(0);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    background: white;
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 4px rgba(39, 70, 238, 0.1);
    outline: none;
}

/* Select Arrow Customization */
.select-wrapper {
    position: relative;
}
.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

/* File Upload - Integrated Look */
.file-upload-wrapper {
    position: relative;
    display: block;
    cursor: pointer;
    height: 56px;
}
.file-upload-content {
    background: #F8FAFC;
    border: 1px dashed var(--color-border-input);
    border-radius: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--color-text-muted);
    font-size: 15px;
    transition: all 0.2s;
}
.file-upload-wrapper:hover .file-upload-content {
    background: white;
    border-color: var(--color-primary-blue);
    color: var(--color-primary-blue);
}

/* Specific Sections */
.hero {
  padding-top: 80px;
  padding-bottom: 140px;
  /* Reduced opacity of white overlay to let more image depth through (less "pale") */
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.1) 100%), url('res/hero_bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-attachment: scroll;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; /* increased gap */
  align-items: center;
}

.hero-title {
  font-size: var(--fs-hero);
  line-height: 1.15;
  margin-bottom: 24px;
  /* Add subtle shadow to lift text from background */
  text-shadow: 0 2px 10px rgba(255,255,255,0.5); 
}

/* Clean Marker Highlight (Sans-Serif) */
.highlight-marker {
    color: var(--color-primary-blue);
    display: inline-block;
    position: relative;
    font-weight: 800; /* Extra bold for emphasis */
}

.highlight-marker::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 12px; /* Thicker marker line */
    background: rgba(39, 70, 238, 0.15);
    border-radius: 2px;
    z-index: -1;
    transform: skew(-10deg); /* Slight angle for marker look */
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    display: block;
    cursor: pointer;
}

.file-input-hidden {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background-color: #FAFAFA;
    border: 1px dashed var(--color-border-input);
    border-radius: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    transition: all 0.2s ease;
}

.file-upload-wrapper:hover .file-upload-content {
    background-color: white;
    border-color: var(--color-primary-blue);
    color: var(--color-primary-blue);
}

.file-input-hidden:focus + .file-upload-content {
    box-shadow: 0 0 0 4px rgba(39, 70, 238, 0.1);
    border-color: var(--color-primary-blue);
}

.hero-subtitle {
  font-size: 20px;
  color: #1E293B; /* Darker Slate 800 for better contrast */
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 500; /* Slightly bolder */
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500; /* Leichter */
  color: var(--color-text-main);
  font-family: 'Inter', sans-serif; /* Clean, modern font for technical data */
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95); /* More opaque */
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Slightly stronger shadow */
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: white;
}

/* Legal Document Visual (Removed old styles, added new clean card) */
.legal-quote-card {
    background: #FAFAFA;
    padding: 60px;
    border-radius: 4px; /* Slightly squared for professional look */
    border-left: 4px solid var(--color-primary-blue);
    position: relative;
}

.legal-quote-card::before {
    content: '”';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 120px;
    line-height: 1;
    color: rgba(39, 70, 238, 0.1);
    font-family: serif;
    pointer-events: none;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    font-family: monospace; /* Technical look for Aktenzeichen */
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quote-text {
    font-family: serif; /* Elegant serif for the quote itself */
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-text-main);
    font-weight: 500;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Minimal Features */
.feature-minimal {
    text-align: left;
}

.feature-minimal h4 {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 16px;
}

.feature-minimal p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: #F1F5F9;
    color: var(--color-text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.feature-minimal:hover .icon-circle {
    background: var(--color-primary-blue);
    color: white;
}

/* Model Comparison Section (Ghost vs Hero) */
.model-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Clean Model Comparison (Premium) */
.model-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Standard Card (Left) */
.model-card.standard {
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Premium Card (Right) */
.model-card.premium {
    border: 1px solid transparent; /* Replaced by glow or top border */
    box-shadow: 0 25px 50px -12px rgba(39, 70, 238, 0.15); /* Rich Brand Shadow */
    z-index: 10;
    border-top: 4px solid var(--color-primary-blue);
    overflow: hidden; /* Ensure content stays within rounded corners */
}

/* Blue Accent Top for Premium - REMOVED */
/* .model-card.premium::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--color-primary-blue);
    border-radius: 16px 16px 0 0;
} */

.model-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-main);
}

.model-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.risk-status {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.risk-status.negative {
    color: #334155; /* Slate 700 - Dark Grey */
}

.risk-status.positive {
    color: var(--color-primary-blue);
}

.divider-small {
    height: 1px;
    background: #F1F5F9;
    margin-bottom: 24px;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
    border-bottom: 1px dashed #F1F5F9;
    padding-bottom: 8px;
}

.model-features li:last-child {
    border-bottom: none;
}

.feature-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.feature-value {
    font-weight: 700;
    color: var(--color-text-main);
    text-align: right;
}

.text-danger {
    color: #94A3B8; /* Muted warning */
}

.text-success {
    color: #059669; /* Emerald 600 */
}

.badge-recommend {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    background: var(--color-primary-blue);
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 6px rgba(39, 70, 238, 0.2);
}

/* Lawyer Trust Card */
.lawyer-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 400px; /* Fixed nice height */
    position: relative;
}

.lawyer-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.lawyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Focus on faces */
}

.lawyer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    padding: 60px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.trust-badge-lawyer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--color-text-main);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Statement Section (Authority) */
.statement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.statement-headline {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    margin: 0;
}

.text-serif-italic {
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    color: var(--color-primary-blue);
    font-weight: 400; /* Lighter weight for contrast */
}

.statement-text {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 24px;
}

.statement-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-soft);
    margin-bottom: 40px;
}

.statement-source {
    display: flex;
    align-items: center;
    gap: 16px;
}

.source-line {
    width: 40px;
    height: 2px;
    background: var(--color-primary-blue);
}

.source-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .statement-headline {
        font-size: 48px;
    }
}

/* Money Section: High-End Editorial (Light Mode) */
.section-money-light {
    background: #F8FAFC; /* Same as section above */
    color: var(--color-text-main);
    padding: 100px 0;
}

/* Ensure Headline block is full width */
.money-header-block {
    width: 100%;
    margin-bottom: 60px;
    max-width: 800px;
}

.money-grid-editorial {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* More space for images */
    gap: 80px;
    align-items: start; /* Align top edges */
}

/* Left: Light Banking Calculator */
.calc-card-light {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); /* Soft, serious shadow */
}

.calculator-editorial h2 {
    margin-top: 0; /* Remove top margin from headline to align perfectly */
}

.calc-row-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.calc-row-light.result-row {
    align-items: flex-end;
}

.calc-label-light {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.price-display-light {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
}

.result-display-light {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary-blue);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.calc-divider-light {
    height: 1px;
    background: var(--color-border-soft);
    margin: 32px 0;
}

/* Light Slider */
.slider-wrapper-light {
    position: relative;
    height: 6px;
    margin: 24px 0 16px;
    background: #E2E8F0;
    border-radius: 3px;
}

.styled-slider-light {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    position: absolute;
    top: 0; left: 0;
    margin: 0;
    cursor: pointer;
}

.styled-slider-light::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: white;
    border: 6px solid var(--color-primary-blue); /* Solid blue ring */
    margin-top: -9px;
    box-shadow: 0 4px 10px rgba(39, 70, 238, 0.3);
    cursor: pointer;
    transition: transform 0.1s;
}

.styled-slider-light::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-labels-light {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Right: Wide Stack Gallery */
.success-gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 0; /* REMOVED padding, aligns naturally now */
}

.gallery-card-wide {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    height: 140px; /* Increased height */
    padding-right: 32px;
    transition: transform 0.2s ease;
}

.wide-img-wrapper {
    width: 140px; /* Matching increased height */
    height: 140px;
    flex-shrink: 0;
}

.wide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.wide-content-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 24px;
}

.wide-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wide-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 8px; /* Slightly more space */
}

.wide-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

.gallery-card-wide:hover {
    transform: translateY(-5px); /* Upwards lift instead of side */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.wide-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary-blue);
    background: rgba(39, 70, 238, 0.08);
    padding: 8px 16px;
    border-radius: 10px;
    white-space: nowrap;
}

/* Right: Success Wall (Floating Tiles) */
.success-wall {
    position: relative;
    height: 500px; /* Define area for absolute positioning */
}

.success-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 280px;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.success-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    flex-shrink: 0;
}

.success-content {
    flex-grow: 1;
}

.success-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.success-amount {
    font-size: 20px;
    font-weight: 700;
    color: #4ADE80; /* Bright Green */
}

.success-badge {
    display: inline-block;
    font-size: 10px;
    background: rgba(74, 222, 128, 0.2);
    color: #4ADE80;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Positioning the Cards */
.card-1 {
    top: 20px;
    left: 0;
    z-index: 1;
}

.card-2 {
    top: 160px;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15); /* Highlight one card slightly */
}

.card-3 {
    bottom: 40px;
    left: 40px;
    z-index: 3;
}

@media (max-width: 900px) {
    .money-grid-split {
        grid-template-columns: 1fr;
    }
    .success-wall {
        height: 400px;
    }
    .success-card {
        position: relative;
        margin-bottom: 20px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
    }
}

/* Pricing/Models */
.model-card {
    background: white;
    border-radius: var(--radius-large);
    padding: 48px;
    border: 1px solid var(--color-border-soft);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.model-card.highlight {
    border: 2px solid var(--color-primary-blue);
    box-shadow: 0 20px 40px -10px rgba(39, 70, 238, 0.15);
}

.badge-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(39, 70, 238, 0.4);
}

/* Press Section - Clean Split Layout */
.section-press {
    background-color: #F8FAFC;
    border-top: 1px solid var(--color-border-soft);
}

.press-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px;
}

.press-card {
    background: white;
    /* Remove padding to allow split layout to fill card */
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: rgba(39, 70, 238, 0.1);
}

/* Remove decorative elements to reduce noise */
.press-card::before {
    display: none;
}

/* Left Side: Logo Compartment */
.press-logo-wrapper {
    width: 220px;
    flex-shrink: 0;
    background-color: #FAFAFA;
    border-right: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* No padding as requested */
}

.press-logo {
    width: 90%; /* Maximize size */
    height: auto;
    max-height: 140px; 
    object-fit: contain;
    filter: none;
    transform: none;
}

/* Right Side: Content */
.press-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 32px 32px 0; /* Align text with logo compartment */
    padding-left: 32px;
}

.press-quote {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.5;
    color: #334155;
    font-style: italic;
    margin-bottom: 12px;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s;
    /* Clean text link, no background/buttons */
}

.press-link:hover {
    gap: 10px;
}

/* Magazine / Article Styles - Aligned with Main Design */
.bg-paper {
    background-color: #FFFFFF; /* Clean white */
    padding-top: 90px; /* Compensate for fixed header */
}

/* Article Header */
.article-header {
    text-align: center;
    padding: 100px 0 0; /* Removed bottom padding for symmetry */
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%); 
    border-bottom: 1px solid var(--color-border-soft);
}

.article-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-primary-blue);
}

.badge-category {
    background: #EEF2FF;
    color: var(--color-primary-blue);
    padding: 6px 16px;
    border-radius: 99px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 24px;
}

.article-title {
    font-family: var(--font-family-base); /* Poppins for headings */
    font-size: 42px; /* Slightly smaller than hero, but big */
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.article-lead {
    font-family: var(--font-family-base); /* Changed to Poppins for modern UI feel */
    font-size: 22px;
    line-height: 1.6;
    color: var(--color-text-soft);
    font-weight: 500;
    margin-bottom: 40px;
}

.article-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.meta-details {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    color: var(--color-primary-blue);
    opacity: 0.8;
}

/* Content Body */
.article-container-wide {
    max-width: 800px; /* Matching index.html text blocks (e.g. .text-center max-width: 800px) */
    margin: 0 auto;
    padding: 40px var(--spacing-container-x) 0; /* Reduced top padding for symmetry */
}

.article-content {
    font-family: var(--font-family-serif);
    font-size: 18px;
    line-height: 1.8;
    color: #1E293B; /* Dark slate */
    text-align: justify; /* Blocksatz */
    hyphens: auto;
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    margin: 0 0 60px 0;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-float); /* Consistent with index cards */
    aspect-ratio: 16/9;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

/* Drop Cap for Editorial Feel */
.first-paragraph::first-letter {
    float: left;
    font-family: var(--font-family-base); /* Poppins for drop cap */
    font-size: 84px;
    line-height: 0.8;
    font-weight: 800;
    color: var(--color-primary-blue);
    padding-right: 20px;
    padding-top: 4px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-family: var(--font-family-base);
    font-size: 28px;
    margin-top: 56px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.article-content strong {
    font-weight: 700;
    color: #000000;
}

/* Quote - Aligned with Index Legal Card */
.pull-quote {
    position: relative;
    padding: 48px 48px 48px 80px; /* Space for the quote mark */
    margin: 60px 0;
    background: #F8FAFC; /* Soft BG like main page sections */
    border-radius: var(--radius-large);
    
    font-family: var(--font-family-serif);
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text-main);
    
    /* Remove old borders */
    border: none;
    box-shadow: var(--shadow-soft);
}

.pull-quote::before {
    content: '”';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 100px;
    line-height: 0.8;
    color: rgba(39, 70, 238, 0.15); /* Brand Watermark */
    font-family: serif;
    pointer-events: none;
}

/* Boxes - Editorial Style (Unified "Clean Card" Design) */

/* Base Card Style Mixin */
.highlight-box, .info-card, .check-col, .alert-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    /* No colored top borders by default */
    border-top: 1px solid rgba(0,0,0,0.03); 
}

/* 1. Highlight Box */
.highlight-box {
    margin: 48px 0;
    display: flex;
    gap: 24px;
}

/* Watermark: Info */
.highlight-box::after {
    content: 'i';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 140px;
    font-family: serif;
    font-weight: 700;
    color: rgba(39, 70, 238, 0.05); /* Blue tint */
    pointer-events: none;
    line-height: 1;
}

.box-icon { display: none; }

.box-content {
    font-size: 18px;
    font-family: var(--font-family-base);
    color: var(--color-text-main);
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.box-content strong {
    color: var(--color-primary-blue);
    display: block;
    margin-bottom: 8px;
}

/* 2. Info Card (The Case) */
.info-card {
    margin: 48px 0;
}

/* Watermark: Section Sign */
.info-card::after {
    content: '§';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-family: serif;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
    line-height: 1;
}

.card-headline {
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.card-highlight {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--color-border-soft);
    font-size: 16px;
    margin-top: 32px;
    font-style: normal;
    color: var(--color-text-main);
    font-family: var(--font-family-base);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* 3. Checklist Box */
.checklist-box { margin: 80px 0; }

.checklist-box h4 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 28px;
    font-family: var(--font-family-base);
    font-weight: 700;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
}

.checklist-grid::after { display: none; }

.check-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

/* Watermarks for Checklist */
.check-col.valid::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    color: rgba(22, 163, 74, 0.05); /* Green tint */
    font-family: sans-serif;
    pointer-events: none;
    line-height: 1;
    font-weight: 800;
}

.check-col.invalid::after {
    content: '×';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    color: rgba(239, 68, 68, 0.05); /* Red tint */
    font-family: sans-serif;
    pointer-events: none;
    line-height: 1;
    font-weight: 800;
}

.status-header {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family-base);
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    z-index: 1;
}

.status-icon { display: none; }

.check-col.valid .status-header { color: #16A34A; }
.check-col.invalid .status-header { color: #DC2626; }

/* SVG Icons for Headers */
.check-col.valid .status-header::before {
    content: '';
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.check-col.invalid .status-header::before {
    content: '';
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.check-col ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.check-col li {
    background: transparent;
    padding: 0;
    padding-left: 28px;
    border-radius: 0;
    text-align: left;
    font-family: var(--font-family-base);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text-main);
    border: none;
    box-shadow: none;
    position: relative;
}

/* Bullet Icons */
.check-col.valid li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.check-col.invalid li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.check-col.valid li, .check-col.invalid li { border: none; }
.check-col.valid li::after, .check-col.invalid li::after { display: none; }


/* 4. Alert Box (Clean Warning Card) */
.alert-box {
    margin: 60px 0;
    /* other styles in base mixin */
}

.alert-box.warning .alert-icon { display: none; }

/* Add background icon */
.alert-box::after {
    content: '!';
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 140px;
    font-family: var(--font-family-base);
    font-weight: 800;
    color: rgba(226, 31, 78, 0.02); /* Extremely subtle */
    pointer-events: none;
    line-height: 1;
}

.alert-content h4 {
    font-size: 20px;
    font-family: var(--font-family-base);
    font-weight: 700;
    color: #E21F4E;
    margin-bottom: 12px;
}

.alert-content p {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--color-text-main);
    font-family: var(--font-family-base); /* Clean UI font */
    line-height: 1.6;
}

/* 5. Editorial Lists (Clean Bullets) */
.editorial-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px 0; /* Reset margins */
    border: none;
}

.editorial-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-family: var(--font-family-base);
    font-size: 17px;
    font-weight: 500; /* Slightly bolder for clarity */
    color: var(--color-text-main); /* Darker text */
    line-height: 1.6;
}

.editorial-list li::before {
    content: '';
    position: absolute;
    left: 4px; /* Slight indent */
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary-blue);
}

/* 6. Process List (Numbered) */
.editorial-list-numbered {
    counter-reset: editorial-counter;
    list-style: none;
    padding: 0;
    margin: 48px 0;
    position: relative;
}

.editorial-list-numbered::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #E2E8F0;
    z-index: 0;
}

.editorial-list-numbered li {
    counter-increment: editorial-counter;
    position: relative;
    padding-left: 64px;
    margin-bottom: 32px;
    font-family: var(--font-family-base);
    font-size: 18px;
    color: var(--color-text-main);
}

.editorial-list-numbered li::before {
    content: counter(editorial-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--color-primary-blue);
    color: var(--color-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    z-index: 1;
}

/* Article Sources (Footer) */
.article-sources {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border-soft);
    font-family: var(--font-family-base);
}

.article-sources h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 32px;
}

.sources-list li {
    margin-bottom: 0;
}

.sources-list li a {
    color: #94A3B8; /* Muted slate */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.sources-list li a::before {
    content: '↗';
    font-size: 11px;
    opacity: 0.5;
}

.sources-list li a:hover {
    color: var(--color-primary-blue);
    text-decoration: underline;
}

/* Bottom CTA - Blue Pill */
.cta-blue-pill {
    background: var(--color-gradient-primary);
    padding: 48px 64px;
    border-radius: 32px; /* Large radius for pill look */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px -10px rgba(39, 70, 238, 0.4); /* Strong blue glow */
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.cta-blue-pill::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
}

.cta-pill-content {
    max-width: 600px;
}

.cta-pill-content h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-pill-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
}

.btn-white {
    background: white;
    color: var(--color-primary-blue);
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: var(--color-primary-blue);
}

@media (max-width: 900px) {
    .cta-blue-pill {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
}
@media (max-width: 900px) {
    .press-grid {
        grid-template-columns: 1fr !important;
    }
    .press-card {
        flex-direction: column;
    }
    .press-logo-wrapper {
        width: 100%;
        height: 140px; /* Height for mobile banner style */
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        padding: 24px;
    }
    .press-logo {
        max-height: 60px; /* Slightly smaller on mobile to fit height */
        max-width: 200px;
    }
    .press-content {
        padding: 24px; /* Uniform padding on mobile */
    }
}

@media (max-width: 1200px) {
    .container { max-width: 100%; padding: 0 40px; }
    .hero-title { font-size: 44px; }
}

@media (max-width: 1024px) {
  :root {
    --spacing-container-x: 32px;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-card-floating { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root {
    --spacing-container-x: 24px;
    --spacing-section: 80px;
    --fs-hero: 36px;
    --fs-h1: 32px;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  
  .hero-grid { display: flex; flex-direction: column; }
  .hero-content { text-align: center; }
  .trust-badges { justify-content: center; }
  .money-highlight { font-size: 48px; }
  
  .process-step { padding-left: 0; border-left: none; text-align: center; margin-left: 0; padding: 24px; }
  .process-marker { position: static; margin: 0 auto 16px auto; transform: none; left: auto; }
  .process-track::before { display: none; } /* Hide vertical line on mobile */
  
  .money-grid-editorial { grid-template-columns: 1fr; gap: 40px; }
  
  .gallery-card-wide { height: auto; flex-direction: column; align-items: flex-start; padding: 0; }
  .wide-img-wrapper { width: 100%; height: 200px; }
  .wide-img { object-position: center; }
  .wide-content-wrapper { padding: 20px; width: 100%; flex-direction: row; align-items: center; }
  
  .lawyer-card { height: 300px; }
  
  /* Navigation Mobile */
  nav { height: 70px !important; }
  nav .container { padding: 0 20px; }
  nav .btn-small { padding: 8px 16px; font-size: 13px; }
  
  /* Statement Mobile */
  .statement-headline { font-size: 36px; }
  .statement-text { font-size: 18px; }
  
  /* Form Mobile */
  .hero-network-info { display: none !important; }
  .form-card-floating { 
      padding: 20px 16px; 
      margin: 0 -12px; /* Pull form out to counteract container padding */
      width: calc(100% + 24px); 
      border-radius: 16px; /* Slightly less rounded for wide look */
  }
  .form-input, .form-select { font-size: 16px; } /* Prevent zoom on iOS */
  
  /* Magazine Mobile */
  .article-title { font-size: 28px; }
  .checklist-grid { grid-template-columns: 1fr; }
  
  /* Mobile Box Optimizations */
  .highlight-box, .info-card, .check-col, .alert-box, .conclusion-box {
      padding: 24px;
      margin: 32px 0;
      border-radius: 12px;
  }

  /* Tame the watermarks on mobile */
  .highlight-box::after, .info-card::after, .alert-box::after, 
  .check-col.valid::after, .check-col.invalid::after {
      font-size: 80px;
      right: -10px; /* Push out slightly */
      top: -10px;
  }

  /* Header & Content */
  .article-header { padding-top: 80px; }
  .article-lead { font-size: 18px; margin-bottom: 24px; }
  .article-container-wide { padding-top: 32px; padding-left: 20px; padding-right: 20px; }
  
  /* Typography */
  .first-paragraph::first-letter { font-size: 56px; padding-right: 12px; padding-top: 8px; line-height: 0.9; }
  .conclusion-box h3 { font-size: 24px !important; }
  
  /* CTA Mobile */
  .cta-blue-pill { flex-direction: column; padding: 32px 24px; text-align: center; gap: 24px; border-radius: 24px; }
  .cta-pill-content h3 { font-size: 24px; }
  .btn-white { width: 100%; justify-content: center; } 
  
  /* Sources */
  .sources-list { grid-template-columns: 1fr; gap: 16px; }

  /* Mobile Navigation */
  .mobile-menu-toggle {
      display: block;
  }

  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      justify-content: center;
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -10px 0 30px rgba(0,0,0,0.05);
      padding: 40px;
      gap: 40px;
  }

  .nav-links.active {
      right: 0;
  }

  .nav-links .nav-link {
      font-size: 24px;
      font-weight: 600;
  }

  .nav-links .btn {
      width: 100%;
      max-width: 300px;
      padding: 20px;
      font-size: 18px;
  }
}

/* Conclusion Box Refinements */
.conclusion-box {
    text-align: left;
    padding: 48px;
    margin-bottom: 0;
}
.conclusion-box h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 24px;
}
.conclusion-box p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}
