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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

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

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-visual-dominant {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}

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

.hero-headline {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.story-intro {
    padding: 80px 20px;
    background: var(--bg-light);
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.emphasis-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 28px 0;
}

.problem-amplification {
    padding: 80px 20px;
    background: var(--bg-white);
}

.problem-amplification h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

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

.problem-card {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.problem-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.insight-reveal {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
}

.split-content {
    flex: 1 1 500px;
}

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

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.benefit-list {
    list-style: none;
    margin: 28px 0;
}

.benefit-list li {
    font-size: 17px;
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-dark);
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin-top: 16px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.2s;
}

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

.split-image {
    flex: 1 1 400px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.social-proof {
    padding: 80px 20px;
    background: var(--bg-white);
}

.social-proof h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.testimonial {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-style: normal;
}

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

.testimonial cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.how-it-works {
    padding: 80px 20px;
    background: var(--bg-light);
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

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

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

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

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

.step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-color);
    flex: 0 0 auto;
}

.feature-showcase {
    padding: 80px 20px;
    background: var(--bg-white);
}

.feature-large {
    position: relative;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-large img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 32px;
}

.feature-overlay h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.feature-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

.feature-small {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    flex: 1 1 280px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-medium);
}

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

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.comparison-column {
    flex: 1 1 350px;
    max-width: 450px;
    padding: 32px;
    border-radius: 8px;
}

.comparison-column.old {
    background: #fee2e2;
    border: 2px solid #fca5a5;
}

.comparison-column.new {
    background: #d1fae5;
    border: 2px solid var(--secondary-color);
}

.comparison-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

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

.comparison-column ul li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.comparison-column.old ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.comparison-column.new ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.trust-builder {
    padding: 80px 20px;
    background: var(--bg-white);
}

.trust-builder h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
}

.trust-stat {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.5;
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

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

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

.urgency-calc {
    font-size: 24px;
    margin: 28px 0;
    color: var(--text-dark);
}

.highlight-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-red);
}

.cta-urgency {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 24px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-urgency:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.services-pricing {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-pricing h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 64px;
}

.pricing-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s;
}

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

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

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.price {
    text-align: center;
    margin: 28px 0;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-currency {
    font-size: 24px;
    color: var(--text-medium);
    margin-left: 4px;
}

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

.pricing-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-medium);
}

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

.select-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 16px;
}

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

.additional-services {
    margin-top: 64px;
}

.additional-services h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.addon-item {
    background: white;
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.addon-info {
    flex: 1 1 400px;
}

.addon-info h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.addon-info p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 8px;
}

.addon-info ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-light);
}

.addon-info ul li {
    padding: 4px 0 4px 20px;
    position: relative;
}

.addon-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.addon-price {
    flex: 0 0 200px;
    text-align: center;
}

.addon-price .price-amount {
    font-size: 36px;
}

.addon-price .price-currency {
    font-size: 18px;
}

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

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

.guarantee-box {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.guarantee-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.guarantee-subtext {
    font-size: 16px;
    font-style: italic;
    opacity: 0.9;
}

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

.final-cta-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.final-cta-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1 1 280px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 16px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

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

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

.sticky-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.sticky-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.sticky-btn:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 220px;
}

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

.footer-column p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

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

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

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

.about-story,
.mission-section,
.values-section,
.achievements-section,
.team-section {
    padding: 80px 20px;
}

.about-story {
    background: var(--bg-white);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.mission-section {
    background: var(--bg-light);
}

.values-section {
    background: var(--bg-white);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 260px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.achievements-section {
    background: var(--bg-light);
}

.achievements-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.achievement-item {
    display: flex;
    gap: 24px;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 8px;
}

.achievement-year {
    flex: 0 0 80px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.achievement-desc {
    flex: 1;
    font-size: 16px;
    color: var(--text-medium);
}

.team-section {
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    flex: 1 1 180px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-medium);
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

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

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

.services-main {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-main h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.service-detail {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    margin-bottom: 32px;
    position: relative;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 24px 0 16px;
    color: var(--text-dark);
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-ideal {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-size: 15px;
    color: var(--text-medium);
}

.additional-services-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.additional-services-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.addon-services {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.addon-detail {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.addon-header h3 {
    font-size: 26px;
    color: var(--text-dark);
}

.addon-price-tag {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.addon-detail ul {
    list-style: none;
    margin: 20px 0;
}

.addon-detail ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-medium);
}

.addon-detail ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.comparison-packages h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.packages-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.packages-table thead {
    background: var(--primary-color);
    color: white;
}

.packages-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.packages-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

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

.packages-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.why-choose-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.why-choose-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.reasons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.reason-item {
    flex: 1 1 260px;
    background: white;
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.reason-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.contact-info-card {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.contact-info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

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

.contact-details {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.company-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.faq-item {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

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

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

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

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.thanks-details {
    margin: 32px 0;
}

.selected-service-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.selected-service-box h3 {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.next-steps {
    margin: 56px 0;
    text-align: left;
}

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

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

.step-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background: white;
    padding: 24px;
    border-radius: 8px;
}

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

.step-content {
    flex: 1;
}

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

.step-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

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

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

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

.btn-secondary:hover {
    background: var(--bg-light);
}

.thanks-info-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

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

.thanks-info-box p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.email-highlight {
    font-size: 20px;
    font-weight: 600;
}

.email-highlight a {
    color: var(--primary-color);
    text-decoration: none;
}

.additional-resources {
    padding: 80px 20px;
    background: var(--bg-white);
}

.additional-resources h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.resource-card {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.resource-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

.legal-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

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

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

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    box-shadow: var(--shadow-sm);
}

.cookies-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

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

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
        gap: 16px;
    }

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

    .hero-headline {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .problem-grid,
    .trust-elements,
    .values-grid {
        flex-direction: column;
    }

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

    .step-arrow {
        transform: rotate(90deg);
    }

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

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

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

    .packages-table th,
    .packages-table td {
        padding: 10px 8px;
    }

    .sticky-content {
        justify-content: center;
        text-align: center;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

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

    .price-amount {
        font-size: 42px;
    }

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