:root {
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --secondary: #d97706;
    --secondary-hover: #b45309;
    --bg-main: #fafaf9;
    --bg-card: #ffffff;
    --text-dark: #1c1917;
    --text-muted: #57534e;
    --border-color: #e7e5e4;
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.logo img {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-btn {
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
}

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

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

main {
    padding-bottom: 60px;
}

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

/* Hero Section */
.hero {
    background-color: var(--bg-main);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

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

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

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

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.stat-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Steps - How it works */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.step-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Features */
.features-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.features-image {
    flex: 1;
    min-width: 300px;
}

.features-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.features-content {
    flex: 1.2;
}

.features-content ul {
    list-style: none;
    margin-top: 20px;
}

.features-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.features-content i {
    color: var(--primary);
    margin-top: 4px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.15);
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0 30px 0;
    text-align: left;
}

.price-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card i {
    color: var(--primary);
}

/* Form Section */
.form-container {
    max-width: 650px;
    margin: 60px auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-top: 4px;
}

/* Trust Section & Layer */
.trust-principles {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
}

.trust-layer {
    background: #f5f5f4;
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-layer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Accordion FAQ Teaser */
.faq-teaser {
    margin: 45px 0;
}

.faq-teaser-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 20px;
    cursor: pointer;
}

.faq-teaser-item h3 {
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #e7e5e4;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    border-bottom: 1px solid #44403c;
    padding-bottom: 30px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #a8a29e;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #1c1917;
    color: #fafaf9;
    padding: 24px;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* Form status states */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Interactive Accordion full faq.html */
details {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 15px;
}

details summary {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-headings);
}

details div {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
}

/* Focus states for accessibility */
:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .burger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-block {
        flex-direction: column;
    }
    
    .price-card.featured {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}