:root {
    --primary-green: #2ecc71;
    --card-bg: #ffffff;
    --text-color: #333;
    --card-rotation: 5deg;
    --row-spacing: 170px; /* NEW requested gap */
    --pair-extra-spacing: 80px;
    --first-pair-extra-spacing: 140px;
    --third-pair-extra-spacing: 140px;
    --gutter: 32px; /* Tailwind-compatible gutter */
}

/* CSS Reset - Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter Display', sans-serif;
}

h1 {
    font-size: 5rem;
    line-height: 5.15rem;
}

h2 {
    font-size: 3.5rem;
    line-height: 3.75rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.subheadline {
    font-size: 1.75rem;
    line-height: 2.25rem;
}

p, span, a, li, td, th {
    font-family: 'Inter', sans-serif;
    line-height: 150%;
}

.spacer { height: 100vh; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #ccc;}

/* Navigation - Initial (not sticky) */
.navigation {
    position: relative;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .navigation {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1200px) {
    .navigation {
        padding-left: 0;
        padding-right: 0;
    }
}

.nav-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Floating Navigation - appears after scroll */
.floating-nav {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(-80px);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.floating-nav.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .floating-nav {
        width: calc(100% - 64px);
    }
}

@media (min-width: 1200px) {
    .floating-nav {
        width: auto;
        max-width: 736px;
    }

    .floating-nav .nav-cta-wrapper .mobile-menu-toggle {
        display: none;
    }

    .floating-nav .nav-cta {
        width: 176px;
    }
}


.floating-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: hsla(120, 30%, 8%, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    max-width: 736px;
    width: 100%;
    box-sizing: border-box;
}

.floating-nav .nav-logo {
    flex-shrink: 0;
    width: 176px;
    display: flex;
    justify-content: flex-start;
    padding-left: 8px;
    box-sizing: border-box;
}

.floating-nav .nav-logo img {
    height: 24px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.floating-nav .nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.floating-nav .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.floating-nav .nav-links a:hover {
    color: #18d100;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1001;
}

.navigation-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px;
    color: #051d02;
    z-index: 1001;
}

.mobile-menu-toggle:focus {
    outline: none;
    border: none;
}

.mobile-menu-toggle:focus-visible {
    outline: none;
    border: none;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.9);
}

.navigation-mobile-toggle svg {
    stroke: #051d02;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fafafa;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
}

.mobile-menu-logo {
    position: relative;
    height: 24px;
    width: auto;
}

.mobile-menu-logo img {
    height: 24px;
    width: auto;
}

.mobile-menu-close {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #051d02;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: #051d02;
}

.mobile-menu-links {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px;
    gap: 16px;
}

.mobile-menu-links a {
    color: #051d02;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.75rem;
    letter-spacing: -0.28px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.mobile-menu-links a:hover {
    color: #051d02;
}

.mobile-menu-cta {
    position: absolute;
    top: 332px;
    left: 50%;
    transform: translateX(-50%);
    width: 327px;
    max-width: calc(100% - 48px);
    height: 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 12px;
    box-shadow: 0px 40px 11px 0px rgba(181,181,181,0), 
                0px 25px 10px 0px rgba(181,181,181,0.01), 
                0px 14px 9px 0px rgba(181,181,181,0.05), 
                0px 6px 6px 0px rgba(181,181,181,0.09), 
                0px 2px 3px 0px rgba(181,181,181,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    box-sizing: border-box;
}

.mobile-menu-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: -0.16px;
    color: #051d02;
    white-space: nowrap;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 327px;
    max-width: calc(100% - 48px);
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    box-sizing: border-box;
}

.mobile-menu-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #1e1e1e;
    white-space: nowrap;
}

.mobile-menu-privacy {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2rem;
    color: #051d02;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.mobile-menu-privacy:hover {
    color: #18d100;
}

@media (max-width: 639px) {
    .hero-section .hero-background {
        position: absolute;
        width: 23.4375rem;
        height: 38.75rem;
        background-position: center;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        right: auto;
    }

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

    h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .subheadline {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

    .floating-nav {
        width: calc(100% - 48px);
        max-width: calc(100% - 48px);
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-80px);
    }

    .floating-nav.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .floating-nav .nav-links {
        display: none;
    }

    .floating-nav .nav-container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
        margin: 0 auto;
    }


    .floating-nav .nav-logo {
        width: auto;
        flex-shrink: 0;
    }

    .floating-nav .nav-logo img {
        height: 16px;
    }

    .floating-nav .nav-cta-wrapper {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }

    .floating-nav .nav-cta {
        display: flex;
        flex-shrink: 0;
        width: auto;
    }

    .floating-nav .nav-cta-button {
        height: 40px;
        min-height: 40px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .floating-nav .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation .nav-links {
        display: none;
    }

    .navigation .nav-logo {
        width: auto;
    }

    .navigation .nav-logo img {
        height: 24px;
        width: auto;
    }

    .navigation .nav-cta,
    .navigation .nav-cta-button {
        padding: 4px 12px;
    }
}

.floating-nav .nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.floating-nav .nav-cta {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
}

.floating-nav .nav-cta-button {
    border: 0px solid rgba(5, 29, 2, 0.08);
    background: linear-gradient(180deg, #69FF55 0%, #68FF54 8.59%, #67FE53 17.48%, #65FD51 26.53%, #62FB4E 35.61%, #5EF94A 44.59%, #5AF645 53.34%, #55F440 61.73%, #4FF03A 69.63%, #49ED33 76.9%, #42E92C 83.41%, #3AE524 89.03%, #32E01C 93.63%, #2ADB13 97.08%, #21D60A 99.25%, #18D100 100%);
    box-shadow: 0 -4px 3px 1px #18D100 inset, 0 0 0 4px rgba(255, 255, 255, 0.40) inset, 0 110px 31px 0 rgba(27, 204, 0, 0.00), 0 71px 28px 0 rgba(27, 204, 0, 0.01), 0 40px 24px 0 rgba(27, 204, 0, 0.05), 0 18px 18px 0 rgba(27, 204, 0, 0.09), 0 4px 10px 0 rgba(27, 204, 0, 0.10);
    color: #051d02;
}

.floating-nav .nav-cta-text {
    color: #051d02;
}

.nav-logo {
    height: 32px;
    width: 176px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    width: 176px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #051d02;
    letter-spacing: -0.16px;
}

.nav-links a {
    color: #051d02;
    text-decoration: none;
    transition: color 0.2s ease;
    width: 64px;
    text-align: center;
}

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

.nav-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 176px;
}

.nav-cta-button {
    height: 48px;
    min-height: 48px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0px 40px 11px 0px rgba(181,181,181,0), 
                0px 25px 10px 0px rgba(181,181,181,0.01), 
                0px 14px 9px 0px rgba(181,181,181,0.05), 
                0px 6px 6px 0px rgba(181,181,181,0.09), 
                0px 2px 3px 0px rgba(181,181,181,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
}

.nav-cta-button:active {
    transform: scale(0.9);
}

.nav-cta-text-wrapper {
    position: relative;
    height: 48px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.nav-cta-button:hover .nav-cta-text-wrapper {
    transform: translateY(-48px);
}

.nav-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 3rem;
    height: 48px;
    color: #051d02;
    letter-spacing: -0.16px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.nav-cta-button:hover .nav-cta-text {
    opacity: 0;
}

.nav-cta-text-hover {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 3rem;
    height: 48px;
    color: #051d02;
    letter-spacing: -0.16px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta-button:hover .nav-cta-text-hover {
    opacity: 1;
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: visible;
    background: #fafafa;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 640px) {
    .hero-background {
        background-image: url('images/hero-bg-tablet.webp');
        background-size: 48rem;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (min-width: 1200px) {
    .hero-background {
        background-image: url('images/hero-bg.webp');
        background-size: 90rem;
    }
}

.hero-content {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 1;
    transform-origin: center center;
}

/* Hero tag - desktop default (1200px+) */
@media (min-width: 1200px) {
    .hero-tag {
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: -0.16px;
    }
}

.hero-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 99px;
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 0.8),
                inset 0px -9px 0px -8px rgba(255, 255, 255, 0.8);
    opacity: 0.4;
    z-index: -1;
    filter: brightness(115%);
    pointer-events: none;
}

/* Hero title - desktop default (1200px+) */
@media (min-width: 1200px) {
    .hero-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 5.25rem;
        letter-spacing: -0.26px;
        margin: 0;
    }

    /* Hero subtitle - desktop default (1200px+) */
    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.75rem;
        font-weight: 400;
        line-height: 2.25rem;
        color: #586156;
        text-align: center;
        letter-spacing: -0.14px;
        margin: 0;
        max-width: 100%;
    }
}

.hero-cta {
    padding: 20px 48px;
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 0px solid rgba(5, 29, 2, 0.08);
    background: linear-gradient(180deg, #69FF55 0%, #68FF54 8.59%, #67FE53 17.48%, #65FD51 26.53%, #62FB4E 35.61%, #5EF94A 44.59%, #5AF645 53.34%, #55F440 61.73%, #4FF03A 69.63%, #49ED33 76.9%, #42E92C 83.41%, #3AE524 89.03%, #32E01C 93.63%, #2ADB13 97.08%, #21D60A 99.25%, #18D100 100%);
    box-shadow: 0 -4px 3px 1px #18D100 inset, 0 0 0 4px rgba(255, 255, 255, 0.40) inset, 0 110px 31px 0 rgba(27, 204, 0, 0.00), 0 71px 28px 0 rgba(27, 204, 0, 0.01), 0 40px 24px 0 rgba(27, 204, 0, 0.05), 0 18px 18px 0 rgba(27, 204, 0, 0.09), 0 4px 10px 0 rgba(27, 204, 0, 0.10);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

.hero-cta:active {
    transform: scale(0.9);
}

.hero-cta-text-wrapper {
    position: relative;
    height: 64px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-text-wrapper {
    transform: translateY(-64px);
}

.hero-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 4rem;
    height: 64px;
    color: #051d02;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-cta:hover .hero-cta-text {
    opacity: 0;
}

.hero-cta-text-hover {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 4rem;
    height: 64px;
    color: #051d02;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta:hover .hero-cta-text-hover {
    opacity: 1;
}

.hero-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-availability-dot {
    width: 12px;
    height: 12px;
    background: #18d100;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-availability-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(24, 209, 0, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

.hero-availability-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #586156;
    letter-spacing: -0.16px;
}


.hero-section {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-section {
        padding-top: 96px;
        padding-bottom: 96px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-section {
        padding-top: 96px;
        padding-bottom: 96px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1600px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 120px;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ============================================
   RESPONSIVE TYPOGRAPHY - BREAKPOINTS
   ============================================ */

/* Mobile: max-width 639px */
@media (max-width: 639px) {
    .hero-tag {
        font-size: 0.75rem;
        line-height: 1rem;
        padding: 12px 24px;
    }

    .hero-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 2.75rem;
        letter-spacing: -0.2px;
        margin: 0;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #586156;
        text-align: center;
        letter-spacing: -0.1px;
        margin: 0;
    }

    .projects-title,
    .process-title,
    .faq-title,
    .footer-title,
    .services-section .process-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2rem;
        font-weight: 600;
        line-height: 2.25rem;
        letter-spacing: -0.16px;
        margin: 0;
    }

    .projects-subtitle,
    .process-subtitle,
    .faq-subtitle,
    .footer-text {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #586156;
        letter-spacing: -0.08px;
        margin: 0;
        text-align: center;
    }

    .services-section .process-tag,
    .process-section .process-tag,
    .projects-section [class*="tag"]:not(.hero-tag),
    .faq-section [class*="tag"]:not(.hero-tag) {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

/* Small Mobile: 320px - 375px - Override for very small screens */
@media (min-width: 320px) and (max-width: 375px) {
    .hero-title {
        font-size: 2.325rem;
        line-height: 2.5rem;
    }
}

/* Tablet Small: 640px - 767px */
@media (min-width: 640px) and (max-width: 767px) {
    .hero-tag {
        font-size: 0.875rem;
        line-height: 1.25rem;
        padding: 12px 24px;
    }

    .hero-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 2.75rem;
        letter-spacing: -0.2px;
        margin: 0;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #586156;
        text-align: center;
        letter-spacing: -0.1px;
        margin: 0;
    }

    .projects-title,
    .process-title,
    .faq-title,
    .footer-title,
    .services-section .process-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2rem;
        font-weight: 600;
        line-height: 2.25rem;
        letter-spacing: -0.0175rem;
        margin: 0;
    }

    .projects-subtitle,
    .process-subtitle,
    .faq-subtitle,
    .footer-text {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #586156;
        letter-spacing: -0.14px;
        margin: 0;
        text-align: center;
    }

    .process-tag {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .faq-question {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }

    h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .hero-tag {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .hero-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 2.75rem;
        letter-spacing: -0.2px;
        margin: 0;
    }

    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #586156;
        text-align: center;
        letter-spacing: -0.1px;
        margin: 0;
    }

    .projects-title,
    .process-title,
    .faq-title,
    .footer-title,
    .services-section .process-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2rem;
        font-weight: 600;
        line-height: 2.25rem;
        letter-spacing: -0.0175rem;
        margin: 0;
    }

    .projects-subtitle,
    .process-subtitle,
    .faq-subtitle,
    .footer-text {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #586156;
        letter-spacing: -0.14px;
        margin: 0;
        text-align: center;
    }

    .process-tag {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* Common section titles - desktop default (1200px+) */
@media (min-width: 1200px) {
    .projects-title,
    .process-title,
    .faq-title,
    .footer-title,
    .services-section .process-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 3.75rem;
        letter-spacing: -0.0175rem;
        margin: 0;
    }

    /* Common section subtitles - desktop default (1200px+) */
    .projects-subtitle,
    .process-subtitle,
    .faq-subtitle,
    .footer-text {
        font-family: 'Inter', sans-serif;
        font-size: 1.75rem;
        font-weight: 400;
        line-height: 2.25rem;
        color: #586156;
        letter-spacing: -0.14px;
        margin: 0;
        text-align: center;
    }
}

/* Common tags - desktop default (1200px+) */
.process-tag {
    font-size: 0.875rem;
    line-height: 1.5rem;
}

/* Common tags - all section tags share the same styles */
.hero-tag,
.process-tag {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    padding: 12px 24px;
    box-shadow: 0px 138px 39px 0px rgba(181,181,181,0), 
                0px 89px 35px 0px rgba(181,181,181,0.01), 
                0px 50px 30px 0px rgba(181,181,181,0.05), 
                0px 22px 22px 0px rgba(181,181,181,0.09), 
                0px 6px 12px 0px rgba(181,181,181,0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #586156;
    overflow: hidden;
    display: inline-block;
}

.hero-tag::after,
.process-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 99px;
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 0.8),
                inset 0px -9px 0px -8px rgba(255, 255, 255, 0.8);
    opacity: 0.4;
    z-index: -1;
    filter: brightness(115%);
    pointer-events: none;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    h1 {
        font-size: 3.25rem;
        line-height: 3.75rem;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }

    /* Hero section - unique sizes */
    .hero-tag {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .hero-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 3.25rem;
        font-weight: 600;
        line-height: 3.75rem;
        letter-spacing: -0.26px;
        margin: 0;
    }

    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.75rem;
        color: #586156;
        text-align: center;
        letter-spacing: -0.1px;
        margin: 0;
    }

    /* All section titles - shared sizes (larger for lg) */
    .projects-title,
    .process-title,
    .faq-title,
    .footer-title,
    .services-section .process-title {
        color: #051D02;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 2.75rem;
        letter-spacing: -0.0175rem;
        margin: 0;
    }

    /* All section subtitles - shared sizes */
    .projects-subtitle,
    .process-subtitle,
    .faq-subtitle,
    .footer-text {
        font-family: 'Inter', sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.75rem;
        color: #586156;
        letter-spacing: -0.14px;
        margin: 0;
        text-align: center;
    }

    /* Tags - shared sizes */
    .process-tag {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    /* Section-specific spacing */
    .faq-header {
        margin-bottom: 60px;
    }

    .footer-content {
        gap: 24px;
    }

    /* Projects and Services - 4 columns for lg */
    .project-card {
        grid-column: span 4;
    }

    .service-card {
        grid-column: span 4;
    }

    /* FAQ section padding */
    .faq-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    /* Footer section padding */
    .footer-section {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 639px) {
    .hero-section {
        height: auto;
        min-height: 38.75rem;
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-section .hero-background {
        position: absolute;
        width: 23.4375rem;
        height: 38.75rem;
        background-position: center;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        right: auto;
    }

    .hero-content {
        padding-top: 24px;
        padding-bottom: 0;
        gap: 32px;
        max-width: 327px;
        width: 100%;
    }

    .hero-availability-text {
        font-size: 1rem;
        line-height: 1.75rem;
    }
}

/* Small Mobile: 320px - 375px - Override hero-section padding and hero-content */
@media (min-width: 320px) and (max-width: 375px) {
    .hero-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-content {
        padding-top: 0;
    }
}

/* Projects Section */
.projects-section {
    text-align: left;
    background-color: #fafafa;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .projects-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .projects-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1200px) {
    .projects-section {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 0;
        padding-right: 0;
    }
}

.projects-wrapper {
    max-width: 1120px;
    margin: 0 auto;
}

.projects-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .projects-header {
        margin-bottom: 48px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .projects-header {
        margin-bottom: 64px;
    }
}

@media (min-width: 1200px) {
    .projects-header {
        gap: 24px;
        margin-bottom: 80px;
    }
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

@media (max-width: 639px) {
    .projects-grid {
        gap: 24px;
    }
}

.project-card {
    grid-column: span 12;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 49.038%, #fafafa 100%);
    padding: 8px;
    border-radius: 24px;
    box-shadow: 0px 113px 32px 0px rgba(162,160,160,0), 
                0px 72px 29px 0px rgba(162,160,160,0.01), 
                0px 41px 24px 0px rgba(162,160,160,0.05), 
                0px 18px 18px 0px rgba(162,160,160,0.09), 
                0px 5px 10px 0px rgba(162,160,160,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .project-card {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .project-card {
        grid-column: span 4;
    }
}

@media (min-width: 1200px) {
    .project-card {
        grid-column: span 4;
    }
}

.project-card-image-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 336px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 639px) {
    .project-card-image-wrapper {
        height: auto;
        min-height: 200px;
    }
}

.project-card-image {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 352px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 1023px) {
    .project-card-image {
        max-width: 100%;
    }
}

@media (max-width: 639px) {
    .project-card-image {
        position: relative;
        left: auto;
        transform: none;
        height: auto;
        max-height: 300px;
    }

    .project-card-image-wrapper {
        display: block;
    }
}

.project-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-card-title {
    font-family: 'Inter Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    color: #051d02;
    letter-spacing: -0.12px;
    margin: 0;
}

.project-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #586156;
    letter-spacing: -0.08px;
    margin: 0;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    background: rgba(5, 29, 2, 0.08);
    border-radius: 8px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: #051d02;
}

.project-card-cta {
    background: #18d100;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
}

.project-card-cta:hover {
    background: #15b800;
}

.project-card-cta:active {
    transform: scale(0.9);
}

.projects-cta {
    text-align: center;
    margin-top: 48px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .projects-cta {
        margin-top: 48px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .projects-cta {
        margin-top: 64px;
    }
}

@media (min-width: 1200px) {
    .projects-cta {
        margin-top: 80px;
    }
}

.projects-cta-button {
    background: #18d100;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.projects-cta-button:hover {
    background: #15b800;
}

.projects-cta-button:active {
    transform: scale(0.9);
}

.projects-cta-button:active {
    transform: scale(0.9);
}


.services-section {
    text-align: center;
    background-color: #fafafa;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .services-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .services-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1200px) {
    .services-section {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 0;
        padding-right: 0;
    }
}

.services-wrapper {
    max-width: 1120px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
    margin-bottom: 48px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .services-header {
        margin-bottom: 48px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .services-header {
        margin-bottom: 64px;
    }
}

@media (min-width: 1200px) {
    .services-header {
        gap: 24px;
        margin-bottom: 80px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

@media (max-width: 639px) {
    .services-grid {
        gap: 24px;
    }
}

.service-card {
    background: var(--card-bg);
    padding: 8px;
    border-radius: 24px;
    box-shadow: 0px 113px 32px 0px rgba(162,160,160,0), 
                0px 72px 29px 0px rgba(162,160,160,0.01), 
                0px 41px 24px 0px rgba(162,160,160,0.05), 
                0px 18px 18px 0px rgba(162,160,160,0.09), 
                0px 5px 10px 0px rgba(162,160,160,0.1);
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .service-card {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .service-card {
        grid-column: span 4;
    }
}

@media (min-width: 1200px) {
    .service-card {
        grid-column: span 4;
    }
}

.service-card-image {
    min-height: 190px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(221,221,221,1) 0%, rgba(250,250,250,1) 100%);
    margin-bottom: 0;
}

.service-card-image img,
.service-card-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.service-card-image::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 224px;
    height: 190px;
    background: radial-gradient(ellipse at center, rgba(250,250,250,0) 0%, rgba(250,250,250,1) 100%);
    mix-blend-mode: darken;
}

.service-card-content {
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

@media (max-width: 639px) {
    .service-card-content {
        padding: 16px 24px;
    }
}

.service-title {
    font-size: 1.5rem;
    margin: 0;
    color: #051d02;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.12px;
    font-family: 'Inter Display', sans-serif;
    text-align: left;
}

.service-description {
    color: #586156;
    margin: 0;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: -0.08px;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

/* Card 1 - Conversion */
.service-card:nth-child(1) .service-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.conversion-button {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(5,29,2,0.08);
    border-radius: 90px;
    padding: 20px 48px;
    background: white;
    box-shadow: 0px 110px 31px 0px rgba(27,204,0,0), 
                0px 71px 28px 0px rgba(27,204,0,0.01), 
                0px 40px 24px 0px rgba(27,204,0,0.05), 
                0px 18px 18px 0px rgba(27,204,0,0.09), 
                0px 4px 10px 0px rgba(27,204,0,0.1);
    z-index: 2;
}

.conversion-button::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: 0px -4px 3px 1px inset #18d100, 
                0px 0px 0px 4px inset rgba(255,255,255,0.4);
    border-radius: 90px;
}

.conversion-button-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #051d02;
    letter-spacing: -0.2px;
}

.conversion-arrow {
    position: absolute;
    bottom: 20px;
    right: 50px;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 0.9375rem;
    color: rgba(0,0,0,0.9);
    transform: rotate(354deg);
}

/* Card 2 - Growth */
.growth-chart {
    position: absolute;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.chart-bar {
    border: 1px solid rgba(5,29,2,0.08);
    border-radius: 24px;
    background: white;
    box-shadow: 0px 110px 31px 0px rgba(162,160,160,0.05), 
                0px 71px 28px 0px rgba(162,160,160,0.01), 
                0px 40px 24px 0px rgba(162,160,160,0.05), 
                0px 18px 18px 0px rgba(162,160,160,0.09), 
                0px 4px 10px 0px rgba(162,160,160,0.1);
    width: 62px;
    position: relative;
}

.chart-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: 0px -4px 3px 1px inset #6c816a, 
                0px 0px 0px 4px inset rgba(255,255,255,0.4);
    border-radius: 24px;
}

.chart-bar:nth-child(1) {
    height: 41px;
}

.chart-bar:nth-child(2) {
    height: 77px;
}

.chart-bar:nth-child(3) {
    height: 148px;
    box-shadow: 0px 110px 31px 0px rgba(27,204,0,0), 
                0px 71px 28px 0px rgba(27,204,0,0.01), 
                0px 40px 24px 0px rgba(27,204,0,0.05), 
                0px 18px 18px 0px rgba(27,204,0,0.09), 
                0px 4px 10px 0px rgba(27,204,0,0.1);
}

.chart-bar:nth-child(3)::before {
    box-shadow: 0px -4px 3px 1px inset #18d100, 
                0px 0px 0px 4px inset rgba(255,255,255,0.4);
}

.chart-label {
    position: absolute;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 0.9375rem;
    color: rgba(0,0,0,0.9);
}

.chart-label-current {
    top: -25px;
    left: 50px;
    transform: rotate(348deg);
}

.chart-label-profit {
    bottom: -25px;
    right: 50px;
    transform: rotate(354deg);
}

/* Card 3 - Differentiation */
.differentiation-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, 64px);
    grid-template-rows: repeat(3, 64px);
    gap: 0;
}

.grid-circle {
    border: 1px solid rgba(5,29,2,0.08);
    border-radius: 90px;
    background: white;
    box-shadow: 0px 110px 31px 0px rgba(162,160,160,0.05), 
                0px 71px 28px 0px rgba(162,160,160,0.01), 
                0px 40px 24px 0px rgba(162,160,160,0.05), 
                0px 18px 18px 0px rgba(162,160,160,0.09), 
                0px 4px 10px 0px rgba(162,160,160,0.1);
    width: 64px;
    height: 64px;
    position: relative;
}

.grid-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: 0px -4px 3px 1px inset #6c816a, 
                0px 0px 0px 4px inset rgba(255,255,255,0.4);
    border-radius: 90px;
}

.grid-circle.highlighted {
    box-shadow: 0px 110px 31px 0px rgba(27,204,0,0), 
                0px 71px 28px 0px rgba(27,204,0,0.01), 
                0px 40px 24px 0px rgba(27,204,0,0.05), 
                0px 18px 18px 0px rgba(27,204,0,0.09), 
                0px 4px 10px 0px rgba(27,204,0,0.1);
}

.grid-circle.highlighted::before {
    box-shadow: 0px -4px 3px 1px inset #18d100, 
                0px 0px 0px 4px inset rgba(255,255,255,0.4);
}

.differentiation-label {
    position: absolute;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 0.9375rem;
    color: rgba(0,0,0,0.9);
}

.differentiation-label-same {
    top: 33px;
    left: 28px;
    transform: rotate(354deg);
}

.differentiation-label-brand {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(354deg);
}


.process-section {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    background-image: url('images/process-bg-mobile.webp');
    background-size: 24rem;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .process-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
        background-image: url('images/bg.webp');
        background-size: 49.125rem;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .process-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
        background-image: url('images/bg.webp');
        background-size: 49.125rem;
    }
}

@media (min-width: 1200px) {
    .process-section {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 0;
        padding-right: 0;
        background-image: url('images/bg.webp');
        background-size: 49.125rem;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Process tag specific - desktop sizes (1200px+) and centering */
.process-tag {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.16px;
    margin: 0 auto;
}

.process-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 99px;
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 0.8),
                inset 0px -9px 0px -8px rgba(255, 255, 255, 0.8);
    opacity: 0.4;
    z-index: -1;
    filter: brightness(115%);
    pointer-events: none;
}

/* Process section - desktop specific styles (1200px+) */
@media (min-width: 1200px) {
    .process-subtitle {
        max-width: 620px;
    }
}

.process-wrapper {
    position: relative;
    max-width: 1120px; 
    margin: 0 auto;
    padding-bottom: 50px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1200px) {
    .process-wrapper {
        gap: 24px;
    }
}

/* --- SVG LINE (Restored Swooping Path) --- */
.process-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- GRID LAYOUT (Restored Zig-Zag) --- */
.process-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns restored */
    row-gap: var(--row-spacing); /* Applied new gap */
    column-gap: 80px; 
    margin-top: 48px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .process-steps {
        margin-top: 48px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .process-steps {
        margin-top: 64px;
    }
}

@media (min-width: 1200px) {
    .process-steps {
        margin-top: 80px;
    }
}

/* 320-639px: Single column (mobile - max-width: 639px) */

/* 640-767px: 2x2 grid with 6 columns each, 24px gap */
@media (min-width: 640px) and (max-width: 767px) {
    .process-wrapper {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
        row-gap: 24px;
        column-gap: 24px;
        width: 100%;
        max-width: 100%;
    }

.step-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    .step-card:nth-child(odd),
    .step-card:nth-child(even) {
        grid-column: auto;
        margin: 0;
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        transform: none;
    }

    .step-card:nth-child(1) {
        grid-column: span 6;
        grid-row: 1;
        margin: 0;
    }

    .step-card:nth-child(2) {
        grid-column: span 6;
        grid-row: 1;
        margin: 0;
        margin-top: 0;
    }

    .step-card:nth-child(3) {
        grid-column: span 6;
        grid-row: 2;
        margin: 0;
    }

    .step-card:nth-child(4) {
        grid-column: span 6;
        grid-row: 2;
        margin: 0;
        margin-top: 0;
    }

    .process-line-svg {
        width: 100%;
        max-width: 100%;
    }

    /* Step image positioning for 640-767px breakpoint */
    .step-card:nth-child(1) .step-image {
        position: absolute;
        bottom: 0;
        right: -32px;
        top: auto;
    }

    .step-card:nth-child(2) .step-image {
        position: absolute;
        bottom: 48px;
        right: -32px;
        top: auto;
    }

    .step-card:nth-child(3) .step-image {
        position: absolute;
        bottom: 104px;
        right: -20px;
        top: auto;
    }

    .step-card:nth-child(4) .step-image {
        position: absolute;
        bottom: 100px;
        right: -56px;
        top: auto;
    }
}

/* 768-799px: 2x2 grid with 6 columns each, 32px gap */
@media (min-width: 768px) and (max-width: 799px) {
    .process-steps {
        grid-template-columns: repeat(12, 1fr);
        gap: 32px;
    }

    .step-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    .step-card:nth-child(odd),
    .step-card:nth-child(even) {
        grid-column: auto;
        margin: 0;
        transform: none;
    }

    .step-card:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1;
    }

    .step-card:nth-child(2) {
        grid-column: 7 / 13;
        grid-row: 1;
    }

    .step-card:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 2;
    }

    .step-card:nth-child(4) {
        grid-column: 7 / 13;
        grid-row: 2;
    }

    .process-line-svg {
        width: 100%;
        max-width: 100%;
    }

    /* Step image positioning for 768-1023px breakpoint */
    .step-card:nth-child(1) .step-image {
        position: absolute;
        bottom: -20px;
        right: 2px;
        top: auto;
    }

    .step-card:nth-child(2) .step-image {
        position: absolute;
        bottom: 20px;
        right: 2px;
        top: auto;
    }

    .step-card:nth-child(3) .step-image {
        position: absolute;
        bottom: 20px;
        right: 2px;
        top: auto;
    }

    .step-card:nth-child(4) .step-image {
        position: absolute;
        bottom: 34px;
        right: -14px;
        top: auto;
    }
}

/* 800px+: Normal process section with path in 752px container */
@media (min-width: 800px) and (max-width: 1023px) {
    .process-section {
        background-image: url('images/bg.webp');
        background-size: 49.125rem;
        background-position: center;
        background-repeat: no-repeat;
    }

    .process-wrapper {
        max-width: 752px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        column-gap: 0;
        row-gap: var(--row-spacing);
        margin-top: 80px;
        width: 100%;
        max-width: 100%;
    }

    .step-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        height: 224px;
    }

    .step-card:nth-child(odd) {
        grid-column: 1;
        margin-right: 0;
        justify-self: start;
        transform: translateY(60px) scale(0.8) rotate(calc(var(--card-rotation) * -1));
    }

    .step-card:nth-child(odd).is-visible {
        transform: translateY(0) scale(1) rotate(calc(var(--card-rotation) * -1));
    }

    .step-card:nth-child(even) {
        grid-column: 2;
        margin-left: 0;
        justify-self: end;
        margin-top: calc((224px + var(--row-spacing)) / 2);
        transform: translateY(60px) scale(0.8) rotate(var(--card-rotation));
    }

    .step-card:nth-child(2),
    .step-card:nth-child(4) {
        margin-top: calc(((224px + var(--row-spacing)) / 2) + var(--pair-extra-spacing));
    }

    .step-card:nth-child(2) {
        margin-top: calc(((224px + var(--row-spacing)) / 2) + var(--first-pair-extra-spacing));
    }

    .step-card:nth-child(4) {
        margin-top: calc(((224px + var(--row-spacing)) / 2) + var(--third-pair-extra-spacing));
    }

    .step-card:nth-child(even).is-visible {
        transform: translateY(0) scale(1) rotate(var(--card-rotation));
    }

    .process-steps .step-card:nth-child(odd):hover {
        transform: translateY(-10px) scale(1.03) rotate(calc(var(--card-rotation) * -1));
        box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1), 0 25px 50px rgba(0,0,0,0.15);
    }

    .process-steps .step-card:nth-child(even):hover {
        transform: translateY(-10px) scale(1.03) rotate(var(--card-rotation));
        box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1), 0 25px 50px rgba(0,0,0,0.15);
    }

    .process-line-svg {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    /* Reset step-image positioning for normal process section - moved 40px to the right and 32px up */
    .step-card .step-image {
        transform: translate(40px, -32px);
    }

    .step-card:nth-child(1) .step-image {
        position: absolute;
        bottom: -60px;
        right: 2px;
        top: auto;
    }

    .step-card:nth-child(2) .step-image {
        position: absolute;
        bottom: 0;
        right: 2px;
        top: auto;
    }

    .step-card:nth-child(3) .step-image {
        position: absolute;
        bottom: -10px;
        right: 2px;
        top: auto;
    }

    .step-card:nth-child(4) .step-image {
        position: absolute;
        bottom: 14px;
        right: 6px;
        top: auto;
    }
}

/* 1024-1199px: Desktop layout with cards closer to center */
@media (min-width: 1024px) and (max-width: 1199px) {
    .process-section {
        padding-left: 32px;
        padding-right: 32px;
        background-image: url('images/bg.webp');
        background-size: 49.125rem;
        background-position: center;
        background-repeat: no-repeat;
    }

    .process-wrapper {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: var(--row-spacing);
        margin-top: 64px;
        max-width: 100%;
    }

    .step-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        height: 204px;
    }

    .step-card:nth-child(odd) {
        grid-column: 1;
        margin-right: 0;
        justify-self: end;
        transform: translateY(60px) scale(0.8) rotate(calc(var(--card-rotation) * -1));
    }

    .step-card:nth-child(odd).is-visible {
        transform: translateY(0) scale(1) rotate(calc(var(--card-rotation) * -1));
    }

    .step-card:nth-child(even) {
        grid-column: 2;
        margin-left: 0;
        justify-self: start;
        margin-top: calc((204px + var(--row-spacing)) / 2); 
        transform: translateY(60px) scale(0.8) rotate(var(--card-rotation));
    }

    .step-card:nth-child(2),
    .step-card:nth-child(4) {
        margin-top: calc(((204px + var(--row-spacing)) / 2) + var(--pair-extra-spacing));
    }

    .step-card:nth-child(2) {
        margin-top: calc(((204px + var(--row-spacing)) / 2) + var(--first-pair-extra-spacing));
    }

    .step-card:nth-child(4) {
        margin-top: calc(((204px + var(--row-spacing)) / 2) + var(--third-pair-extra-spacing));
    }

    .step-card:nth-child(even).is-visible {
        transform: translateY(0) scale(1) rotate(var(--card-rotation));
    }

    .process-steps .step-card:nth-child(odd):hover {
        transform: translateY(-10px) scale(1.03) rotate(calc(var(--card-rotation) * -1));
        box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1), 0 25px 50px rgba(0,0,0,0.15);
    }

    .process-steps .step-card:nth-child(even):hover {
        transform: translateY(-10px) scale(1.03) rotate(var(--card-rotation));
        box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1), 0 25px 50px rgba(0,0,0,0.15);
    }

    .process-line-svg {
        display: block;
    }
}

/* --- CARD STYLES (Fixed Height & Alignment) --- */
.step-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 24px;
    box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1);
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left; /* NEW: All content left-aligned */

    /* Initial Hidden State (Transform handles both animation and rotation) */
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card.is-visible {
    opacity: 1;
}

.step-card:nth-child(odd).is-visible {
    /* Restored: Visible State: Rotated Left, fixed position */
    transform: translateY(0) scale(1) rotate(calc(var(--card-rotation) * -1));
}

.step-card:nth-child(even).is-visible {
    /* Restored: Visible State: Rotated Right, fixed position */
    transform: translateY(0) scale(1) rotate(var(--card-rotation));
}

/* --- DESKTOP STYLES (1200px+) - LEFT COLUMN (ODD) ROTATION & ALIGNMENT --- */
@media (min-width: 1200px) {
    .process-steps {
        column-gap: 0;
        margin-top: 80px;
    }

    .step-card {
        min-width: 572px;
        height: 204px;
    }

.step-card:nth-child(odd) {
    grid-column: 1;
        margin-right: 0;
        justify-self: start;
    /* Restored: Initial State: Rotated Left, moved down */
    transform: translateY(60px) scale(0.8) rotate(calc(var(--card-rotation) * -1));
}


.process-steps .step-card:nth-child(odd):hover {
    /* Restored: Hover State */
    transform: translateY(-10px) scale(1.03) rotate(calc(var(--card-rotation) * -1));
    box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1), 0 25px 50px rgba(0,0,0,0.15);
}

/* --- RIGHT COLUMN (EVEN) ROTATION & ALIGNMENT --- */
.step-card:nth-child(even) {
    grid-column: 2;
        margin-left: 0;
        justify-self: end;
    /* Adjusted stagger based on new height (204px) and gap (variable) */
    margin-top: calc((204px + var(--row-spacing)) / 2); 
    /* Restored: Initial State: Rotated Right, moved down */
    transform: translateY(60px) scale(0.8) rotate(var(--card-rotation));
}

/* Extra spacing for first and fourth cards to loosen tight pairs */
.step-card:nth-child(2),
.step-card:nth-child(4) {
    margin-top: calc(((204px + var(--row-spacing)) / 2) + var(--pair-extra-spacing));
}

.step-card:nth-child(2) {
    margin-top: calc(((204px + var(--row-spacing)) / 2) + var(--first-pair-extra-spacing));
}

.step-card:nth-child(4) {
    margin-top: calc(((204px + var(--row-spacing)) / 2) + var(--third-pair-extra-spacing));
}


.process-steps .step-card:nth-child(even):hover {
     /* Restored: Hover State */
    transform: translateY(-10px) scale(1.03) rotate(var(--card-rotation));
     box-shadow: -123px 444px 129px 0px rgba(158,158,158,0), -79px 284px 118px 0px rgba(158,158,158,0.01), -44px 160px 100px 0px rgba(158,158,158,0.05), -20px 71px 74px 0px rgba(158,158,158,0.09), -5px 18px 41px 0px rgba(158,158,158,0.1), 0 25px 50px rgba(0,0,0,0.15);
    }
}




/* --- TYPOGRAPHY & NUMBERS (Left Aligned) --- */
.step-number {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    color: #dfe2df;
    transition: color 0.5s ease;
    line-height: 3.5rem;
    letter-spacing: -0.24px;
    font-family: 'Inter Display', sans-serif;
    margin-bottom: 20px;
}

.step-card.is-visible .step-number { color: #dfe2df; }

.step-card h3 { 
    font-size: 1.5rem; 
    margin: 0 0 8px 0; 
    color: #051d02; 
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.12px;
    font-family: 'Inter Display', sans-serif;
}

.step-card p { 
    color: #586156; 
    margin: 0; 
    line-height: 1.5rem; 
    font-size: 1rem;
    letter-spacing: -0.08px;
    font-family: 'Inter', sans-serif;
}

/* --- PROCESS IMAGES GROUP --- */
.process-images {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-30%, -50%);
    width: 400px;
    height: 400px;
}

.process-images img {
    display: block;
    position: absolute;
    height: auto;
    /* filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); */
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
    transform-origin: center center;
}

.step-card.is-visible .process-images img {
    opacity: 1;
    animation: stickyNotePlace 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stickyNotePlace {
    0% {
        transform: translateY(-20px) rotate(var(--initial-rotation, 0deg)) scale(0.9);
        opacity: 0;
    }
    60% {
        transform: translateY(5px) rotate(calc(var(--initial-rotation, 0deg) + 3deg)) scale(1.02);
        opacity: 1;
    }
    80% {
        transform: translateY(-2px) rotate(calc(var(--initial-rotation, 0deg) - 2deg)) scale(0.98);
    }
    100% {
        transform: translateY(0) rotate(var(--initial-rotation, 0deg)) scale(1);
        opacity: 1;
    }
}

@keyframes stickyNotePlaceScaled {
    0% {
        transform: translateY(-20px) rotate(var(--initial-rotation, 0deg)) scale(0.6);
        opacity: 0;
    }
    60% {
        transform: translateY(5px) rotate(calc(var(--initial-rotation, 0deg) + 3deg)) scale(0.78);
        opacity: 1;
    }
    80% {
        transform: translateY(-2px) rotate(calc(var(--initial-rotation, 0deg) - 2deg)) scale(0.72);
    }
    100% {
        transform: translateY(0) rotate(var(--initial-rotation, 0deg)) scale(0.75);
        opacity: 1;
    }
}



/* Specific sizes for each image (2x for retina) */
.process-images img:nth-child(1) {
    /* goals - positioned from right and bottom */
    width: 210px;
    height: 210px;
    object-fit: contain;
    bottom: 69px;
    right: -24px;
    --initial-rotation: 0deg;
    transform: rotate(0deg);
    z-index: 5;
    animation-delay: 0.1s;
}

.process-images img:nth-child(1):hover {
    transform: rotate(5deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}

.process-images img:nth-child(2) {
    /* ideal-client - positioned from right and bottom */
    width: 202px;
    height: 206px;
    object-fit: contain;
    bottom: 2px;
    right: -24px;
    --initial-rotation: 0deg;
    transform: rotate(0deg);
    z-index: 2;
    animation-delay: 0.2s;
}

.process-images img:nth-child(2):hover {
    transform: rotate(-4deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}

.process-images img:nth-child(3) {
    /* audit - positioned from bottom and left */
    width: 210px;
    height: 210px;
    object-fit: contain;
    bottom: 40px;
    right: 56px;
    --initial-rotation: 2deg;
    transform: rotate(2deg);
    z-index: 4;
    animation-delay: 0.15s;
}

.process-images img:nth-child(3):hover {
    transform: rotate(8deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}

.process-images img:nth-child(4) {
    /* sitemap - positioned from bottom and right */
    width: 248px;
    height: 332px;
    object-fit: contain;
    bottom: 24px;
    right: 49px;
    --initial-rotation: -4.30deg;
    transform: rotate(-4.30deg);
    z-index: 1;
    animation-delay: 0.05s;
}

.process-images img:nth-child(4):hover {
    transform: rotate(-8deg);
    /* filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)); */
}

/* Step 1 image */
.step-card:nth-child(1) .step-image {
    position: absolute;
    bottom: -80px;
    right: 2px;
    z-index: 1;
}

.step-card:nth-child(1) .step-image img {
    display: block;
    height: auto;
    max-width: 400px;
    width: 100%;
    transform: scale(1);
    /* filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); */
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
    transform-origin: bottom right;
}

@media (max-width: 1023px) {
    .step-card:nth-child(1) .step-image img {
        max-width: 100%;
    }
}

.step-card:nth-child(1).is-visible .step-image img {
    opacity: 1;
    animation: stickyNotePlaceScaled 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
    --initial-rotation: 0deg;
}

.step-card:nth-child(1) .step-image img:hover {
    transform: scale(0.75) rotate(3deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}

/* Step 2 image */
.step-card:nth-child(2) .step-image {
    position: absolute;
    bottom: -40px;
    right: 2px;
    z-index: 1;
}

.step-card:nth-child(2) .step-image img {
    display: block;
    height: auto;
    max-width: 400px;
    width: 100%;
    transform: scale(1);
    /* filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); */
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
    transform-origin: bottom right;
}

@media (max-width: 1023px) {
    .step-card:nth-child(2) .step-image img {
        max-width: 100%;
    }
}

.step-card:nth-child(2).is-visible .step-image img {
    opacity: 1;
    animation: stickyNotePlaceScaled 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
    --initial-rotation: 0deg;
}

.step-card:nth-child(2) .step-image img:hover {
    transform: scale(0.75) rotate(3deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}

/* Step 3 image */
.step-card:nth-child(3) .step-image {
    position: absolute;
    bottom: -40px;
    right: 2px;
    z-index: 1;
}

.step-card:nth-child(3) .step-image img {
    display: block;
    height: auto;
    max-width: 450px;
    width: 100%;
    transform: scale(1);
    /* filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); */
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
    transform-origin: bottom right;
}

@media (max-width: 1023px) {
    .step-card:nth-child(3) .step-image img {
        max-width: 100%;
    }
}

.step-card:nth-child(3).is-visible .step-image img {
    opacity: 1;
    animation: stickyNotePlaceScaled 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
    --initial-rotation: 0deg;
}

.step-card:nth-child(3) .step-image img:hover {
    transform: scale(0.75) rotate(3deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}

/* Step 4 image */
.step-card:nth-child(4) .step-image {
    position: absolute;
    bottom: -16px;
    right: 6px;
    z-index: 1;
}

.step-card:nth-child(4) .step-image img {
    display: block;
    height: auto;
    max-width: 450px;
    width: 100%;
    transform: scale(1);
    /* filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); */
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
    transform-origin: bottom right;
}

@media (max-width: 1023px) {
    .step-card:nth-child(4) .step-image img {
        max-width: 100%;
    }
}

.step-card:nth-child(4).is-visible .step-image img {
    opacity: 1;
    animation: stickyNotePlaceScaled 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
    --initial-rotation: 0deg;
}

.step-card:nth-child(4) .step-image img:hover {
    transform: scale(0.75) rotate(3deg);
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); */
}


/* --- MOBILE RESET --- */
@media (max-width: 639px) {

    .process-steps { 
        grid-template-columns: repeat(12, 1fr); 
        row-gap: 56px;
        column-gap: 0;
        padding-top: 0; 
    }
    .process-wrapper { 
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .step-card { 
        height: auto; 
        min-height: auto;
        min-width: auto;
    } /* Allow height to collapse on mobile */
    /* Reset all specific odd/even margins and rotations */
    .step-card:nth-child(odd), .step-card:nth-child(even) {
        grid-column: span 12; 
        margin: 0; 
        text-align: left;
        transform: none;
    }
    .process-line-svg { display: none; }
    .process-images { display: none; } /* Hide images on mobile */
    
    /* Mobile-specific image styles */
    .step-card:nth-child(1) .step-image {
        top: -40px;
        right: -38px;
        bottom: auto;
    }
    
    .step-card:nth-child(2) .step-image {
        top: -40px;
        right: -38px;
        bottom: auto;
    }
    
    .step-card:nth-child(3) .step-image {
        top: -40px;
        right: -38px;
        bottom: auto;
    }
    
    .step-card:nth-child(4) .step-image {
        top: -40px;
        right: -38px;
        bottom: auto;
    }
    
    .step-card:nth-child(1) .step-image img {
        max-width: 300px;
        transform-origin: top right;
    }
    
    .step-card:nth-child(2) .step-image img {
        max-width: 300px;
        transform-origin: top right;
    }
    
    .step-card:nth-child(3) .step-image img {
        max-width: 338px;
        transform-origin: top right;
    }
    
    .step-card:nth-child(4) .step-image img {
        max-width: 338px;
        transform-origin: top right;
    }
    
    /* Simple fade in for mobile */
    .process-steps .step-card { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* FAQ Section */
.faq-section {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #fafafa;
    margin: 0;
    overflow: visible;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .faq-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .faq-section {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1200px) {
    .faq-section {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 0;
        padding-right: 0;
    }
}

.faq-wrapper {
    max-width: 1120px;
    margin: 0 auto;
}


/* FAQ section - desktop specific styles (1200px+) */
@media (min-width: 1200px) {
    .faq-subtitle {
        max-width: 542px;
    }
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .faq-header {
        margin-bottom: 48px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .faq-header {
        margin-bottom: 64px;
    }
}

@media (min-width: 1200px) {
    .faq-header {
        gap: 24px;
        margin-bottom: 80px;
    }
}

.faq-subtitle a {
    color: #18d100;
    text-decoration: none;
}

.faq-subtitle a:hover {
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    box-shadow: 0px 113px 32px 0px rgba(162,160,160,0), 
                0px 72px 29px 0px rgba(162,160,160,0.01), 
                0px 41px 24px 0px rgba(162,160,160,0.05), 
                0px 18px 18px 0px rgba(162,160,160,0.09), 
                0px 5px 10px 0px rgba(162,160,160,0.1);
    overflow: hidden;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0px 113px 32px 0px rgba(162,160,160,0), 
                0px 72px 29px 0px rgba(162,160,160,0.01), 
                0px 41px 24px 0px rgba(162,160,160,0.05), 
                0px 18px 18px 0px rgba(162,160,160,0.09), 
                0px 5px 10px 0px rgba(162,160,160,0.1),
                0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item-header {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    cursor: pointer;
}

.faq-question {
    flex: 1;
    font-family: 'Inter Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    color: #051d02;
    letter-spacing: -0.12px;
    margin: 0;
    pointer-events: none;
    transition: color 0.2s ease;
}

.faq-item:hover .faq-question {
    color: #18d100;
}

.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-icon svg {
    position: absolute;
    right: 0;
    top: 0;
    color: #A1A1A1;
}

.faq-icon-plus {
    opacity: 1;
}

.faq-item.active .faq-icon-plus {
    opacity: 0;
}

.faq-icon-minus {
    opacity: 0;
}

.faq-item.active .faq-icon-minus {
    opacity: 1;
}

.faq-answer {
    display: none !important;
}

.faq-item.active .faq-answer {
    display: block !important;
    margin-top: 24px;
}

.faq-answer-text {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-text {
    transform: translateY(0);
}

.faq-answer-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #586156;
    letter-spacing: -0.08px;
    margin: 0;
}


@media (max-width: 639px) {
    .faq-question {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    background: #fafafa;
    overflow: visible;
    padding-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-section {
        padding-top: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .footer-section {
        padding-top: 64px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1200px) {
    .footer-section {
        padding-top: 80px;
        padding-left: 0;
        padding-right: 0;
    }
}

.footer-background {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 375px;
    height: 514px;
    background-image: url('images/footer-bg-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-background {
        background-image: url('images/footer-bg-tablet.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        max-width: 641px;
        height: 514px;
        bottom: 40px;
        top: auto;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .footer-background {
        background: radial-gradient(ellipse at center, rgba(250,250,250,0) 0%, rgba(250,250,250,1) 100%);
        max-width: 1440px;
        height: 604px;
        top: 0;
        bottom: auto;
    }
}

@media (min-width: 1200px) {
    .footer-background {
        background-image: url('images/footer-bg-desktop.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        max-width: 1440px;
        height: 604px;
        top: 0;
        bottom: auto;
    }
}

.footer-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-wrapper {
        max-width: 469px;
    }
}


.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 639px) {
    .footer-content {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (max-width: 639px) {
    .footer-header {
        gap: 16px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-header {
        gap: 16px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .footer-header {
        gap: 24px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (min-width: 1200px) {
    .footer-header {
        gap: 24px;
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

/* Footer section - desktop specific styles (1200px+) */
@media (min-width: 1200px) {
    .footer-title {
        max-width: 732px;
    }

    .footer-text {
        max-width: 732px;
    }
}

.footer-text .highlight {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.footer-text-paragraph {
    margin: 0 0 8px 0;
}

.footer-cta {
    position: relative;
}

.footer-cta-button {
    border: 0px solid rgba(5, 29, 2, 0.08);
    border-radius: 16px;
    padding: 20px 48px;
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #69FF55 0%, #68FF54 8.59%, #67FE53 17.48%, #65FD51 26.53%, #62FB4E 35.61%, #5EF94A 44.59%, #5AF645 53.34%, #55F440 61.73%, #4FF03A 69.63%, #49ED33 76.9%, #42E92C 83.41%, #3AE524 89.03%, #32E01C 93.63%, #2ADB13 97.08%, #21D60A 99.25%, #18D100 100%);
    box-shadow: 0 -4px 3px 1px #18D100 inset, 0 0 0 4px rgba(255, 255, 255, 0.40) inset, 0 110px 31px 0 rgba(27, 204, 0, 0.00), 0 71px 28px 0 rgba(27, 204, 0, 0.01), 0 40px 24px 0 rgba(27, 204, 0, 0.05), 0 18px 18px 0 rgba(27, 204, 0, 0.09), 0 4px 10px 0 rgba(27, 204, 0, 0.10);
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
}

.footer-cta-button:active {
    transform: scale(0.9);
}

.footer-cta-text-wrapper {
    position: relative;
    height: 64px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.footer-cta-button:hover .footer-cta-text-wrapper {
    transform: translateY(-64px);
}

.footer-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 4rem;
    height: 64px;
    color: #051d02;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-cta-button:hover .footer-cta-text {
    opacity: 0;
}

.footer-cta-text-hover {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 4rem;
    height: 64px;
    color: #051d02;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-cta-button:hover .footer-cta-text-hover {
    opacity: 1;
}

.footer-cta-arrow {
    position: absolute;
    bottom: -60px;
    right: -30px;
    transform: rotate(0deg);
    pointer-events: none;
}

.footer-cta-arrow img {
    width: auto;
    height: auto;
    display: block;
}

.footer-bottom {
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

@media (max-width: 639px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        max-width: 327px;
        padding: 16px 24px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        max-width: 592px;
        padding: 16px 24px;
    }
}

@media (min-width: 1200px) {
    .footer-bottom {
        height: 56px;
        padding: 0;
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #1e1e1e;
}

.footer-privacy {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #051d02;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy:hover {
    color: #18d100;
}

@media (max-width: 639px) {
    .footer-content {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-cta-arrow {
        display: none;
    }
}
