:root {
    --color-primary: #1a365d;
    --color-secondary: #2c5282;
    --color-accent: #ed8936;
    --color-accent-dark: #dd6b20;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

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

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

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

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

.hero-dramatic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2b6cb0 100%);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

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

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

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

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

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

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

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

.problem-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-intro h2 {
    margin-bottom: 1.5rem;
}

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

.problem-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

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

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

.story-section {
    padding: 6rem 0;
}

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

.story-image {
    flex: 0 0 40%;
}

.story-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.story-content {
    flex: 1;
}

.story-label {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-content h3 {
    margin-bottom: 1.5rem;
}

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

.story-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0 1rem;
}

.story-author {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

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

.insight-header {
    text-align: center;
    margin-bottom: 4rem;
}

.insight-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: var(--transition);
}

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

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

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

.insight-card h4 {
    margin-bottom: 1rem;
}

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

.trust-section {
    position: relative;
    padding: 6rem 0;
    background: var(--color-primary);
    color: #fff;
    overflow: hidden;
}

.trust-background {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover;
    opacity: 0.1;
}

.trust-section .container {
    position: relative;
}

.trust-content {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.trust-lead {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.trust-point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
}

.trust-detail h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.trust-detail p {
    opacity: 0.85;
}

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

.testimonials-inline {
    padding: 6rem 0;
}

.testimonial-featured {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.testimonial-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

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

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-small {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.testimonial-small p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.testimonial-small span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.services-reveal {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.services-intro p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 1rem auto 0;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-item {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item.featured {
    border: 2px solid var(--color-accent);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.25rem;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

.service-body {
    flex: 1;
}

.service-body p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.benefits-section {
    padding: 6rem 0;
}

.benefits-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: center;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

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

.benefits-image {
    flex: 0 0 40%;
}

.benefits-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.urgency-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

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

.urgency-badge {
    display: inline-block;
    background: var(--color-accent-dark);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.urgency-content h2 {
    margin-bottom: 1rem;
}

.urgency-content > p {
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-timeline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.timeline-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.timeline-status.expired {
    background: #fee2e2;
    color: #dc2626;
}

.timeline-status.warning {
    background: #fef3c7;
    color: #d97706;
}

.timeline-status.active {
    background: #d1fae5;
    color: #059669;
}

.process-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header p {
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    max-width: 220px;
}

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

.process-step h4 {
    margin-bottom: 0.5rem;
}

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

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--color-border);
}

.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
}

.contact-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.contact-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

.final-cta {
    padding: 6rem 0;
    background: var(--color-primary);
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 0 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.sticky-cta-btn {
    display: block;
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cookie-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .story-wrapper,
    .benefits-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

    .story-image,
    .benefits-image {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-connector {
        display: none;
    }

    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 1rem;
    }

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

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

    .trust-points {
        gap: 1.5rem;
    }

    .trust-point {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
    }

    .timeline-item {
        flex: 1;
        min-width: 100px;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .footer-links {
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta-btn {
        display: block;
        text-align: center;
    }
}

.page-header {
    background: var(--color-primary);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    margin: 2rem 0 1rem;
}

.page-content h3 {
    margin: 1.5rem 0 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

.page-content li {
    margin-bottom: 0.5rem;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
}

.service-full {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--color-bg-alt);
    border-radius: 16px;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
    background: #fff;
    border: 1px solid var(--color-border);
}

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

.service-full-price {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    min-width: 200px;
}

.service-full:nth-child(even) .service-full-price {
    background: var(--color-bg-alt);
}

.price-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .service-full,
    .service-full:nth-child(even) {
        flex-direction: column;
    }

    .service-full-price {
        width: 100%;
    }
}

.about-intro {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-values {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: var(--shadow-sm);
}

.value-card h4 {
    margin: 1rem 0 0.5rem;
}

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

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

.about-team {
    padding: 4rem 0;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h4 {
    margin-bottom: 0.25rem;
}

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

@media (max-width: 768px) {
    .about-intro {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 400px;
    }
}

.contact-page-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-map {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: #059669;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--color-text-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.legal-date {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 2rem;
}
