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

:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-dark: #0f3460;
    --accent-red: #e94560;
    --text-light: #f5f5f5;
    --text-gray: #a8a8a8;
    --bg-light: #ffffff;
    --bg-off: #fafafa;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--bg-light);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.navbar {
    background: var(--primary-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

.hero-content {
    background: var(--primary-dark);
    padding: 4rem 3rem;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    background: var(--secondary-dark);
    padding: 2rem;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Buttons */
.btn-primary,
.btn-service,
.btn-submit,
.btn-cta-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-red);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary:hover,
.btn-service:hover,
.btn-submit:hover,
.btn-cta-large:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.btn-cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Intro Split */
.intro-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

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

.intro-visual,
.intro-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-visual {
    background: var(--bg-off);
    padding: 4rem 2rem;
}

.intro-text {
    padding: 4rem 3rem;
    background: white;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.stat-card {
    background: var(--primary-dark);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    max-width: 450px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-visual {
    margin-bottom: 1.5rem;
}

.service-visual svg {
    width: 100%;
    height: 180px;
}

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

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    margin-top: auto;
}

/* Trust Split */
.trust-split {
    display: flex;
    min-height: 65vh;
    align-items: stretch;
}

.trust-text,
.trust-metrics {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-text {
    background: var(--secondary-dark);
    color: var(--text-light);
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-metrics {
    background: var(--primary-dark);
    flex-direction: column;
    gap: 3rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 300px;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 50vh;
    align-items: stretch;
}

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

.testimonial-visual,
.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-visual {
    background: var(--accent-dark);
}

.quote-mark {
    font-size: 15rem;
    font-weight: 700;
    color: rgba(233, 69, 96, 0.3);
    line-height: 1;
}

.testimonial-content {
    padding: 4rem 3rem;
    background: white;
}

.testimonial-content blockquote {
    max-width: 550px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #777;
    font-style: normal;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: var(--bg-off);
}

.approach-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 240px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    opacity: 0.5;
}

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

.step-card p {
    color: #555;
    line-height: 1.7;
}

/* Form Split */
.form-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.form-intro,
.form-container {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-intro {
    background: var(--accent-dark);
    color: var(--text-light);
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.form-container {
    background: white;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--accent-red);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
}

/* Final CTA */
.final-cta {
    background: var(--primary-dark);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-gray);
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section a {
    color: var(--text-gray);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d63851;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Split */
.about-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.about-text,
.about-visual {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    background: white;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-visual {
    background: var(--bg-off);
}

.timeline-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--accent-red);
    border-radius: 4px;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    min-width: 100px;
}

.timeline-event {
    font-size: 1.1rem;
    color: #333;
}

/* Philosophy Split */
.philosophy-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

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

.philosophy-visual,
.philosophy-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-visual {
    background: var(--bg-off);
}

.philosophy-text {
    background: white;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
}

.team-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-block {
    flex: 1 1 250px;
}

.stat-fig {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: white;
}

.values-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-off);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Industries Split */
.industries-split {
    display: flex;
    min-height: 50vh;
    align-items: stretch;
}

.industries-text,
.industries-list {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industries-text {
    background: var(--secondary-dark);
    color: var(--text-light);
}

.industries-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.industries-list {
    background: white;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-tags li {
    padding: 0.7rem 1.5rem;
    background: var(--bg-off);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* CTA About */
.cta-about {
    background: var(--accent-dark);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-light);
}

.cta-about h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Services Detail */
.services-detail {
    padding: 4rem 2rem;
    background: var(--bg-off);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 8px;
    padding: 3rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-detail-content {
    flex: 2;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-deliverables {
    padding: 2rem;
    background: var(--bg-off);
    border-radius: 8px;
}

.service-deliverables li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    color: #555;
}

.service-deliverables li:last-child {
    border-bottom: none;
}

.service-deliverables li::before {
    content: "✓ ";
    color: var(--accent-red);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Pricing Notes */
.pricing-notes {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: white;
}

.pricing-notes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.pricing-text {
    flex: 2;
}

.pricing-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pricing-action {
    flex: 1;
    text-align: center;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.contact-details,
.contact-map-placeholder {
    flex: 1;
    padding: 4rem 3rem;
}

.contact-details {
    background: white;
}

.contact-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--accent-red);
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-block a {
    color: var(--accent-red);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-map-placeholder {
    background: var(--bg-off);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact FAQ */
.contact-faq {
    padding: 6rem 2rem;
    background: var(--bg-off);
}

.contact-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Thanks Hero */
.thanks-hero {
    background: var(--primary-dark);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.thanks-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-light);
    display: none;
}

.service-confirmation.show {
    display: block;
}

/* Thanks Next Steps */
.thanks-next-steps {
    padding: 6rem 2rem;
    background: white;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Thanks Resources */
.thanks-resources {
    padding: 4rem 2rem 6rem;
    background: var(--bg-off);
}

.thanks-resources h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.resource-cards {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.resource-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-link {
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    background: white;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-red);
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
    color: #333;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: var(--bg-off);
    font-weight: 700;
    color: #333;
}

.cookie-table td {
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

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

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .testimonial-split,
    .form-split,
    .about-split,
    .philosophy-split,
    .industries-split,
    .contact-info-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .testimonial-split.reverse,
    .philosophy-split.reverse {
        flex-direction: column;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-header h2,
    .approach-header h2,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .intro-text h2,
    .trust-text h2,
    .philosophy-text h2,
    .about-text h2,
    .industries-text h2,
    .contact-details h2 {
        font-size: 2rem;
    }

    .service-grid,
    .approach-steps,
    .values-grid,
    .faq-grid,
    .resource-cards {
        gap: 1.5rem;
    }

    .service-card,
    .step-card,
    .value-card,
    .faq-item,
    .resource-card {
        flex: 1 1 100%;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .step-card {
        flex: 1 1 calc(50% - 2rem);
    }
}
