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

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-secondary: #0f172a;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-background: #ffffff;
    --color-background-alt: #f8fafc;
    --color-border: #e2e8f0;
    --color-accent: #3b82f6;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition-speed: 0.3s;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-cookie-accept {
    background: var(--color-primary);
    color: #ffffff;
}

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

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: box-shadow var(--transition-speed);
}

.main-nav.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed);
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    transition: all var(--transition-speed);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 3rem 2rem;
    background: var(--color-background-alt);
}

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

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-right {
    min-height: 400px;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
}

.cta-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.cta-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

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

.cta-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.cta-primary-large {
    background: var(--color-primary);
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-primary-large:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.cta-text {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-speed);
}

.cta-text:hover {
    color: var(--color-primary-dark);
    transform: translateX(5px);
}

.split-reverse,
.split-standard {
    display: flex;
    flex-direction: column;
}

.split-image,
.split-content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.split-image.visible,
.split-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.split-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    min-height: 400px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--color-background);
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    padding: 2rem;
    background: var(--color-background-alt);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.value-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    padding: 2rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.service-card h4 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    background: var(--color-secondary);
    color: #ffffff;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-left {
    background: var(--color-secondary);
}

.testimonial-right {
    background: #1e293b;
}

blockquote {
    max-width: 600px;
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
}

blockquote p {
    margin-bottom: 1.5rem;
}

cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.cta-split {
    display: flex;
    flex-direction: column;
}

.cta-content,
.cta-form {
    flex: 1;
    padding: 4rem 2rem;
}

.cta-content {
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-form {
    background: var(--color-background-alt);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.industry-list {
    list-style: none;
    margin-left: 0;
}

.industry-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.industry-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.final-cta {
    padding: 5rem 2rem;
    background: var(--color-background-alt);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.site-footer {
    background: var(--color-secondary);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-left p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-right {
    flex: 1;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    transition: color var(--transition-speed);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}

.services-intro {
    padding: 4rem 2rem;
    background: var(--color-background);
    text-align: center;
}

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

.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

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

.service-detail-split .service-content {
    padding: 4rem 2rem;
    background: var(--color-background-alt);
}

.service-detail-split .service-image {
    min-height: 400px;
}

.service-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.service-deliverables {
    margin: 1.5rem 0;
}

.service-deliverables li {
    margin-bottom: 0.75rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.price-label {
    font-weight: 600;
    color: var(--color-text);
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-timeline {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.service-selection-cta {
    padding: 5rem 2rem;
    background: var(--color-primary);
    text-align: center;
}

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

.selection-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.selection-content p {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.how-we-price {
    padding: 4rem 2rem;
    background: var(--color-background);
}

.pricing-philosophy {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.pricing-left,
.pricing-right {
    flex: 1;
    padding: 2rem;
    background: var(--color-background-alt);
    border-radius: 8px;
}

.contact-hero {
    padding: 5rem 2rem;
    background: var(--color-background-alt);
    text-align: center;
}

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

.contact-split {
    display: flex;
    flex-direction: column;
}

.contact-info,
.contact-details {
    flex: 1;
}

.contact-info {
    padding: 4rem 2rem;
    background: var(--color-background);
}

.contact-details {
    min-height: 500px;
    overflow: hidden;
}

.contact-details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.info-block p {
    color: var(--color-text);
    line-height: 1.8;
}

.info-block a {
    color: var(--color-primary);
}

.location-note {
    padding: 4rem 2rem;
    background: var(--color-background-alt);
}

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

.thanks-hero {
    padding: 5rem 2rem;
    background: var(--color-background-alt);
    text-align: center;
}

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

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

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

.service-confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.service-confirmation p {
    margin: 0;
    font-size: 1.05rem;
}

.next-steps-split {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 2rem;
}

.next-step-item {
    flex: 1;
    padding: 2rem;
    background: var(--color-background-alt);
    border-radius: 8px;
}

.thanks-cta {
    padding: 4rem 2rem;
    background: var(--color-background);
    text-align: center;
}

.thanks-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.philosophy-split {
    display: flex;
    flex-direction: column;
}

.philosophy-content,
.philosophy-image {
    flex: 1;
}

.philosophy-content {
    padding: 4rem 2rem;
    background: var(--color-background);
}

.philosophy-image {
    min-height: 500px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.belief-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.approach-split {
    display: flex;
    flex-direction: column;
    background: var(--color-background-alt);
}

.approach-left,
.approach-right {
    flex: 1;
    padding: 4rem 2rem;
}

.approach-left {
    background: var(--color-background-alt);
}

.approach-right {
    background: var(--color-background);
}

.approach-steps {
    max-width: 600px;
}

.step {
    margin-bottom: 2.5rem;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.step h4 {
    margin-bottom: 0.75rem;
}

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

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--color-background-alt);
    text-align: center;
}

.cta-about .cta-content {
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
    color: var(--color-text);
}

.cta-about .cta-content h2 {
    color: var(--color-secondary);
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--color-background);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.updated-date {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

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

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background: var(--color-background-alt);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--color-secondary);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split,
    .page-hero-split {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        width: 50%;
    }

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

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

    .split-standard {
        flex-direction: row;
    }

    .split-image,
    .split-content {
        width: 50%;
    }

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

    .service-preview {
        flex-direction: row;
    }

    .testimonial-split {
        flex-direction: row;
    }

    .cta-split {
        flex-direction: row;
    }

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

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

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

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

    .service-detail-split .service-content,
    .service-detail-split .service-image {
        width: 50%;
    }

    .pricing-split {
        flex-direction: row;
    }

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

    .contact-info,
    .contact-details {
        width: 50%;
    }

    .next-steps-split {
        flex-direction: row;
    }

    .philosophy-split {
        flex-direction: row;
    }

    .philosophy-content,
    .philosophy-image {
        width: 50%;
    }

    .approach-split {
        flex-direction: row;
    }

    .approach-left,
    .approach-right {
        width: 50%;
    }

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

    .value-card {
        width: calc(50% - 1rem);
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

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

@media (max-width: 767px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-background);
        padding: 2rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}
