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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover {
    color: #A9B5C0;
}

.mobile-menu-toggle.active {
    color: #4a90e2;
}

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

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FAFAFA 0%, #A9B5C0 50%, #2E2E2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.nav-brand h2:hover {
    background: linear-gradient(135deg, #A9B5C0 0%, #FAFAFA 30%, #A9B5C0 70%, #2E2E2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(169, 181, 192, 0.4));
}

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

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #A9B5C0;
}

.get-started-btn {
    background: linear-gradient(135deg, #A9B5C0 0%, #2E2E2E 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(169, 181, 192, 0.2);
    min-height: 44px;
    touch-action: manipulation;
}

/* Mobile touch optimization for get started button */
@media (max-width: 768px) {
    .get-started-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
    }
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #2E2E2E 0%, #A9B5C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 181, 192, 0.3);
}

/* Hero Section - Sticky Pinned */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.1) 0%, rgba(26, 26, 26, 1) 70%);
    position: sticky;
    top: 0;
    z-index: 1;
    transition: filter 0.1s ease-out;
}

/* Disable effects for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero {
        transition: none !important;
        will-change: auto !important;
    }
    
    .services,
    .process,
    .contact {
        background-color: #1a1a1a !important;
        box-shadow: none !important;
        transition: none !important;
    }
    
    .scroll-container {
        height: auto !important;
    }
    
    section:not(.hero) {
        position: relative !important;
        height: auto !important;
    }
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #4a90e2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: linear-gradient(135deg, #2E2E2E 0%, #A9B5C0 50%, #FAFAFA 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(46, 46, 46, 0.3);
    min-height: 48px;
    touch-action: manipulation;
}

/* Mobile optimization for CTA button */
@media (max-width: 768px) {
    .cta-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.15rem;
        min-height: 56px;
        border-radius: 10px;
        margin-bottom: 1.5rem;
    }
}

.cta-btn:hover {
    background: linear-gradient(135deg, #A9B5C0 0%, #2E2E2E 50%, #A9B5C0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 46, 46, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-note {
    font-size: 0.9rem;
    color: #888888;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile hero note optimization */
@media (max-width: 768px) {
    .hero-note {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Main container for scroll-driven sections */
.scroll-container {
    position: relative;
    height: 300vh; /* Create scroll space for 3 sections after hero */
    /* Eliminate any potential gaps */
    margin: 0;
    padding: 0;
}

/* Section Styles - Sticky Pinning Layout */
section:not(.hero) {
    padding: 0;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    background-color: rgba(26, 26, 26, 0);
    transition: background-color 0.1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure sections fully cover the viewport */
    margin: 0;
    border: none;
    outline: none;
}

/* (Removed duplicate - styling is now in the main .services rule) */

/* Remove shadow to prevent border effects */
section:not(.hero) {
    box-shadow: none;
}

.section-header {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 1200px;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.9rem;
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    z-index: 2;
    background-color: rgba(26, 26, 26, 0);
    transition: background-color 0.1s ease-out;
}

.services.active {
    background-color: rgba(26, 26, 26, 1);
}



.services-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    /* Ensure content doesn't get cut off */
    min-height: auto;
}

.service-card {
    background-color: #222222;
    border-radius: 16px;
    padding: 4rem 3rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.service-nav {
    position: absolute;
    top: 2rem;
    right: 3rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.nav-arrow {
    background-color: #333333;
    border: none;
    color: #cccccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

/* Mobile optimization for nav arrows */
@media (max-width: 768px) {
    .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin: 0.25rem;
    }
}

.nav-arrow:hover {
    background-color: #4a90e2;
    color: white;
}

.service-content {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-arrow {
    color: #4a90e2;
    font-size: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.core-highlights h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
}

.check-icon {
    color: #4a90e2;
    font-weight: 600;
}

/* Process Section - Desktop Layout (Horizontal) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem;
    width: 100%;
    align-items: start;
}

/* Mobile Layout (Vertical) - Process Section */
@media (max-width: 768px) {
    .process {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 4rem 1rem;
        /* Ensure no blur effects on mobile */
        filter: none !important;
        background-color: #1a1a1a !important;
    }
    
    /* Force solid backgrounds on mobile */
    .services {
        background-color: #1a1a1a !important;
        filter: none !important;
    }
    
    .contact {
        background-color: #1a1a1a !important;
        filter: none !important;
    }
    
    .process .section-header {
        width: 100%;
        max-width: 500px;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
        max-width: 500px;
        margin: 0;
        padding: 0;
    }
    
    .process-step {
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        padding: 2.5rem 2rem;
        border: 1px solid rgba(74, 144, 226, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
    }
    
    .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(74, 144, 226, 0.2);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    background-color: #4a90e2;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Mobile optimization for step numbers */
@media (max-width: 768px) {
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

.step-connector {
    position: absolute;
    top: 30px;
    right: -1.5rem;
    color: #4a90e2;
    font-size: 2rem;
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

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

/* Enhanced mobile typography for process section */
@media (max-width: 768px) {
    .process-step h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-weight: 700;
        color: #ffffff;
    }
    
    .process-step p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        color: #e0e0e0;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }
    
    .step-features {
        margin-top: 2rem;
        max-width: 100%;
        text-align: left;
    }
    
    .step-features li {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(74, 144, 226, 0.1);
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .step-features li:last-child {
        border-bottom: none;
    }
    
    .feature-icon {
        color: #4a90e2;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
}

.process-step p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.feature-icon {
    color: #4a90e2;
}

/* Process Section */
.process {
    z-index: 3;
    background-color: rgba(26, 26, 26, 0);
    transition: background-color 0.1s ease-out;
}

.process.active {
    background-color: rgba(26, 26, 26, 1);
}

/* Contact Section */
.contact {
    z-index: 4;
    background-color: rgba(26, 26, 26, 0);
    transition: background-color 0.1s ease-out;
}

.contact.active {
    background-color: rgba(26, 26, 26, 1);
}

.contact-wrapper {
    background-color: #222222;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    border-radius: 16px;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem auto 0;
    align-items: start;
    max-width: 1200px;
}

.contact-form {
    background-color: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 300px;
}

.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #A9B5C0 0%, #2E2E2E 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(169, 181, 192, 0.2);
    min-height: 48px;
    touch-action: manipulation;
}

/* Mobile optimization for submit button */
@media (max-width: 768px) {
    .submit-btn {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        min-height: 52px;
        border-radius: 10px;
    }
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2E2E2E 0%, #A9B5C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 181, 192, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.response-time,
.whats-next {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
}

.time-icon,
.next-icon {
    font-size: 1.5rem;
    color: #4a90e2;
    flex-shrink: 0;
}

.response-time h4,
.whats-next h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.response-time p {
    color: #cccccc;
    font-size: 0.9rem;
}

.whats-next ul {
    list-style: none;
    color: #cccccc;
    font-size: 0.9rem;
}

.whats-next ul li {
    margin-bottom: 0.25rem;
}

/* Enhanced Responsive Design with Better Breakpoints */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .section-header {
        padding: 0 1.5rem;
    }
    
    .services-container,
    .contact-wrapper,
    .process-steps {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Keep horizontal layout on tablets but adjust spacing */
    .process-steps {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .process-step h3 {
        font-size: 1.4rem;
    }
    
    .process-step p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .services-container,
    .contact-wrapper {
        margin: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 70px;
    }
    
    /* Mobile layout: hamburger on left, get started on right */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        z-index: 2;
        order: 1;
    }
    
    .get-started-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-height: 40px;
        border-radius: 6px;
        flex-shrink: 0;
        z-index: 2;
        order: 3;
        font-weight: 500;
    }
    
    /* Logo positioned slightly left of center */
    .nav-brand {
        position: absolute;
        left: 47%;
        transform: translateX(-50%);
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
        margin: 0;
        z-index: 1;
        pointer-events: none;
        order: 2;
    }
    
    .nav-brand h2 {
        font-size: 1.4rem;
        white-space: nowrap;
        pointer-events: auto;
        cursor: pointer;
        margin: 0;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        order: 4;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    /* Mobile: disable scroll effects, use normal flow */
    .scroll-container {
        height: auto;
    }
    
    section:not(.hero) {
        position: relative;
        height: auto;
        background-color: #1a1a1a !important;
        box-shadow: none;
        filter: none !important;
    }
    
    .hero {
        position: relative;
        filter: none !important;
    }
    
    section:not(.hero) {
        padding: 4rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .services-container,
    .contact-wrapper {
        margin: 0;
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
        border-radius: 12px;
    }
    
    .service-content {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .service-nav {
        position: static;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .service-arrow {
        margin-top: 0.5rem;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1rem;
    }
    

    
    .step-connector {
        display: none;
    }
    
    .step-features {
        max-width: 100%;
        margin: 1.5rem auto 0;
        padding: 0 1rem;
    }
    
    .step-features li {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .step-features li:last-child {
        border-bottom: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 280px;
        font-size: 1rem;
        line-height: 1.6;
        border-radius: 10px;
        padding: 1.25rem;
    }
    
    .contact-info {
        order: -1;
    }
    
    .response-time,
    .whats-next {
        padding: 1.75rem;
        border-radius: 10px;
    }
    
    .response-time h4,
    .whats-next h4 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .response-time p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .whats-next ul {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    /* Ultra-small screen navbar adjustments (360px and below) */
    .nav {
        padding: 0.75rem 0.5rem;
        min-height: 60px;
    }
    
    .nav-brand h2 {
        font-size: 1.25rem;
    }
    
    .get-started-btn {
        padding: 0.4rem 0.65rem;
        font-size: 0.75rem;
        min-height: 38px;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 500;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        width: 42px;
        height: 42px;
        padding: 0.3rem;
    }
    
    .service-content {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
    }
    
    /* Ultra-small screen optimizations for process */
    .process {
        padding: 3rem 0.75rem;
    }
    
    .process .section-header {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
    
    .process-steps {
        gap: 2rem;
        max-width: 100%;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .process-step p {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 1.75rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .step-features li {
        font-size: 1rem;
        padding: 0.5rem 0;
        margin-bottom: 0.75rem;
    }
}

/* Extra small screens (360px and below) - Additional navbar safety */
@media (max-width: 360px) {
    .nav {
        padding: 0.5rem;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .get-started-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        max-width: 75px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Ultra small screens (320px and below) - Minimum viable layout */
@media (max-width: 320px) {
    .nav {
        padding: 0.4rem;
        min-height: 56px;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .get-started-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        max-width: 70px;
        min-height: 36px;
        font-weight: 500;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        padding: 0.2rem;
    }
}

/* Content Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure content stays sharp during section transitions */
.services-container,
.process-steps,
.contact-wrapper,
.section-header {
    filter: none !important;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Footer Styles */
.footer {
    background-color: #2E2E2E;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 1000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FAFAFA;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #A9B5C0 50%, #2E2E2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1rem;
    color: #A9B5C0;
    opacity: 0.8;
    margin: 0;
    font-weight: 300;
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #A9B5C0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.footer-nav a:hover {
    color: #FAFAFA;
    opacity: 1;
}

.footer-copyright {
    border-top: 1px solid rgba(169, 181, 192, 0.2);
    padding-top: 1.5rem;
    width: 100%;
}

.footer-copyright p {
    color: #A9B5C0;
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.6;
    font-weight: 300;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-nav {
        gap: 2rem;
    }
    
    .footer-nav a {
        font-size: 1rem;
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .footer-brand h3 {
        font-size: 1.6rem;
    }
    
    .footer-tagline {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}