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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #7c3aed;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --urgent-color: #dc2626;
    --warning-color: #f59e0b;
}

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);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

.hero-overlay {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-text-overlay {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    z-index: 1;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.narrow-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.inline-cta-block {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.inline-cta-block p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.problem-amplify {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.risk-list {
    margin-top: 2rem;
    list-style: none;
}

.risk-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.risk-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.split-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.insight-reveal {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: white;
}

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

.centered-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.centered-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-sticky-trigger {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--warning-color);
}

.cta-urgent {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-urgent:hover {
    transform: scale(1.05);
}

.scenario-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.scenario-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.scenario-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.scenario-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.trust-build {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

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

.author {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-layout h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefit-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.urgency-block {
    padding: 3rem 2rem;
    background: var(--urgent-color);
    color: white;
    text-align: center;
}

.urgency-block p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.btn-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--urgent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-2px);
}

.services-pricing {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.pricing-reveal {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card ul li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.form-notice {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-notice.active {
    display: block;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.final-reassurance {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.reassurance-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-primary {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

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

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

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

.selected-service-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

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

.btn-primary,
.btn-large {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.urgent-notice {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.urgent-notice h3 {
    margin-bottom: 1rem;
    color: var(--urgent-color);
}

.urgent-notice a {
    color: var(--primary-color);
    font-weight: 700;
}

.services-overview {
    padding: 4rem 2rem;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
}

.service-detail-card.highlighted {
    border-color: var(--primary-color);
    border-width: 3px;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

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

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

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

.service-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.service-comparison {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.service-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--text-dark);
    color: white;
    font-weight: 700;
}

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

.cta-services {
    padding: 4rem 2rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.about-story {
    padding: 4rem 2rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-block,
.mission-block {
    margin-bottom: 3rem;
}

.story-block h2,
.mission-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-block p,
.mission-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-values {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.expertise-section {
    padding: 4rem 2rem;
}

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

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.expertise-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.how-we-work {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.work-container {
    max-width: 1000px;
    margin: 0 auto;
}

.work-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.work-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.work-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.work-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-about {
    padding: 4rem 2rem;
}

.testimonials-about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
}

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

.cta-about {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--border-color);
}

.contact-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.cta-box-contact {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.cta-box-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.faq-contact {
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.faq-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page {
    padding: 8rem 2rem 4rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background: var(--text-dark);
    color: white;
    font-weight: 700;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-cards {
        flex-direction: column;
    }

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

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

    .benefit-blocks {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .narrow-content h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}