@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body { min-height: 100vh; display: flex; flex-direction: column; }
  img { max-width: 100%; height: auto; display: block; }
  ul, ol { list-style: none; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  address { font-style: normal; }
  input, textarea, select { font: inherit; }
}

@layer tokens {
  :root {
    --color-primary: #1a1040;
    --color-primary-mid: #2d1b69;
    --color-primary-light: #4c3099;
    --color-accent: #f97316;
    --color-accent-light: #fb923c;
    --color-accent-muted: rgba(249,115,22,0.15);
    --color-teal: #0ea5e9;
    --color-teal-light: #38bdf8;
    --color-emerald: #10b981;
    --color-amber: #f59e0b;

    --gradient-hero: linear-gradient(135deg, #1a1040 0%, #2d1b69 40%, #0f4c75 75%, #0ea5e9 100%);
    --gradient-features: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    --gradient-cta: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    --gradient-community: linear-gradient(135deg, #0f4c75 0%, #1e3a5f 50%, #1a1040 100%);
    --gradient-inner-hero: linear-gradient(135deg, #1a1040 0%, #2d1b69 60%, #1e3a5f 100%);

    --glass-bg: rgba(255,255,255,0.08);
    --glass-bg-strong: rgba(255,255,255,0.13);
    --glass-border: rgba(255,255,255,0.15);
    --glass-border-strong: rgba(255,255,255,0.25);
    --glass-blur: blur(16px);

    --text-dark: #1a1040;
    --text-body: #2d2458;
    --text-muted: #6b7280;
    --text-light: rgba(255,255,255,0.92);
    --text-light-muted: rgba(255,255,255,0.65);

    --surface-white: #faf9ff;
    --surface-subtle: #f3f0ff;
    --surface-card: #ffffff;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(26,16,64,0.08), 0 1px 2px rgba(26,16,64,0.06);
    --shadow-md: 0 4px 12px rgba(26,16,64,0.10), 0 2px 4px rgba(26,16,64,0.06);
    --shadow-lg: 0 10px 30px rgba(26,16,64,0.14), 0 4px 12px rgba(26,16,64,0.08);
    --shadow-xl: 0 20px 50px rgba(26,16,64,0.18), 0 8px 20px rgba(26,16,64,0.10);
    --shadow-glow: 0 0 30px rgba(249,115,22,0.25), 0 4px 16px rgba(249,115,22,0.15);
    --shadow-glass: 0 8px 32px rgba(26,16,64,0.25), 0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);

    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;

    --nav-height: 72px;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--surface-white);
    font-size: 1rem;
    line-height: 1.6;
  }

  .Container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  main { flex: 1; }
}

@layer components {

  
  .SiteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    transition: background-color var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
  }

  .SiteHeader--transparent {
    background-color: transparent;
  }

  .SiteHeader--solid {
    background-color: var(--color-primary);
    box-shadow: var(--shadow-md);
  }

  .SiteHeader.is-scrolled {
    background-color: rgba(26,16,64,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(26,16,64,0.3), 0 1px 0 rgba(255,255,255,0.05);
  }

  .SiteHeader-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
  }

  .SiteHeader-navLeft,
  .SiteHeader-navRight {
    display: none;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
  }

  .SiteHeader-navLeft { justify-content: flex-end; padding-right: var(--space-xl); }
  .SiteHeader-navRight { justify-content: flex-start; padding-left: var(--space-xl); }

  .SiteHeader-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
    transition: opacity var(--transition);
  }

  .SiteHeader-logo:hover { opacity: 0.85; }

  .SiteHeader-logoImg { width: 36px; height: 36px; }

  .SiteHeader-logoText {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    white-space: nowrap;
  }

  .SiteHeader-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    transition: color var(--transition);
    white-space: nowrap;
    position: relative;
  }

  .SiteHeader-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: var(--radius-full);
  }

  .SiteHeader-link:hover { color: #ffffff; }
  .SiteHeader-link:hover::after,
  .SiteHeader-link--active::after { transform: scaleX(1); }
  .SiteHeader-link--active { color: #ffffff; }

  .SiteHeader-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    background: var(--color-accent);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(249,115,22,0.35);
    white-space: nowrap;
  }

  .SiteHeader-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
  }

  .SiteHeader-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .SiteHeader-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: var(--radius-full);
    transition: transform var(--transition), opacity var(--transition);
  }

  
  .MobileMenu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .MobileMenu.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .MobileMenu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    transition: color var(--transition), transform var(--transition);
  }

  .MobileMenu-close:hover { color: #ffffff; transform: rotate(90deg); }

  .MobileMenu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .MobileMenu-link {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition), transform var(--transition);
  }

  .MobileMenu-link:hover { color: #ffffff; transform: translateX(8px); }

  .MobileMenu-link--cta {
    margin-top: var(--space-sm);
    padding: 0.75rem 2rem;
    background: var(--color-accent);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
  }

  .MobileMenu-link--cta:hover { transform: translateY(-2px); background: var(--color-accent-light); }

  
  .PageHero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: 0;
    overflow: hidden;
  }

  .PageHero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
  }

  .PageHero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.25) 0%, transparent 70%);
    border-radius: 50%;
  }

  .PageHero-bg::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  .PageHero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--space-md);
    max-width: 860px;
    margin: 0 auto;
  }

  .PageHero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--color-teal-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    backdrop-filter: var(--glass-blur);
  }

  .PageHero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
  }

  .PageHero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light-muted);
    max-width: 640px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
  }

  .PageHero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
  }

  .PageHero-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-sm);
    padding: 0 var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: var(--space-xl);
  }

  .HeroCard {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: left;
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  }

  .HeroCard:hover {
    transform: translateY(-4px);
    background: var(--glass-bg-strong);
    box-shadow: 0 16px 48px rgba(26,16,64,0.3), 0 4px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
  }

  .HeroCard-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-muted);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
  }

  .HeroCard-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
  }

  .HeroCard-text {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    line-height: 1.6;
  }

  
  .Btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 44px;
    white-space: nowrap;
  }

  .Btn--primary {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(249,115,22,0.4);
  }

  .Btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .Btn--primary:active { transform: translateY(0); }

  .Btn--ghost {
    background: var(--glass-bg);
    color: rgba(255,255,255,0.9);
    border-color: var(--glass-border-strong);
    backdrop-filter: var(--glass-blur);
  }

  .Btn--ghost:hover {
    background: var(--glass-bg-strong);
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
  }

  .Btn--outline {
    background: transparent;
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
  }

  .Btn--outline:hover {
    background: var(--color-primary-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

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

  
  .SectionLabel {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
  }

  .SectionLabel--light { color: var(--color-accent-light); }

  .SectionHeading {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
  }

  .SectionHeading--light { color: #ffffff; }

  .SectionSubtext {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .SectionSubtext--light { color: var(--text-light-muted); }

  .BodyText {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: var(--space-md);
  }

  .BodyText--light { color: var(--text-light-muted); }
  .BodyText--large { font-size: 1.1rem; }

  
  .IntroSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

  .IntroSection-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .IntroSection-visual {
    position: relative;
  }

  .IntroSection-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .IntroSection-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-glow);
    max-width: 200px;
    text-align: center;
    line-height: 1.4;
  }

  
  .FeaturesSection {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
  }

  .FeaturesSection-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-features);
    z-index: 0;
  }

  .FeaturesSection .Container { position: relative; z-index: 1; }

  .FeaturesSection-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  .FeatureGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
  }

  .FeatureBox {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
  }

  .FeatureBox:hover {
    transform: translateY(-6px);
    background: var(--glass-bg-strong);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  }

  .FeatureBox-icon {
    width: 52px;
    height: 52px;
    background: var(--color-accent-muted);
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
  }

  .FeatureBox-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .FeatureBox-text {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.65;
  }

  
  .WorkflowSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-subtle);
  }

  .WorkflowSection-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  .WorkflowGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .WorkflowStep {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-md);
    align-items: start;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(76,48,153,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .WorkflowStep:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
  }

  .WorkflowStep-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
    opacity: 0.35;
    line-height: 1;
    padding-top: 4px;
  }

  .WorkflowStep-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .WorkflowStep-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  
  .ImageSection {
    padding: var(--space-2xl) 0;
    background: var(--surface-white);
  }

  .ImageSection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .ImageSection-main { border-radius: var(--radius-xl); overflow: hidden; }

  .ImageSection-img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }

  .ImageSection-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .ImageSection-card { border-radius: var(--radius-lg); overflow: hidden; }

  .ImageSection-cardImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
  }

  .ImageSection-card:hover .ImageSection-cardImg { transform: scale(1.03); }

  
  .ComplianceSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

  .ComplianceSection-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ComplianceCard {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(76,48,153,0.1);
  }

  .ComplianceCard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(76,48,153,0.08);
  }

  .ComplianceCard-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .ComplianceCard-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
  }

  .ComplianceCard-status--good {
    background: rgba(16,185,129,0.12);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.25);
  }

  .ComplianceCard-items { display: flex; flex-direction: column; gap: 0.75rem; }

  .ComplianceCard-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76,48,153,0.05);
  }

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

  .ComplianceCard-check { color: var(--color-emerald); font-size: 1rem; }
  .ComplianceCard-warn { color: var(--color-amber); font-size: 1rem; }

  
  .CommunitySection {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
  }

  .CommunitySection-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-community);
    z-index: 0;
  }

  .CommunitySection .Container { position: relative; z-index: 1; }

  .CommunitySection-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .CommunitySection-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .CommunityList {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--space-md);
  }

  .CommunityList-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light-muted);
  }

  .CommunityList-item i { color: var(--color-teal-light); font-size: 1rem; flex-shrink: 0; }

  
  .FaqSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-subtle);
  }

  .FaqSection-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  .FaqList { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 800px; margin: 0 auto; }

  .FaqItem {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(76,48,153,0.1);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
  }

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

  .FaqItem-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    gap: var(--space-sm);
    min-height: 44px;
    transition: color var(--transition);
  }

  .FaqItem-question:hover { color: var(--color-primary-light); }

  .FaqItem-icon {
    flex-shrink: 0;
    color: var(--color-primary-light);
    transition: transform var(--transition);
    font-size: 0.8rem;
  }

  .FaqItem.is-open .FaqItem-icon { transform: rotate(180deg); }
  .FaqItem.is-open .FaqItem-question { color: var(--color-primary-light); }

  .FaqItem-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .FaqItem-answer p {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  
  .CtaSection {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
  }

  .CtaSection-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-cta);
    z-index: 0;
  }

  .CtaSection-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .CtaSection .Container { position: relative; z-index: 1; }

  .CtaSection-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .CtaSection-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }

  .CtaSection-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
  }

  .CtaSection-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
  }

  
  .InnerHero {
    position: relative;
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
    overflow: hidden;
  }

  .InnerHero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-inner-hero);
    z-index: 0;
  }

  .InnerHero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
  }

  .InnerHero .Container { position: relative; z-index: 1; }

  .InnerHero-content { max-width: 760px; }

  .InnerHero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
  }

  .InnerHero-text {
    font-size: 1.05rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    max-width: 620px;
  }

  
  .PhilosophySection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

  .PhilosophySection-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  .PhilosophyPillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .PhilosophyPillar {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(76,48,153,0.08);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .PhilosophyPillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
  }

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

  .PhilosophyPillar-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: var(--space-sm);
  }

  .PhilosophyPillar-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
  }

  .PhilosophyPillar p { margin-bottom: var(--space-sm); }
  .PhilosophyPillar p:last-child { margin-bottom: 0; }

  .ApproachSection {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
  }

  .ApproachSection-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-features);
    z-index: 0;
  }

  .ApproachSection .Container { position: relative; z-index: 1; }

  .ApproachSection-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ApproachSection-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .ValuesSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-subtle);
  }

  .ValuesSection-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  .ValuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
  }

  .ValueCard {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(76,48,153,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
  }

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

  .ValueCard-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
  }

  .ValueCard-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .ValueCard-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  
  .FeatureDetailSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

  .FeatureDetail {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(76,48,153,0.07);
    transition: box-shadow var(--transition);
  }

  .FeatureDetail:hover { box-shadow: var(--shadow-xl); }

  .FeatureDetail-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(76,48,153,0.08);
  }

  .FeatureDetail-iconWrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
  }

  .FeatureDetail-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
  }

  .FeatureDetail-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .FeatureDetail-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
  }

  .FeatureDetail-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.5rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(76,48,153,0.06);
  }

  .FeatureDetail-bullet {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-body);
    padding: 0.4rem 0;
  }

  .FeatureDetail-bullet i { color: var(--color-emerald); font-size: 0.9rem; flex-shrink: 0; }

  
  .GuideSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

  .GuideIntro {
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(249,115,22,0.06);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
  }

  .GuideTopics { display: flex; flex-direction: column; gap: var(--space-lg); }

  .GuideTopic {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(76,48,153,0.07);
    transition: box-shadow var(--transition);
  }

  .GuideTopic:hover { box-shadow: var(--shadow-lg); }

  .GuideTopic-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .GuideTopic-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .GuideTopic-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .GuideTopic-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
  }

  .GuideTopic-body p:last-child { margin-bottom: 0; }

  .ComplianceImageSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-subtle);
  }

  .ComplianceImageSection-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ComplianceImageSection-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  
  .ContactSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

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

  .FormCard {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(76,48,153,0.08);
  }

  .FormCard-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
  }

  .FormGroup { margin-bottom: var(--space-md); }

  .FormLabel {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 0.4rem;
  }

  .FormInput {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(76,48,153,0.15);
    border-radius: var(--radius-md);
    background: var(--surface-white);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    min-height: 44px;
  }

  .FormInput:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(76,48,153,0.12);
  }

  .FormInput::placeholder { color: #9ca3af; }

  .FormInput--select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

  .FormInput--textarea { resize: vertical; min-height: 120px; }

  .FormGroup--checkbox { display: flex; align-items: flex-start; gap: 0; }

  .FormCheckbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
  }

  .FormCheckbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

  .FormCheckbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(76,48,153,0.25);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color var(--transition), background-color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .FormCheckbox input:checked + .FormCheckbox-custom {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
  }

  .FormCheckbox input:checked + .FormCheckbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
  }

  .FormCheckbox-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .FormLink { color: var(--color-primary-light); text-decoration: underline; }

  .ContactInfoCard {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(76,48,153,0.08);
    margin-bottom: var(--space-md);
  }

  .ContactInfoCard-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(76,48,153,0.08);
  }

  .ContactInfoCard-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .ContactInfoCard-item:last-child { margin-bottom: 0; }

  .ContactInfoCard-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .ContactInfoCard-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
  }

  .ContactInfoCard-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
  }

  .ContactInfoCard-link { color: var(--color-primary-light); transition: color var(--transition); }
  .ContactInfoCard-link:hover { color: var(--color-accent); }

  
  .TimelineCard {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(76,48,153,0.08);
  }

  .TimelineCard-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(76,48,153,0.08);
  }

  .Timeline { display: flex; flex-direction: column; gap: 0; }

  .Timeline-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--space-sm);
    position: relative;
    padding-bottom: var(--space-md);
  }

  .Timeline-item:last-child { padding-bottom: 0; }

  .Timeline-item::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary-light), transparent);
    opacity: 0.2;
  }

  .Timeline-item:last-child::before { display: none; }

  .Timeline-marker {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
  }

  .Timeline-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    padding-top: 0.6rem;
  }

  .Timeline-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  
  .MapSection {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--surface-subtle);
  }

  .MapSection-inner { text-align: center; }
  .MapSection-inner .SectionHeading { margin-bottom: var(--space-lg); }

  .MapSection-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(76,48,153,0.1);
  }

  
  .ThanksSection {
    min-height: calc(100vh - var(--nav-height) - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-md);
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    background: var(--surface-subtle);
  }

  .ThanksSection-inner {
    text-align: center;
    max-width: 480px;
  }

  .ThanksSection-animation { margin-bottom: var(--space-lg); }

  .ThanksCheckmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .ThanksCheckmark-circle {
    stroke: var(--color-emerald);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 0.8s ease forwards;
  }

  .ThanksCheckmark-check {
    stroke: var(--color-emerald);
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheck 0.5s ease 0.7s forwards;
  }

  @keyframes drawCircle {
    to { stroke-dashoffset: 0; }
  }

  @keyframes drawCheck {
    to { stroke-dashoffset: 0; }
  }

  .ThanksSection-content {
    animation: fadeInUp 0.6s ease 1.1s both;
  }

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

  .ThanksSection-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
  }

  .ThanksSection-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
  }

  
  .LegalHero {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
    background: var(--color-primary);
  }

  .LegalHero-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
  }

  .LegalHero-meta {
    font-size: 0.875rem;
    color: var(--text-light-muted);
  }

  .LegalSection {
    padding: var(--space-3xl) 0;
    background: var(--surface-white);
  }

  .LegalContent { max-width: 800px; }

  .LegalContent-intro {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: var(--surface-subtle);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary-light);
  }

  .LegalFaq { display: flex; flex-direction: column; gap: var(--space-lg); }

  .LegalFaq-item {
    border-bottom: 1px solid rgba(76,48,153,0.08);
    padding-bottom: var(--space-lg);
  }

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

  .LegalFaq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }

  .LegalFaq-answer p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
  }

  .LegalFaq-answer p:last-child { margin-bottom: 0; }

  .LegalFaq-answer strong { color: var(--text-dark); font-weight: 500; }

  
  .SiteFooter {
    background: var(--color-primary);
    padding: var(--space-2xl) 0 0;
    margin-top: auto;
  }

  .SiteFooter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }

  .FooterCard {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
  }

  .FooterCard-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
  }

  .FooterCard-logoImg { width: 32px; height: 32px; }

  .FooterCard-logoText {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
  }

  .FooterCard-text {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    line-height: 1.65;
  }

  .FooterCard-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
  }

  .FooterCard-list { display: flex; flex-direction: column; gap: 0.5rem; }

  .FooterCard-link {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    transition: color var(--transition);
  }

  .FooterCard-link:hover { color: #ffffff; }

  .FooterCard-address {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .FooterCard-address p {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
  }

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

  .SiteFooter-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-md) 0;
    text-align: center;
  }

  .SiteFooter-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
  }

  
  .CookieBanner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26,16,64,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .CookieBanner.is-visible {
    transform: translateY(0);
  }

  .CookieBanner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .CookieBanner-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    flex: 1;
    min-width: 200px;
  }

  .CookieBanner-link { color: var(--color-teal-light); text-decoration: underline; }

  .CookieBanner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .CookieBanner-btn {
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition);
    min-height: 36px;
    white-space: nowrap;
  }

  .CookieBanner-btn--accept {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(249,115,22,0.35);
  }

  .CookieBanner-btn--accept:hover { background: var(--color-accent-light); }

  .CookieBanner-btn--customize {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
  }

  .CookieBanner-btn--customize:hover { background: rgba(255,255,255,0.18); }

  .CookieBanner-btn--reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
  }

  .CookieBanner-btn--reject:hover { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }

  
  .CookieModal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .CookieModal.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .CookieModal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
  }

  .CookieModal-box {
    position: relative;
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(76,48,153,0.1);
  }

  .CookieModal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
  }

  .CookieModal-item {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(76,48,153,0.06);
  }

  .CookieModal-item:last-of-type { border-bottom: none; }

  .CookieModal-itemHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
  }

  .CookieModal-itemName {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
  }

  .CookieModal-itemRequired {
    font-size: 0.75rem;
    color: var(--color-emerald);
    font-weight: 500;
  }

  .CookieModal-itemDesc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .CookieModal-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
  }

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

  .CookieModal-toggleSlider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: var(--radius-full);
    transition: background var(--transition);
  }

  .CookieModal-toggleSlider::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

  .CookieModal-toggle input:checked + .CookieModal-toggleSlider { background: var(--color-primary-light); }
  .CookieModal-toggle input:checked + .CookieModal-toggleSlider::before { transform: translateX(20px); }

  .CookieModal-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
  }

  .CookieModal-actions .Btn { flex: 1; min-width: 120px; }

  
  @media (min-width: 640px) {
    .WorkflowGrid {
      grid-template-columns: 1fr 1fr;
    }

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

    .ImageSection-grid {
      grid-template-columns: 3fr 2fr;
      align-items: start;
    }

    .ImageSection-stack {
      grid-template-columns: 1fr;
    }

    .ImageSection-cardImg { aspect-ratio: 3/2; }
  }

  @media (min-width: 768px) {
    .IntroSection-layout,
    .ComplianceSection-layout,
    .CommunitySection-layout,
    .ApproachSection-layout,
    .ComplianceImageSection-layout,
    .ContactSection-layout {
      grid-template-columns: 1fr 1fr;
    }

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

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

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

  @media (min-width: 1024px) {
    .SiteHeader-navLeft,
    .SiteHeader-navRight {display: flex;
    }

    .SiteHeader-hamburger {
      display: none;
    }

    .IntroSection-layout {
      grid-template-columns: 55% 1fr;
    }

    .ComplianceSection-layout {
      grid-template-columns: 1fr 45%;
    }

    .CommunitySection-layout {
      grid-template-columns: 45% 1fr;
    }

    .ApproachSection-layout {
      grid-template-columns: 1fr 45%;
    }

    .ContactSection-layout {
      grid-template-columns: 55% 1fr;
    }

    .ComplianceImageSection-layout {
      grid-template-columns: 45% 1fr;
    }

    .ImageSection-grid {
      grid-template-columns: 3fr 2fr;
    }

    .ImageSection-stack {
      grid-template-columns: 1fr;
    }
  }
}

@layer utilities {
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
  }

  .text-center { text-align: center; }
  .mt-auto { margin-top: auto; }
}