:root {
  /* Colors */
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);
  --color-select-caret: rgba(19, 52, 59, 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: rgba(31, 33, 33, 1);
    --color-surface: rgba(38, 40, 40, 1);
    --color-text: rgba(245, 245, 245, 1);
    --color-text-secondary: rgba(167, 169, 169, 0.7);
    --color-primary: rgba(50, 184, 198, 1);
    --color-primary-hover: rgba(45, 166, 178, 1);
    --color-primary-active: rgba(41, 150, 161, 1);
    --color-secondary: rgba(119, 124, 124, 0.15);
    --color-secondary-hover: rgba(119, 124, 124, 0.25);
    --color-secondary-active: rgba(119, 124, 124, 0.3);
    --color-border: rgba(119, 124, 124, 0.3);
    --color-error: rgba(255, 84, 89, 1);
    --color-success: rgba(50, 184, 198, 1);
    --color-warning: rgba(230, 129, 97, 1);
    --color-info: rgba(167, 169, 169, 1);
    --color-focus-ring: rgba(50, 184, 198, 0.4);
    --color-btn-primary-text: rgba(19, 52, 59, 1);
    --color-card-border: rgba(119, 124, 124, 0.2);
    --color-card-border-inner: rgba(119, 124, 124, 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(119, 124, 124, 0.2);
    --color-border-secondary: rgba(119, 124, 124, 0.2);
    --color-select-caret: rgba(245, 245, 245, 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: 50, 184, 198;
    --color-error-rgb: 255, 84, 89;
    --color-warning-rgb: 230, 129, 97;
    --color-info-rgb: 167, 169, 169;
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  --color-background: rgba(31, 33, 33, 1);
  --color-surface: rgba(38, 40, 40, 1);
  --color-text: rgba(245, 245, 245, 1);
  --color-text-secondary: rgba(167, 169, 169, 0.7);
  --color-primary: rgba(50, 184, 198, 1);
  --color-primary-hover: rgba(45, 166, 178, 1);
  --color-primary-active: rgba(41, 150, 161, 1);
  --color-secondary: rgba(119, 124, 124, 0.15);
  --color-secondary-hover: rgba(119, 124, 124, 0.25);
  --color-secondary-active: rgba(119, 124, 124, 0.3);
  --color-border: rgba(119, 124, 124, 0.3);
  --color-error: rgba(255, 84, 89, 1);
  --color-success: rgba(50, 184, 198, 1);
  --color-warning: rgba(230, 129, 97, 1);
  --color-info: rgba(167, 169, 169, 1);
  --color-focus-ring: rgba(50, 184, 198, 0.4);
  --color-btn-primary-text: rgba(19, 52, 59, 1);
  --color-card-border: rgba(119, 124, 124, 0.15);
  --color-card-border-inner: rgba(119, 124, 124, 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(119, 124, 124, 0.2);
  --color-select-caret: rgba(245, 245, 245, 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: 50, 184, 198;
  --color-error-rgb: 255, 84, 89;
  --color-warning-rgb: 230, 129, 97;
  --color-info-rgb: 167, 169, 169;
}

[data-color-scheme="light"] {
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

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

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

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

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

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

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2F2F2F;
    background-color: #FFFFFF;
}

/* Header */
.header {
    height: 70px;
    background: #FFFFFF;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 96px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #DC143C;
    line-height: 1;
}

.tagline {
    font-size: 12px;
    color: #888888;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

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

.nav-link {
    color: #2F2F2F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #2F2F2F;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    margin-top: 70px;
    padding-top: 80px;
    padding-bottom: 80px;
    background: #FFFFFF;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.hero-title .line-1,
.hero-title .line-2 {
    color: #2F2F2F;
}

.hero-title .line-3 {
    color: #DC143C;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #2F2F2F;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #DC143C;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #c41230;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #2F2F2F;
    color: #2F2F2F;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #2F2F2F;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Pricing Card */
.pricing-card {
    background: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
}

.pricing-label {
    color: #B87333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-amount {
    color: #DC143C;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.pricing-note {
    color: #626C71;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    font-style: italic;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2F2F2F;
    margin-bottom: 24px;
}

.section p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.services-list {
    list-style: none;
    margin: 24px 0;
}

.services-list li {
    font-size: 18px;
    color: #666666;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.services-list li:before {
    content: "→";
    color: #DC143C;
    font-weight: bold;
    margin-right: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #666666;
}

.check {
    flex-shrink: 0;
    font-size: 18px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.testimonials blockquote {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #DC143C;
    font-style: italic;
    color: #2F2F2F;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Page Content */
.page-content {
    margin-top: 70px;
    padding: 80px 0;
}

.page-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: #2F2F2F;
    color: #FFFFFF;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DC143C;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .pricing-card {
        margin: 0 auto;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section h2 {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-amount {
        font-size: 28px;
    }
}

.modal {
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(19,52,59,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,128,141,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 370px;
  width: 90vw;
  position: relative;
  text-align: left;
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #D7264E;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 480px) {
  .modal-content {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
  }
}

.logo-img {
  height: 96px;
  width: auto;
  display: block;
  margin-bottom: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
  object-fit: contain;
}

@media (max-width: 600px) {
  .logo-img {
    height: 56px;
  }
}

.timeline-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .timeline-circle {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }
}

.values-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  margin-top: 2.2rem;
}
.value-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,128,141,0.08);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-card:hover {
  box-shadow: 0 6px 32px rgba(33,128,141,0.13);
  transform: translateY(-4px) scale(1.03);
}
.value-icon {
  font-size: 2.3rem;
  margin-bottom: 1.1rem;
  color: #C19A5B;
}
.value-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #C19A5B;
  margin-bottom: 0.7rem;
  letter-spacing: -0.5px;
}
.value-desc {
  color: var(--color-text-secondary);
  font-size: 1.08rem;
  font-weight: 500;
}
@media (max-width: 600px) {
  .values-cards-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 2px solid #C19A5B;
  box-shadow: 0 -2px 16px rgba(33,128,141,0.07);
  z-index: 9999;
  padding: 1.2rem 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-width: 700px;
}
.cookie-banner-content span {
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-link {
  background: none;
  border: none;
  color: #C19A5B;
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.4rem 0.7rem;
}
/* Cookie Policy Modal */
#cookie-modal.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33, 33, 33, 0.18);
  align-items: center;
  justify-content: center;
}
#cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(33,128,141,0.13);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 480px;
  width: 90vw;
  position: relative;
  text-align: left;
}
#close-cookie-modal {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #D7264E;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-banner-content {
    max-width: 98vw;
  }
  #cookie-modal .cookie-modal-content {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
  }
}

/* Cartes de services premium */
.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(33,128,141,0.10);
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.service-card:hover {
  box-shadow: 0 8px 40px #F8F1E4;
  border: 1.5px solid #B58523;
}
.service-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: #D7264E;
  margin-bottom: 0.7rem;
}
.service-icon {
  font-size: 2rem;
}
.service-price-badge {
  background: #F8F1E4;
  color: #B58523;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 12px;
  padding: 0.35em 1.1em;
  display: inline-block;
  margin-bottom: 1.1rem;
}
.service-list {
  margin: 1.2rem 0 1.2rem 0;
  padding-left: 0;
  list-style: none;
}
.service-list li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.check {
  color: #B58523;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 0.1em;
}
.service-btn {
  width: 100%;
  background: #D7264E;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.1rem 0;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 2px 8px #F8F1E4;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.service-btn:hover {
  background: #B58523;
  color: #fff;
}
@media (max-width: 700px) {
  .service-card {
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .service-header {
    font-size: 1.15rem;
  }
  .service-price-badge {
    font-size: 1rem;
    padding: 0.3em 0.7em;
  }
  .service-btn {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/* Cartes d'information premium */
.info-card, .value-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(33,128,141,0.10);
  padding: 2.5rem 1.7rem 1.7rem 1.7rem;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  margin-bottom: 1.5rem;
}
.info-card:hover, .value-card:hover {
  box-shadow: 0 8px 40px #F8F1E4;
  border: 1.5px solid #B58523;
}
.info-header, .value-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #D7264E;
  margin-bottom: 0.7rem;
}
.info-icon, .value-icon {
  font-size: 1.7rem;
}
.info-badge, .value-badge {
  background: #F8F1E4;
  color: #B58523;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 12px;
  padding: 0.35em 1.1em;
  display: inline-block;
  margin-bottom: 1.1rem;
}
.info-list, .value-list {
  margin: 1.2rem 0 1.2rem 0;
  padding-left: 0;
  list-style: none;
}
.info-list li, .value-list li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.value-check {
  color: #B58523;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 0.1em;
}
.premium-btn {
  width: 100%;
  background: #D7264E;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.1rem 0;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 2px 8px #F8F1E4;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
  cursor: pointer;
}
.premium-btn:hover {
  background: #B58523;
  color: #fff;
}
@media (max-width: 700px) {
  .info-card, .value-card {
    padding: 2rem 1rem 1.2rem 1rem;
  }
  .info-header, .value-header {
    font-size: 1.08rem;
  }
  .info-badge, .value-badge {
    font-size: 1rem;
    padding: 0.3em 0.7em;
  }
  .premium-btn {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/* Finalisation premium : modales, footer, timeline, badges, mini-cards, responsive, accessibilité */
.modal, .cookie-modal-content, #contact-modal, #cgu-modal {
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(33,128,141,0.10);
  background: #fff;
  padding: 2.5rem 2rem;
  max-width: 540px;
  margin: 2rem auto;
}
.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #B58523;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #D7264E;
}
.footer {
  background: #292929;
  color: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 16px #F8F1E4;
  padding: 2.5rem 0 1.5rem 0;
  margin-top: 3rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #B58523;
}
.timeline-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #B58523;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px #F8F1E4;
}
@media (max-width: 700px) {
  .footer-links {
    flex-direction: column;
    gap: 1.2rem;
    font-size: 1.08rem;
  }
  .footer {
    padding: 1.5rem 0 1rem 0;
  }
  .timeline-circle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}
/* Accessibilité boutons focus */
.premium-btn:focus, .service-btn:focus, .btn:focus, .footer-links a:focus {
  outline: 2px solid #B58523;
  outline-offset: 2px;
}

/* Cercle Section Styles */
.cercle-section {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(33, 128, 141, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.cercle-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2321808d' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cercle-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cercle-header {
  margin-bottom: 3rem;
}

.cercle-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C19A5B 0%, #D7B976 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(193, 154, 91, 0.3);
}

.cercle-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.cercle-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.cercle-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
}

.cercle-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cercle-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 128, 141, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.cercle-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cercle-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.cercle-cta {
  margin-top: 3rem;
}

.cercle-emphasis {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.cercle-emphasis strong {
  color: #D7264E;
  font-weight: 700;
}

.cercle-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(215, 38, 78, 0.3);
  transition: all 0.3s ease;
}

.cercle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215, 38, 78, 0.4);
}

/* Responsive Design pour la section Cercle */
@media (max-width: 768px) {
  .cercle-title {
    font-size: 2.2rem;
  }
  
  .cercle-subtitle {
    font-size: 1.2rem;
  }
  
  .cercle-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cercle-feature {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  
  .cercle-emphasis {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cercle-title {
    font-size: 1.8rem;
  }
  
  .cercle-subtitle {
    font-size: 1rem;
  }
  
  .cercle-feature {
    padding: 0.8rem 1.2rem;
  }
  
  .cercle-text {
    font-size: 1rem;
  }
}

/* Language Selector Styles */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family-base);
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(33, 128, 141, 0.3);
}

.lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(33, 128, 141, 0.4);
}

/* Responsive Language Selector */
@media (max-width: 1024px) {
  .lang-selector {
    order: -1;
    margin-right: 1rem;
  }
}

@media (max-width: 768px) {
  .lang-selector {
    position: absolute;
    top: 1rem;
    right: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(33, 128, 141, 0.2);
  }
  
  .lang-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .lang-selector {
    right: 3.5rem;
    gap: 0.2rem;
    padding: 0.2rem;
  }
  
  .lang-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}