:root {
    --primary-orange: #f97316;
    --primary-orange-hover: #ea580c;
    --text-dark: #111827;
    --text-lead: #4b5563; /* slightly lighter */
    --text-muted: #6b7280;
    --text-blue: #164670; /* The blue used in block 2 */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.2s ease;
}

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

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    scroll-padding-top: 88px; /* Offset for sticky header */
}

/* Selection and Custom Scrollbar */
::selection {
    background-color: var(--primary-orange);
    color: white;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400; /* Looks relatively light/normal weight in screenshot */
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
}
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: auto;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.logo-text .blue { color: #2b8be3; }
.logo-text .orange { color: var(--primary-orange); }

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 3rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary-orange);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 999;
    padding: calc(env(safe-area-inset-top) + 100px) 2rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-menu-overlay.open {
    transform: translateX(0);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-nav-link {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s ease;
}
.mobile-nav-link:hover {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem; /* Reduced height across the site */
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease; /* updated for smooth animation */
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); /* Light base shadow */
}

.btn:hover {
    transform: translateY(-4px); /* Lift animation */
    box-shadow: 0 12px 25px rgba(0,0,0,0.1); /* Deeper shadow */
}

.btn-primary {
    background-color: var(--primary-orange);
    color: #fff; /* Changed to #fff for consistency with instruction */
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #e86300; /* Updated hover color */
    transform: translateY(-2px); /* Updated hover transform */
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.35); /* New shadow */
}
.btn-primary svg {
    transition: transform 0.3s ease;
}
.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #e5e7eb; /* Updated border color */
    color: var(--text-dark); /* Changed to var(--text-dark) for consistency */
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.btn-icon svg {
    margin-left: 0.5rem;
}

/* Header Actions / Chat Icon */
@keyframes chatWiggle {
    0%, 90% { transform: rotate(0deg) scale(1); }
    92% { transform: rotate(-10deg) scale(1.1); }
    94% { transform: rotate(10deg) scale(1.1); }
    96% { transform: rotate(-10deg) scale(1.1); }
    98% { transform: rotate(10deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

.chat-icon-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-orange);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    animation: chatWiggle 5s infinite;
    flex-shrink: 0;
}
.chat-icon-nav:hover {
    background-color: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem; /* Increased top padding to avoid header overlap */
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    scroll-snap-align: start;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr; /* Image column slightly larger */
    gap: 3rem;
    align-items: center;
}

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

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

.hero-text-small {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-text-regular {
    font-size: 1rem;
    color: var(--text-lead);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

/* Sections & Layout */
.section {
    padding: 6rem 0;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    scroll-snap-align: start;
}
.no-snap {
    scroll-snap-align: none !important;
    min-height: auto !important;
}

.bg-light { background-color: var(--bg-light); }

.split-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4.5rem; /* Slightly reduced gap since image gets noticeably wider */
    align-items: center;
}
.split-container.image-left {
    grid-template-columns: 1.15fr 1fr; /* Reduced image width slightly to give text more breathing room */
}

.block9-container {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
}

.block9-content {
    padding-right: 1.5rem;
}

.split-content p {
    color: var(--text-lead);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.split-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 12px;
}

/* Typography Enhancements */
h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}
.text-blue { color: var(--text-blue); }

/* Icon List */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.icon-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-list-item span.text-blue {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services Grid (Block 4) */
.center { text-align: center; }
.section-header { margin-bottom: 4rem; }
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--bg-white);
    padding: 3.5rem 2.5rem; /* Increased padding */
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Added default shadow */
}
.service-card:hover {
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.service-icon svg {
    width: 44px; /* Enlarged icons */
    height: 44px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon svg {
    transform: scale(1.1); /* Icon animation on hover */
}
.service-card h3 {
    color: var(--text-blue);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Timeline (Block 5) */
.process-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Slightly tighter gap to match design */
}
.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Default light shadow */
    border: 1px solid transparent;
}
.process-step:hover {
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-orange);
}
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--text-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    flex-shrink: 0;
}
.step-content h3 {
    color: var(--text-blue);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Examples Grid (Block 6) */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem; /* Increased gap slightly along with width */
    max-width: 1200px;
    margin: 4rem auto 0;
}
.example-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Default light shadow */
}
.example-card:hover {
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-orange);
}
.example-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.8;
}
.example-card p.text-blue {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Benefits Grid (Block 8) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
}

/* Contact Form (Block 10) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}
.form-group label {
    color: var(--text-blue);
    font-size: 0.95rem;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    padding: 0.65rem 1rem; /* Further reduced height for sleeker look */
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark); /* Changed to var(--text-dark) for consistency */
    background-color: var(--bg-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); /* Added soft drop shadow for volume */
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1); /* Soft orange aura */
}

/* Footer */
.footer {
    background-color: #161718;
    color: #e5e7eb;
    padding: 6rem 0 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-logo {
    height: 58px;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2)); /* Slight illumination to ensure dark blue text is readable on dark bg */
}
.footer-text {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.footer-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.footer-links li.align-top {
    align-items: flex-start;
}
.footer-links svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.footer-links a, .footer-links span {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--primary-orange);
}
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}
.footer-bottom p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding-top: 140px; 
    padding-bottom: 6rem;
    min-height: calc(100vh - 200px);
}
.legal-card {
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3.5rem 4rem;
    margin-top: 2.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
}
.legal-section {
    margin-bottom: 2.5rem;
}
.legal-section:last-child {
    margin-bottom: 0;
}
.legal-section h4 {
    color: var(--text-blue);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.legal-section h3 {
    color: var(--text-blue);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}
.legal-section h3:first-child {
    margin-top: 0;
}
.legal-section h2 {
    color: var(--text-blue);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
}
.legal-section h2:first-child {
    margin-top: 0;
}
.legal-section p, .legal-section li, .legal-subtitle {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.legal-subtitle {
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
}
.legal-section a {
    color: var(--primary-orange);
    text-decoration: none;
}
.legal-section a:hover {
    text-decoration: underline;
}
.legal-ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.legal-ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.5rem;
}
.legal-ul li::before {
    content: "•";
    color: var(--primary-orange);
    position: absolute;
    left: -1rem;
    font-size: 1.2rem;
}
.legal-notice-box {
    border-left: 4px solid var(--primary-orange);
    background-color: rgba(249, 115, 22, 0.05);
    padding: 1.25rem 1.75rem;
    border-radius: 0 6px 6px 0;
    margin-top: 3rem;
}
.legal-notice-box p {
    margin: 0;
    color: var(--text-dark); /* Changed to var(--text-dark) for consistency */
    font-size: 1rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll To Top */
#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--text-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
}
#scrollToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollToTopBtn:hover {
    background-color: var(--primary-orange);
    transform: translateY(-4px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.4s ease;
}
.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.cookie-banner a {
    color: var(--primary-orange);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 0.75rem;
}
.cookie-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-overlay { display: flex; }
    .header-actions .btn-nav { display: none; } /* Hide Header CTA on mobile */
    
    .btn-primary.btn-icon.is-floating {
        position: fixed !important;
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        width: calc(100% - 3rem) !important;
        margin: 0 !important;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
        animation: floatUpBtn 0.3s ease-out forwards;
    }
    @keyframes floatUpBtn {
        from { transform: translateY(100px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    html {
        scroll-snap-type: none;
    }
    .hero, .section { scroll-snap-align: none; }
    .container { padding: 0 1.5rem; }
    .hero-container, 
    .split-container,
    .split-container.image-left,
    .split-container.block9-container {
        grid-template-columns: 1fr !important; /* Force single column to override specificities */
        gap: 3rem;
    }
    .block9-content {
        padding-right: 0;
    }
    .hero {
        padding: calc(7rem + env(safe-area-inset-top)) 0 3rem;
        min-height: auto;
    }
    .section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    h1, h2 { font-size: 2.25rem; }
    .hero-content { max-width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 br, h2 br { display: none; }
    
    .hero {
        padding: calc(6rem + env(safe-area-inset-top)) 0 2rem;
    }
    .hero-actions {
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 3rem 0 2rem;
    }
    
    /* Horizontal Scrolling for Grids */
    .services-grid, .examples-grid, .benefits-grid { 
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden; /* Strictly prevent internal vertical wiggle */
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1.5rem; /* Break out of container */
        padding: 0 1.5rem 1.5rem;
        gap: 1rem;
    }
    /* Hide scrollbar for carousels */
    .services-grid::-webkit-scrollbar, 
    .examples-grid::-webkit-scrollbar, 
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }
    .service-card, .example-card, .benefits-grid .icon-list-item {
        flex: 0 0 85%;
    }
    .service-card, .example-card {
        padding: 1.5rem; /* Reduced card padding */
    }
    
    /* Remove hover animations and orange outline on mobile */
    .service-card:hover, .example-card:hover,
    .service-card:active, .example-card:active {
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        transform: none;
        border-color: #e5e7eb;
    }
    .service-card:hover .service-icon svg,
    .service-card:active .service-icon svg {
        transform: none;
    }
    
    .process-timeline {
        position: relative;
    }
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 2rem;
        bottom: 2rem;
        left: 50%;
        width: 2px;
        background-color: #e5e7eb;
        transform: translateX(-50%);
        z-index: 0;
    }
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem; /* Reduced padding */
        position: relative;
        z-index: 1;
        background: var(--bg-white);
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
    }
    .header-container {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .header-actions {
        gap: 0.5rem;
    }
    .logo img {
        height: 44px; /* Slightly smaller logo to make room for buttons on narrow screens */
    }
    .btn.btn-nav {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-height: 44px; /* Ensured touch target */
    }
    .chat-icon-nav {
        width: 44px; /* Restored size for touch target */
        height: 44px;
    }
    .chat-icon-nav svg {
        width: 22px; /* Restored size */
        height: 22px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
    #scrollToTopBtn {
        bottom: 5.5rem; /* Moved up to clear floating CTA */
        right: 1rem;
    }
    .legal-card {
        padding: 2rem 1.75rem; /* Reduced padding */
    }
}

