:root {
    --color-primary: #1a3a5c;
    --color-secondary: #e85d04;
    --color-accent: #0077b6;
    --color-dark: #0d1b2a;
    --color-light: #f8f9fa;
    --color-muted: #6c757d;
    --color-white: #ffffff;
    --color-bg-alt: #e9ecef;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-white);
    font-size: 16px;
}

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

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

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

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

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

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

/* Navigation */
.nav-header {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo span {
    color: var(--color-secondary);
}

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

.nav-menu a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d45303;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: #0d2840;
    color: var(--color-white);
}

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, #dbe9f4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.hero h1 span {
    color: var(--color-secondary);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

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

/* Sections */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Problem Section */
.problem-section {
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
}

.problem-section h2 {
    color: var(--color-white);
}

.problem-grid {
    display: flex;
    gap: 40px;
}

.problem-text {
    flex: 1;
}

.problem-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 24px;
}

.problem-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--color-secondary);
    padding: 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.problem-card h4 {
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.problem-card p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
    background: var(--color-light);
}

.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solution-intro p {
    font-size: 1.2rem;
    color: var(--color-muted);
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.solution-feature {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), #ff8c42);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.solution-feature h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.solution-feature p {
    color: var(--color-muted);
}

/* Benefits Section */
.benefits-section {
    background: var(--color-white);
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-image {
    flex: 1;
    position: relative;
}

.benefits-image img {
    border-radius: var(--radius-lg);
}

.benefits-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.benefits-content {
    flex: 1;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 6px;
    color: var(--color-dark);
}

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

/* Services/Pricing Section */
.services-section {
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.service-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-image {
    height: 180px;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-body p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

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

.service-card .btn {
    width: 100%;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.testimonials-section h2 {
    color: var(--color-white);
}

.testimonials-section .section-label {
    color: var(--color-secondary);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: var(--color-secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2840 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.inline-cta h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.inline-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    background: var(--color-white);
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-main {
    flex: 2;
}

.story-main p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.story-main p:first-of-type::first-letter {
    font-size: 4rem;
    float: left;
    margin-right: 15px;
    line-height: 0.8;
    color: var(--color-secondary);
    font-weight: 700;
}

.story-sidebar {
    flex: 1;
    background: var(--color-light);
    padding: 30px;
    border-radius: var(--radius-md);
    position: sticky;
    top: 100px;
}

.story-sidebar h4 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.story-sidebar ul {
    list-style: none;
}

.story-sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 0.95rem;
    color: var(--color-muted);
}

.story-sidebar li:last-child {
    border-bottom: none;
}

/* Process Section */
.process-section {
    background: var(--color-light);
}

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

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

.process-step {
    position: relative;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -52px;
    top: 30px;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--color-muted);
}

/* FAQ Section */
.faq-section {
    background: var(--color-white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0,0,0,0.03);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, var(--color-light) 0%, #dbe9f4 100%);
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    color: var(--color-muted);
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

.contact-text h4 {
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-text span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 16px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--color-dark);
}

.sticky-cta-text span {
    color: var(--color-secondary);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
}

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

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--color-secondary);
}

.footer-brand p {
    opacity: 0.7;
    max-width: 320px;
    line-height: 1.7;
}

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

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

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

.footer-legal a:hover {
    color: var(--color-secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--color-secondary);
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.cookie-accept {
    background: var(--color-secondary);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: #d45303;
}

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

.cookie-reject:hover {
    border-color: var(--color-white);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-light) 0%, #dbe9f4 100%);
    padding: 40px 20px;
}

.thanks-card {
    background: var(--color-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-secondary), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-white);
}

.thanks-card h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--color-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
}

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

.thanks-service strong {
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* About Page */
.about-hero {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 160px 0 100px;
    text-align: center;
}

.about-hero h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--color-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
}

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

.team-section {
    background: var(--color-light);
    padding: 100px 0;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.team-image {
    height: 200px;
    background: var(--color-primary);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 4px;
}

.team-info span {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 160px 0 100px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    color: var(--color-muted);
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--color-muted);
}

.legal-page li {
    margin-bottom: 8px;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2840 100%);
    color: var(--color-white);
    padding: 160px 0 100px;
    text-align: center;
}

.services-hero h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
    padding: 100px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--color-bg-alt);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

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

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

.service-detail-content p {
    color: var(--color-muted);
    margin-bottom: 24px;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 16px;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
}

.urgency-banner strong {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .problem-grid {
        flex-direction: column;
    }

    .benefits-wrapper {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .story-content {
        flex-direction: column;
    }

    .story-sidebar {
        position: static;
    }

    .about-grid {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-soft);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-bg-alt);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .solution-feature {
        flex: 1 1 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-inner {
        flex-direction: column;
        gap: 12px;
    }

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

    .thanks-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .hero {
        padding-top: 100px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
