:root {
--bg: #0b0c10;
--surface: #eaeaea;
--ink: #4a90e2;
--accent: #00d4aa;
--accent2: #ff6b6b;
--shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
--radius: 8px;
--radius-lg: 16px;
--font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
--font-serif: "Playfair Display", "Georgia", serif;
--font-mono: "JetBrains Mono", "Courier New", monospace;
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
scroll-behavior: smooth;
}

body {
background-color: var(--bg);
color: var(--surface);
font-family: var(--font-display);
line-height: 1.6;
min-height: 100vh;
overflow-x: hidden;
}

h1, h2, h3 {
font-family: var(--font-serif);
font-weight: 500;
line-height: 1.2;
margin-bottom: 1rem;
}

p {
margin-bottom: 1rem;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 2;
}

.site-header {
position: sticky;
top: 0;
z-index: 100;
background-color: rgba(11, 12, 16, 0.95);
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(74, 144, 226, 0.2);
padding: 1rem 0;
}

.site-header.shadow {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.brand-logo {
font-family: var(--font-display);
font-weight: 700;
font-size: 1.25rem;
color: var(--surface);
text-decoration: none;
letter-spacing: -0.02em;
}

.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.hamburger-line {
display: block;
width: 24px;
height: 2px;
background-color: var(--surface);
margin: 5px 0;
transition: var(--transition);
}

.main-nav ul {
list-style: none;
display: flex;
gap: 2rem;
}

.main-nav a {
color: var(--surface);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: var(--transition);
}

.main-nav a:hover {
color: var(--accent);
}

#scroll-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 3px;
background: linear-gradient(90deg, var(--ink), var(--accent));
z-index: 101;
transition: width 0.1s linear;
}

.hero-section {
padding: 6rem 0 4rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.hero-visual {
width: 100%;
height: 400px;
position: relative;
overflow: hidden;
border: 1px solid rgba(74, 144, 226, 0.3);
border-radius: var(--radius-lg);
background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05), transparent 70%);
}

.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

.hero-subtitle {
font-size: 1.1rem;
color: var(--surface);
opacity: 0.9;
margin-bottom: 2rem;
max-width: 500px;
}

.cta-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: var(--radius);
text-decoration: none;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
border: 2px solid transparent;
font-family: var(--font-display);
}

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

.btn-primary:hover, .btn-primary:focus {
background-color: #3a7bc8;
transform: translateY(-2px);
}

.btn-secondary {
border-color: var(--accent);
color: var(--accent);
background: transparent;
}

.btn-secondary:hover, .btn-secondary:focus {
background-color: rgba(0, 212, 170, 0.1);
color: #00b894;
}

.btn-small {
padding: 0.5rem 1rem;
font-size: 0.85rem;
background-color: var(--accent);
color: var(--bg);
}

.horizontal-line {
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.5), transparent);
margin: 4rem 0;
}

.stats-section {
padding: 4rem 0;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
text-align: center;
}

.stat-number {
font-family: var(--font-mono);
font-size: 2rem;
color: var(--accent);
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 0.9rem;
color: var(--surface);
opacity: 0.8;
}

.about-section, .process-section, .features-section, .benefits-section, .testimonials-section, .faq-section, .contact-section {
padding: 4rem 0;
}

.bento-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.feature-card, .benefit-card, .philosophy-card, .value-card, .step-card {
background: rgba(234, 234, 234, 0.05);
border: 1px solid rgba(74, 144, 226, 0.2);
border-radius: var(--radius-lg);
padding: 2rem;
transition: var(--transition);
}

.feature-card:hover, .benefit-card:hover, .philosophy-card:hover, .step-card:hover {
background: rgba(234, 234, 234, 0.08);
transform: translateY(-4px);
border-color: var(--accent);
}

.feature-icon, .benefit-icon {
width: 48px;
height: 48px;
margin-bottom: 1rem;
}

.step-index {
font-family: var(--font-mono);
color: var(--accent2);
font-size: 1.2rem;
display: block;
margin-bottom: 0.5rem;
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.testimonial-card {
background: rgba(74, 144, 226, 0.1);
border: 1px solid rgba(74, 144, 226, 0.3);
border-radius: var(--radius-lg);
padding: 2rem;
}

.stars {
color: var(--accent);
margin-bottom: 1rem;
font-size: 1.2rem;
}

.testimonial-card blockquote {
font-style: italic;
margin-bottom: 1.5rem;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.initials {
width: 40px;
height: 40px;
background-color: var(--accent);
color: var(--bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}

.author-name {
font-weight: 600;
margin-bottom: 0.25rem;
}

.author-role {
font-size: 0.85rem;
opacity: 0.8;
}

.faq-container {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
border-bottom: 1px solid rgba(74, 144, 226, 0.2);
margin-bottom: 1rem;
}

.faq-question {
width: 100%;
background: none;
border: none;
color: var(--surface);
font-size: 1.1rem;
text-align: left;
padding: 1.5rem 0;
cursor: pointer;
font-family: var(--font-display);
display: flex;
justify-content: space-between;
align-items: center;
}

.faq-question::after {
content: '+';
font-size: 1.5rem;
transition: var(--transition);
}

.faq-question[aria-expanded="true"]::after {
content: '-';
color: var(--accent);
}

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

.faq-answer p {
padding-bottom: 1.5rem;
opacity: 0.9;
}

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

.contact-form {
max-width: 600px;
margin: 0 auto;
display: grid;
gap: 1.5rem;
}

.form-field label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}

.form-field input, .form-field textarea {
width: 100%;
padding: 0.75rem;
background: rgba(234, 234, 234, 0.05);
border: 1px solid rgba(74, 144, 226, 0.3);
border-radius: var(--radius);
color: var(--surface);
font-family: var(--font-display);
}

.form-field input:focus, .form-field textarea:focus {
outline: none;
border-color: var(--accent);
}

.field-error {
color: var(--accent2);
font-size: 0.85rem;
display: none;
}

.form-field.invalid .field-error {
display: block;
}

.form-field.invalid input, .form-field.invalid textarea {
border-color: var(--accent2);
}

.cta-banner {
background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(0, 212, 170, 0.2));
padding: 6rem 0;
text-align: center;
}

.cta-banner h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.cta-banner p {
max-width: 600px;
margin: 0 auto 2rem;
}

.site-footer {
background-color: rgba(0, 0, 0, 0.3);
padding: 4rem 0 2rem;
margin-top: 4rem;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
color: var(--accent);
margin-bottom: 1rem;
}

.footer-col ul {
list-style: none;
}

.footer-col li {
margin-bottom: 0.5rem;
}

.footer-col a {
color: var(--surface);
text-decoration: none;
opacity: 0.8;
}

.footer-col a:hover {
opacity: 1;
color: var(--accent);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: rgba(11, 12, 16, 0.98);
border-top: 1px solid rgba(74, 144, 226, 0.3);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.3s ease;
}

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

.cookie-actions {
display: flex;
gap: 1rem;
}

.layout-legal .site-header {
border-bottom: none;
padding: 2rem 0;
background: transparent;
}

.breadcrumb ol {
list-style: none;
display: flex;
gap: 0.5rem;
font-size: 0.9rem;
opacity: 0.8;
margin-bottom: 2rem;
}

.breadcrumb a {
color: var(--accent);
text-decoration: none;
}

.legal-page {
display: block;
padding: 4rem 0;
}

.legal-content {
max-width: 800px;
}

.legal-section {
margin-bottom: 2rem;
}

.legal-section h2 {
font-size: 1.2rem;
color: var(--accent);
margin-top: 1.5rem;
}

.cookie-table-container {
margin: 3rem 0;
overflow-x: auto;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
font-size: 0.9rem;
}

.cookie-table th, .cookie-table td {
padding: 1rem;
border: 1px solid rgba(74, 144, 226, 0.2);
text-align: left;
}

.thank-you-section {
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
}

.thank-you-card {
background: rgba(234, 234, 234, 0.05);
border: 1px solid rgba(0, 212, 170, 0.3);
border-radius: var(--radius-lg);
padding: 3rem;
text-align: center;
max-width: 600px;
}

.success-icon {
width: 64px;
height: 64px;
margin-bottom: 1.5rem;
}

.risk-module {
padding: 4rem 0;
cursor: pointer;
}

.risk-content {
background: rgba(74, 144, 226, 0.1);
border: 1px solid var(--accent);
border-radius: var(--radius-lg);
padding: 2rem;
text-align: center;
transition: var(--transition);
}

.risk-content.active {
transform: perspective(1000px) rotateX(10deg) rotateY(0deg);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.risk-chart {
height: 200px;
margin-top: 1rem;
position: relative;
}

.cursor-catch {
position: fixed;
width: 20px;
height: 20px;
border: 2px solid var(--accent);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%, -50%);
transition: width 0.2s, height 0.2s, border-color 0.2s;
mix-blend-mode: difference;
}

.cursor-catch.hovering {
width: 40px;
height: 40px;
border-color: var(--accent2);
}

.dynamic-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
opacity: 0.4;
}

.fade-up {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.visible, .fade-up.is-visible {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 768px) {
.hero-section {
grid-template-columns: 1fr;
text-align: center;
padding: 4rem 1rem;
}

.hero-visual {
height: 300px;
}

.hero-content h1 {
font-size: 1.8rem;
}

.cta-group {
justify-content: center;
}

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

.menu-toggle {
display: block;
}

.main-nav {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: var(--bg);
border-bottom: 1px solid rgba(74, 144, 226, 0.2);
padding: 1rem 0;
transform: translateY(-10px);
opacity: 0;
pointer-events: none;
transition: var(--transition);
}

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

.main-nav ul {
flex-direction: column;
align-items: center;
gap: 1rem;
}

.cookie-banner {
flex-direction: column;
gap: 1rem;
text-align: center;
}

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

.contact-form {
padding: 0 1rem;
}
}

@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
.sf-inline-87c5d47fba{grid-column: span 2}
