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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-links a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.hero-left,
.hero-right {
    flex: 1;
    min-height: 500px;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.5;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* Intro Section */
.intro-section {
    padding: 100px 20px;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.intro-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #444;
}

/* Approach Split */
.approach-split {
    display: flex;
    min-height: 600px;
}

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

.approach-right {
    overflow: hidden;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #0066cc;
    color: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.approach-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #4da6ff;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #4da6ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Problem Amplify */
.problem-amplify {
    padding: 100px 20px;
    background: #f8f9fa;
}

.problem-amplify h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.warning-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.warning-card {
    padding: 40px;
    background: #ffffff;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.warning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.warning-card p {
    color: #555;
    font-size: 1.1rem;
}

/* Insight Split */
.insight-split {
    display: flex;
    min-height: 600px;
}

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

.insight-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.insight-right {
    overflow: hidden;
}

.insight-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #0066cc;
}

/* Services Preview */
.services-preview {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #555;
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.cta-primary,
.cta-secondary,
.btn-submit,
.btn-select-service {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary,
.btn-submit {
    background: #0066cc;
    color: #ffffff;
}

.cta-primary:hover,
.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.cta-secondary,
.btn-secondary {
    background: #ffffff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.btn-select-service {
    width: 100%;
    background: #f8f9fa;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-select-service:hover {
    background: #0066cc;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.btn-link {
    color: #0066cc;
    text-decoration: underline;
    margin-left: 20px;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: #ff6b6b;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 107, 0.5);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4da6ff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 20px;
    background: #ffffff;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    min-height: 500px;
    gap: 0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    overflow: hidden;
}

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

.service-detail-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.service-detail-right p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.7;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.service-benefits li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* About Page */
.about-intro-split {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

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

.about-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.about-right {
    overflow: hidden;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Approach Detail */
.approach-detail {
    padding: 100px 20px;
    background: #ffffff;
}

.approach-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0066cc;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.approach-step p {
    color: #555;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.why-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.why-item p {
    color: #555;
    line-height: 1.6;
}

/* Contact Page */
.contact-split {
    display: flex;
    min-height: calc(100vh - 80px);
}

.contact-info-side,
.contact-form-side {
    flex: 1;
}

.contact-info-side {
    background: #0066cc;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4da6ff;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-detail a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-form-side {
    background: #f8f9fa;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-form-content {
    width: 100%;
    max-width: 600px;
}

.contact-form-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* Thanks Page */
.thanks-section {
    padding: 150px 20px 100px;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #4da6ff;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 150px 20px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-updated {
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .approach-split,
    .insight-split,
    .about-intro-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-split {
        flex-direction: column !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-left,
    .approach-left,
    .insight-left,
    .about-left {
        padding: 50px 30px;
    }

    .service-detail-right {
        padding: 40px 30px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .approach-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .service-price,
    .service-price-large {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 40px 20px;
    }
}
