/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --error-color: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta .btn-primary {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-white);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-split p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-hero-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.overlay-card {
    background: white;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.overlay-highlight {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.overlay-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    gap: 32px;
}

.trust-item {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: stretch;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-right h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-right p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-highlight {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    margin: 32px 0;
}

.insight-highlight p {
    margin: 0;
    font-size: 16px;
}

.btn-text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
}

.btn-text-link:hover {
    color: var(--primary-dark);
}

/* Problem Insight Section */
.problem-insight {
    background: var(--bg-white);
}

/* Benefits Section */
.benefits-reveal {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.lead {
    font-size: 20px;
    color: var(--text-medium);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Testimonials Flow */
.testimonials-flow {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card.featured::before {
    content: "Polecane";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-desc {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 32px;
    flex-grow: 1;
}

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

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-service {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
    font-size: 17px;
    color: var(--text-medium);
}

.services-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

.services-cta a:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-medium);
}

.main-form {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.form-hint {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    flex: 1;
    font-size: 14px;
    color: var(--text-medium);
}

.form-checkbox a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.urgency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.urgency-cta {
    display: flex;
    justify-content: center;
}

.btn-urgency {
    padding: 18px 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Final Reassurance */
.final-reassurance {
    background: var(--bg-white);
}

.reassurance-list {
    margin-top: 32px;
}

.reassurance-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.reassurance-item svg {
    flex-shrink: 0;
    color: var(--success-color);
}

.reassurance-item span {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

.footer-column a {
    color: white;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    flex: 1;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-sticky {
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Specific */
.about-story {
    padding: 80px 0;
    background: var(--bg-white);
}

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

.numbers-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.numbers-grid {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.number-card {
    flex: 1;
    text-align: center;
}

.number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
}

.number-label {
    font-size: 16px;
    opacity: 0.9;
}

.mission-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.mission-cta {
    margin-top: 32px;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    background: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Services Page */
.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

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

.service-detail-card.premium {
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-detail-card.premium .service-badge {
    background: var(--accent-color);
}

.service-detail-header {
    background: var(--bg-light);
    padding: 40px;
}

.service-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.service-detail-title h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-tagline {
    font-size: 18px;
    color: var(--text-medium);
}

.service-detail-content {
    padding: 40px;
}

.service-detail-section {
    margin-bottom: 32px;
}

.service-detail-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-detail-section ul {
    list-style: none;
}

.service-detail-section ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.service-detail-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-service-select {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-service-select:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.comparison-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 48px;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--bg-light);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 24px;
    text-align: center;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.contact-info-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info-note h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-info-note p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.form-intro-text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-badges {
    padding: 60px 0;
    background: var(--bg-white);
}

.badges-grid {
    display: flex;
    gap: 32px;
}

.badge-item {
    flex: 1;
    text-align: center;
}

.badge-item svg {
    color: var(--primary-color);
    margin: 0 auto 16px;
}

.badge-item p {
    color: var(--text-medium);
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.thanks-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    color: var(--success-color);
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

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

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

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

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 32px;
}

.thanks-info-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-info-box ul {
    list-style: disc;
    padding-left: 24px;
}

.thanks-info-box li {
    color: var(--text-medium);
    margin-bottom: 8px;
}

.thanks-info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.thanks-contact-reminder {
    font-size: 14px;
    color: var(--text-light);
}

.thanks-contact-reminder a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-reassurance {
    padding: 60px 0;
    background: var(--bg-white);
}

.reassurance-grid {
    display: flex;
    gap: 32px;
}

.reassurance-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}

.reassurance-card svg {
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.reassurance-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reassurance-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: var(--bg-white);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: 60px;
    text-align: center;
}

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

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

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

.cookies-table td {
    color: var(--text-medium);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-visual {
        min-height: 400px;
    }

    .trust-grid,
    .benefits-grid,
    .team-grid,
    .numbers-grid {
        flex-direction: column;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 400px;
    }

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

    .badges-grid,
    .reassurance-grid {
        flex-wrap: wrap;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split h1 {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .split-right,
    .hero-content {
        padding: 40px 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .split-right h2 {
        font-size: 28px;
    }

    .services-split {
        flex-direction: column;
    }

    .main-form,
    .contact-form {
        padding: 32px 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .footer-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 16px 20px;
    }

    .hero-split h1 {
        font-size: 28px;
    }

    .urgency-content h2 {
        font-size: 28px;
    }

    .service-detail-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-price {
        margin-top: 12px;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 12px 8px;
    }
}