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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2563eb;
    color: #fff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Navigation */
.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    background: #2563eb;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
    color: #fff;
}

/* Hero Section - Immersive */
.hero-immersive {
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(29, 78, 216, 0.9) 100%);
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.btn-hero-primary {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #1d4ed8;
}

/* Section Story - Editorial Style */
.section-story {
    padding: 100px 20px;
    background: #fff;
}

.section-title-editorial {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.text-large {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #374151;
    font-weight: 300;
}

.section-story p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4b5563;
}

.inline-image-wrapper {
    margin: 50px 0;
}

.inline-image {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.link-inline-arrow {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    display: inline-block;
    margin-top: 20px;
}

.link-inline-arrow:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Problem Amplification - Split Layout */
.section-problem-amplification {
    padding: 100px 20px;
    background: #f9fafb;
}

.split-text {
    flex: 1.2;
    min-width: 300px;
}

.split-visual {
    flex: 0.8;
    min-width: 280px;
}

.section-title-bold {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.text-emphasis {
    font-size: 22px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 25px;
    line-height: 1.5;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4b5563;
}

.split-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.visual-stat-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

/* Insight Section */
.section-insight {
    padding: 100px 20px;
    background: #fff;
}

.section-title-centered {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.text-centered-large {
    font-size: 22px;
    text-align: center;
    margin: 0 auto 50px;
    max-width: 800px;
    color: #4b5563;
    line-height: 1.6;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background: #f9fafb;
    padding: 35px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

/* Curiosity Section - Asymmetric Layout */
.section-curiosity {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.curiosity-text {
    flex: 1.3;
    min-width: 300px;
    padding-right: 40px;
}

.curiosity-visual {
    flex: 0.7;
    min-width: 280px;
}

.section-title-italic {
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.curiosity-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #374151;
}

.list-checkmark {
    list-style: none;
    margin: 30px 0;
}

.list-checkmark li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #1f2937;
}

.list-checkmark li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.text-emphasis-dark {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 30px;
}

.asymmetric-image {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Testimonial Inline */
.section-testimonial-inline {
    padding: 80px 20px;
    background: #1f2937;
}

.testimonial-large {
    font-size: 28px;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    text-align: center;
    border-left: 5px solid #2563eb;
    padding-left: 40px;
    margin: 0;
    font-weight: 300;
}

.testimonial-large cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    color: #9ca3af;
    font-weight: 500;
}

/* Trust Building Timeline */
.section-trust-building {
    padding: 100px 20px;
    background: #fff;
}

.trust-timeline {
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.timeline-item:hover,
.timeline-item.active {
    opacity: 1;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
}

.timeline-item.active .timeline-marker {
    background: #2563eb;
    color: #fff;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #6b7280;
}

/* Social Proof */
.section-social-proof {
    padding: 100px 20px;
    background: #f9fafb;
}

.testimonials-stacked {
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 35px 40px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #6b7280;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Services Reveal */
.section-services-reveal {
    padding: 100px 20px;
    background: #fff;
}

.text-centered {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin: 20px auto 60px;
    max-width: 700px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 25px;
}

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

.price-amount {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
}

.price-period {
    font-size: 16px;
    color: #6b7280;
    display: block;
    margin-top: 5px;
}

.btn-service-select {
    width: 100%;
    padding: 16px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Urgency Section */
.section-urgency {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.urgency-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    border: 3px solid #f59e0b;
}

.urgency-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.urgency-text {
    font-size: 19px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.urgency-highlight {
    font-size: 21px;
    font-weight: 700;
    color: #dc2626;
    margin: 30px 0;
}

.btn-urgency {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #b91c1c;
    transform: scale(1.05);
    color: #fff;
}

/* Additional Services */
.section-additional-services {
    padding: 100px 20px;
    background: #f9fafb;
}

.additional-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.additional-service-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.additional-service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.additional-service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.service-price-inline {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
}

.service-price-inline .price-amount {
    font-size: 28px;
    color: #2563eb;
    display: inline;
}

.btn-service-inline {
    width: 100%;
    padding: 12px 24px;
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-inline:hover {
    background: #2563eb;
    color: #fff;
}

/* Form Section */
.section-form {
    padding: 100px 20px;
    background: #fff;
}

.contact-form {
    background: #f9fafb;
    padding: 50px 40px;
    border-radius: 16px;
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    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: #2563eb;
}

.btn-form-submit {
    width: 100%;
    padding: 18px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Final CTA */
.section-final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    text-align: center;
}

.section-title-centered-white {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.text-centered-white {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-final-cta {
    display: inline-block;
    background: #fff;
    color: #1e3a8a;
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

.footer-column ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

/* Page Hero Minimal */
.page-hero-minimal {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background: #fff;
}

.story-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-visual {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.about-mission {
    padding: 80px 20px;
    background: #f9fafb;
}

.text-large-centered {
    font-size: 22px;
    text-align: center;
    line-height: 1.7;
    color: #374151;
    margin: 0 auto 50px;
    max-width: 800px;
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 35px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.about-technology {
    padding: 80px 20px;
    background: #fff;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 35px 28px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.tech-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.tech-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.about-team {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.team-stat {
    text-align: center;
    min-width: 200px;
}

.team-stat .stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #2563eb;
    display: block;
    margin-bottom: 15px;
}

.team-stat .stat-label {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

.about-security {
    padding: 80px 20px;
    background: #fff;
}

.security-content {
    margin-top: 40px;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.security-item {
    flex: 1;
    min-width: 250px;
}

.security-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.security-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.btn-cta-large {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    color: #fff;
}

/* Services Page */
.services-main {
    padding: 80px 20px;
    background: #fff;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-detailed-card {
    background: #f9fafb;
    padding: 50px 40px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    position: relative;
}

.service-detailed-card.featured-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #2563eb;
}

.service-badge {
    display: inline-block;
    background: #6b7280;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-badge.popular {
    background: #2563eb;
}

.service-detailed-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.service-price-large {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    margin: 30px 0;
}

.service-detailed-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

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

.service-features-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.service-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.btn-service-select-large {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    display: block;
    padding: 18px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.services-specialized {
    padding: 80px 20px;
    background: #f9fafb;
}

.specialized-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.specialized-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.specialized-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.specialized-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.specialized-card > p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.specialized-card ul {
    list-style: none;
    margin: 20px 0;
}

.specialized-card li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.specialized-card li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2563eb;
    font-weight: 700;
}

.service-price-box {
    text-align: center;
    margin: 25px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-price-box .price-amount {
    font-size: 36px;
    color: #2563eb;
}

.services-comparison {
    padding: 80px 20px;
    background: #fff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: #f9fafb;
}

.comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-table th.featured-column {
    background: #eff6ff;
}

.comparison-table .price-small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-top: 5px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    color: #4b5563;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.services-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Contact Page */
.contact-main {
    padding: 80px 20px;
    background: #fff;
}

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

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

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

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.contact-item a {
    color: #2563eb;
}

.contact-map-placeholder {
    margin: 40px 0;
}

.contact-map-image {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-additional {
    margin-top: 40px;
}

.contact-additional h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.contact-faq-quick {
    margin-top: 25px;
}

.contact-faq-quick details {
    background: #f9fafb;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
}

.contact-faq-quick summary {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
}

.contact-faq-quick details p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thanks-subtitle {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
}

.thanks-content {
    padding: 80px 20px;
    background: #fff;
}

.thanks-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-timeline {
    max-width: 700px;
    margin: 0 auto 60px;
}

.thanks-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.thanks-service-info {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.thanks-service-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-service-info p {
    font-size: 18px;
    color: #2563eb;
    font-weight: 600;
}

.thanks-cta {
    text-align: center;
    margin: 50px 0;
}

.thanks-cta p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 20px;
}

.btn-thanks {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-thanks:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: #fff;
}

.thanks-additional {
    background: #f9fafb;
    padding: 35px 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.thanks-additional h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-checklist {
    list-style: none;
}

.thanks-checklist li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.thanks-checklist li:before {
    content: "□";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
    font-weight: 700;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-update {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-page strong {
    font-weight: 700;
    color: #1a1a1a;
}

.legal-back-link {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.legal-back-link a {
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

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

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

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

    .section-title-editorial,
    .section-title-bold,
    .section-title-centered {
        font-size: 32px;
    }

    .text-large {
        font-size: 20px;
    }

    .container-split,
    .container-asymmetric,
    .split-text,
    .split-visual,
    .curiosity-text,
    .curiosity-visual,
    .story-split,
    .contact-split {
        display: block;
    }

    .split-text,
    .curiosity-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .btn-sticky {
        padding: 14px 24px;
        font-size: 14px;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .page-title {
        font-size: 36px;
    }

    .thanks-title {
        font-size: 32px;
    }
}

@media (min-width: 769px) {
    .container-split,
    .container-asymmetric {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        align-items: center;
    }
}