:root {
    --color-primary: #1a5f4a;
    --color-primary-dark: #134539;
    --color-primary-light: #2d8a6b;
    --color-accent: #f4a520;
    --color-accent-dark: #d4900a;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-text-muted: #8b9aab;
    --color-bg: #ffffff;
    --color-bg-alt: #f8faf9;
    --color-bg-dark: #1a2634;
    --color-border: #e1e8ed;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: 'Georgia', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-floating.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-floating.hidden {
    transform: translateY(-100%);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.hero-funnel {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5f4a 0%, #0d3328 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

.cta-primary {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.cta-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}

.cta-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.cta-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

.problem-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.problem-intro {
    text-align: center;
    margin-bottom: 60px;
}

.problem-intro h2 {
    margin-bottom: 16px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.problem-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: var(--color-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-highlight {
    background: var(--color-primary);
}

.stat-highlight .stat-number,
.stat-highlight .stat-desc {
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.story-section {
    padding: 80px 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-label {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.story-content h3 {
    margin-bottom: 20px;
    line-height: 1.4;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.story-content blockquote {
    font-style: italic;
    color: var(--color-text);
    padding-left: 24px;
    border-left: 3px solid var(--color-accent);
    margin-top: 24px;
}

@media (max-width: 900px) {
    .story-wrapper {
        flex-direction: column;
    }

    .story-image img {
        height: 300px;
    }
}

.insight-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header h2 {
    margin-bottom: 12px;
}

.insight-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.insight-blocks {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    background: var(--color-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insight-icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.insight-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.insight-card h4 {
    margin-bottom: 12px;
}

.insight-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.cta-break {
    padding: 80px 0;
    background: var(--color-primary);
}

.cta-break-content {
    text-align: center;
}

.cta-break h3 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-break p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.trust-section {
    padding: 80px 0;
}

.trust-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.trust-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: var(--shadow-sm);
}

.testimonial-featured {
    flex: 2;
    max-width: 600px;
    background: var(--color-primary);
}

.testimonial-featured .testimonial-content p,
.testimonial-featured .author-info strong,
.testimonial-featured .author-info span {
    color: #fff;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    color: var(--color-text);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.benefits-section {
    padding: 100px 0;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.benefit-large {
    padding: 48px 32px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: none;
}

.benefit-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    min-width: 48px;
}

.benefit-content h4 {
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--color-text-light);
}

.reveal-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.reveal-header {
    text-align: center;
    margin-bottom: 60px;
}

.reveal-header h2 {
    margin-bottom: 12px;
}

.reveal-header p {
    color: var(--color-text-light);
}

.pricing-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}

.pricing-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    min-height: 48px;
}

.pricing-body {
    margin-top: 24px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.currency {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.cta-card {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-card:hover {
    background: var(--color-primary-dark);
}

.urgency-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.urgency-content {
    text-align: center;
}

.urgency-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.urgency-content > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.urgency-calc {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.calc-item {
    text-align: center;
}

.calc-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.calc-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.urgency-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-style: italic;
}

.form-section {
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 16px;
}

.form-info > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.form-guarantees {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
}

.guarantee-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-form {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cta-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-submit:hover {
    background: var(--color-accent-dark);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .form-wrapper {
        flex-direction: column;
    }

    .form-info, .contact-form {
        width: 100%;
    }
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    flex: 1;
    min-width: 160px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-minimal {
    padding: 40px 0;
}

.footer-minimal .footer-bottom {
    padding-top: 0;
    border-top: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn {
    display: block;
    background: var(--color-accent);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-content a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--color-accent);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--color-accent-dark);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.page-hero-content h1 {
    color: #fff;
    margin-bottom: 16px;
}

.page-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
}

.page-hero-legal {
    padding: 140px 0 60px;
}

.about-intro {
    padding: 80px 0;
}

.about-intro-content p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-intro-content .lead-text {
    color: var(--color-text);
    font-size: 1.3rem;
    line-height: 1.7;
}

.about-mission {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.mission-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-card {
    background: var(--color-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.mission-card h3 {
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--color-text-light);
}

.about-numbers {
    padding: 80px 0;
}

.about-numbers h2 {
    text-align: center;
    margin-bottom: 48px;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
}

.number-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.number-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.about-timeline {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.about-timeline h2 {
    text-align: center;
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-bg-alt);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.about-team {
    padding: 80px 0;
}

.team-header {
    text-align: center;
    margin-bottom: 48px;
}

.team-header h2 {
    margin-bottom: 12px;
}

.team-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-stat {
    text-align: center;
}

.team-stat .stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.team-stat .stat-label {
    color: var(--color-text-light);
}

.about-cta {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.about-cta-content {
    text-align: center;
}

.about-cta-content h2 {
    margin-bottom: 12px;
}

.about-cta-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.services-intro {
    padding: 60px 0;
    text-align: center;
}

.services-detailed {
    padding: 40px 0 80px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block-reverse {
    flex-direction: row-reverse;
}

.service-block-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-block-content h2 {
    margin-bottom: 16px;
}

.service-block-content > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.service-price-block {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: inline-block;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 8px;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.cta-service {
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-service:hover {
    background: var(--color-primary-dark);
}

.service-block-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .service-block,
    .service-block-reverse {
        flex-direction: column;
    }

    .service-block-image img {
        height: 280px;
    }
}

.services-comparison {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.services-comparison h2 {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--color-primary);
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--color-text-muted);
}

.services-process {
    padding: 80px 0;
}

.services-process h2 {
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.process-step h4 {
    margin-bottom: 8px;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.services-cta {
    padding: 80px 0;
    background: var(--color-primary);
}

.services-cta-content {
    text-align: center;
}

.services-cta-content h2 {
    color: #fff;
    margin-bottom: 12px;
}

.services-cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-card-content h4 {
    margin-bottom: 8px;
}

.contact-card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-additional h3 {
    margin-bottom: 12px;
}

.contact-additional p {
    color: var(--color-text-light);
}

.contact-map-section {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay svg {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.map-overlay p {
    color: var(--color-text);
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
    }
}

.contact-departments {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.contact-departments h2 {
    text-align: center;
    margin-bottom: 40px;
}

.departments-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.department-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.department-card h4 {
    margin-bottom: 8px;
}

.department-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.department-card a {
    font-weight: 500;
}

.contact-faq {
    padding: 80px 0;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-light);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.thanks-container h1 {
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-service {
    display: inline-block;
    background: var(--color-bg-alt);
    padding: 16px 32px;
    border-radius: var(--radius-md);
}

.thanks-service .label {
    color: var(--color-text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}

.thanks-service .value {
    font-weight: 600;
    color: var(--color-primary);
}

.thanks-info {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.thanks-info h3 {
    margin-bottom: 24px;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.thanks-step {
    display: flex;
    gap: 20px;
}

.thanks-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 4px;
}

.step-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.thanks-contact {
    color: var(--color-text-light);
}

.thanks-contact a {
    font-weight: 600;
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-article h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.legal-article p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.legal-article ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-article li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookies-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.cookies-table td {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .cta-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .problem-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: none;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: none;
    }

    .pricing-featured {
        transform: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .contact-form {
        padding: 24px;
    }
}
