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

:root {
    --primary-color: #00ff88;
    --secondary-color: #0a0e27;
    --accent-color: #ff3366;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --text-gray: #6b7280;
    --bg-light: #ffffff;
    --bg-dark: #0f1419;
    --bg-section: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    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 {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #00dd77;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--text-dark);
}

.hero-immersive {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-centered {
    text-align: center;
    color: var(--text-light);
    z-index: 3;
    padding: 2rem;
    max-width: 900px;
}

.hero-headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

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

.cta-primary:hover {
    background: #00dd77;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

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

.narrow-container {
    max-width: 750px;
    margin: 0 auto;
}

.story-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.large-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.story-intro p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.problem-amplification {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

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

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.content-right img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.insight-reveal {
    padding: 5rem 1.5rem;
    background: var(--secondary-color);
    color: var(--text-light);
}

.insight-reveal h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
}

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

.centered-heading {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.social-proof {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-box cite {
    font-style: normal;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefits-deep-dive {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

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

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.benefit-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.urgency-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d91f52 100%);
    color: var(--text-light);
}

.urgency-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.urgency-text {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 2rem;
}

.stock-count {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.centered {
    text-align: center;
}

.cta-urgent {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-light);
    color: var(--accent-color);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-urgent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services-pricing {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.intro-pricing {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-card img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.card-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.5;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-detail {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.btn-select,
.btn-select-link {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-select:hover,
.btn-select-link:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-mid-page {
    padding: 4rem 1.5rem;
    background: var(--secondary-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.cta-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.comparison-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.comparison-row.header {
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 700;
}

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

.comparison-cell.highlight {
    background: rgba(0, 255, 136, 0.05);
    font-weight: 600;
    color: var(--text-dark);
}

.final-push {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.order-form-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

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

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

.form-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

.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.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.sticky-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.sticky-btn {
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #00dd77;
    transform: translateY(-2px);
}

.main-footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.thanks-page {
    padding: 5rem 1.5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.order-details {
    margin-bottom: 3rem;
}

.selected-service {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.selected-service h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.btn-primary:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.about-hero {
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1e3a 100%);
    color: var(--text-light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-story {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.about-story h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.story-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-mission {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.mission-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mission-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.mission-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-values {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.about-team {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.team-image {
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-process {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

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

.about-cta {
    padding: 4rem 1.5rem;
    background: var(--secondary-color);
}

.services-hero {
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1e3a 100%);
    color: var(--text-light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
}

.services-intro {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.services-features {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.universal-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-block {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.feature-block img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.feature-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-block p {
    color: var(--text-gray);
    line-height: 1.6;
}

.comparison-guide {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.guide-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.guide-item {
    padding: 2rem;
    background: var(--bg-section);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.guide-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.guide-item p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.guide-item strong {
    color: var(--primary-color);
}

.services-guarantee {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.services-cta {
    padding: 4rem 1.5rem;
    background: var(--secondary-color);
}

.contact-hero {
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1e3a 100%);
    color: var(--text-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-main {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem;
    color: var(--text-light);
}

.location-details {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 12px;
}

.location-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.contact-faq {
    padding: 5rem 1.5rem;
    background: var(--bg-section);
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.contact-cta {
    padding: 4rem 1.5rem;
    background: var(--secondary-color);
}

.legal-page {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
    min-height: 70vh;
}

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

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

.last-updated {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

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

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

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

.cookie-table thead {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.cookie-table tbody tr:hover {
    background: var(--bg-section);
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

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

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .testimonials-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 1.25rem);
    }

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

    .comparison-cell {
        flex: 1;
    }

    .sticky-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .benefit-row.reverse {
        flex-direction: row-reverse;
    }

    .benefit-row {
        flex-direction: row;
        align-items: center;
    }

    .mission-split {
        flex-direction: row;
        align-items: center;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .universal-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-block {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        flex: 1;
    }

    .testimonials-stack {
        flex-wrap: nowrap;
    }

    .testimonial-box {
        flex: 1;
    }

    .pricing-cards {
        flex-wrap: nowrap;
    }

    .pricing-card {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-item {
        flex: 1;
    }

    .universal-features {
        flex-wrap: nowrap;
    }

    .feature-block {
        flex: 1;
    }
}
