/* Neo-Brutalist Design System */
:root {
    --sky-blue: #B3D7E7;
    --warm-off-white: #F6F2ED;
    --pink-lavender: #F3CCE7;
    --deep-green: #085F47;
    --ink-black: #100908;
    --accent-orange: #E57236;
    --accent-lime: #D0CC4E;
    --accent-blue: #2792C8;
    --soft-blush: #F2D1DE;
    
    --border-thick: 4px;
    --shadow-offset: 8px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink-black);
    background-color: var(--warm-off-white);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: var(--warm-off-white);
    border-bottom: 2px solid var(--ink-black);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 var(--shadow-offset) 0 0 var(--ink-black);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 20px;
    width: 100%;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink-black);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.logo-img svg {
    height: 38px;
    width: auto;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 3px solid var(--ink-black);
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1001;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--ink-black);
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav {
    display: flex;
    gap: 0;
    flex-wrap: nowrap !important;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-link {
    padding: 6px 6px;
    text-decoration: none;
    color: var(--ink-black);
    font-weight: 600;
    font-size: 13px;
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .nav-link-dropdown {
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .dropdown-arrow {
        font-size: 12px;
    }
}
    border: 2px solid transparent;
    transition: all 0.2s ease;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0 1px;
}

.nav-link-dropdown {
    padding: 6px 8px !important;
}

.nav-link:hover {
    border-color: var(--ink-black);
    background-color: var(--accent-lime);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.nav-link.cta-nav {
    background-color: var(--accent-blue);
    color: white;
    border-color: var(--ink-black);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.nav-link.cta-nav:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 0 var(--ink-black);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
    margin: 0 1px;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background-color: var(--warm-off-white);
    border: 4px solid var(--ink-black);
    border-radius: 8px;
    box-shadow: 8px 8px 0 0 var(--ink-black);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    padding: 10px 14px;
    text-decoration: none;
    color: var(--ink-black);
    font-weight: 400;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.15s ease;
    display: block;
    border: 2px solid transparent;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dropdown-item:hover {
    background-color: var(--accent-lime);
    border-color: var(--ink-black);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

/* Hero Section */
.hero {
    background-color: var(--sky-blue);
    padding: 10px 0 15px;
    position: relative;
    border-bottom: var(--border-thick) solid var(--ink-black);
    overflow: visible;
}

/* Paper wrinkle texture overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 0, 0, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(0, 0, 0, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 0, 0, 0.03) 0%,
            transparent 60%
        ),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 
        100% 100%,
        100% 100%,
        200% 200%,
        200% 200%,
        300% 300%,
        200px 200px;
    background-position: 
        0 0,
        0 0,
        0 0,
        100% 100%,
        50% 50%,
        0 0;
    opacity: 0.6;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.squiggle-stroke {
    position: absolute;
    pointer-events: none;
}

.hero-wrap {
    position: relative;
    overflow: visible;
    min-height: 180vh;
}

/* Make the wiggle a "thread" that crosses the fold */
.thread-wiggle {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: 500px !important;
    height: 180vh !important;
    min-height: 1200px !important;
    z-index: 1 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: floatWiggle 7s ease-in-out infinite;
    overflow: visible !important;
    display: block !important;
}


.wiggle-outline {
    opacity: 1 !important;
}

.wiggle-main {
    opacity: 1 !important;
}

.squiggle-section {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    transform: rotate(25deg);
    animation: wobble 6s ease-in-out infinite;
}

@keyframes floatWiggle {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) translateY(-10px) rotate(1.5deg);
    }
    50% {
        transform: translateX(-50%) translateY(10px) rotate(-2deg);
    }
    75% {
        transform: translateX(-50%) translateY(-5px) rotate(1deg);
    }
}

.squiggle-section {
    animation: wobbleSection 6s ease-in-out infinite;
}

@keyframes wobbleSection {
    0%, 100% {
        transform: rotate(25deg) translate(0, 0);
    }
    25% {
        transform: rotate(23deg) translate(4px, -6px);
    }
    50% {
        transform: rotate(27deg) translate(-4px, 4px);
    }
    75% {
        transform: rotate(24deg) translate(2px, -2px);
    }
}

/* Ensure content sits above the wiggle */
.hero, .next-section {
    position: relative;
    z-index: 2;
}

.hero {
    overflow: visible;
}

.hero .container {
    position: relative;
    z-index: 3;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-top: 0 !important;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Aperture Lens Follow */
.aperture-lens {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.aperture-grain {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(#000 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.aperture-lens-group {
    position: relative;
    transition: transform 35ms linear;
}

.aperture-outer-ring {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
}

.aperture-shadow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(16, 9, 8, 0.5);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.aperture-glass-base {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.85), rgba(250, 250, 255, 0.25) 35%, rgba(30, 40, 55, 0.18) 70%, rgba(20, 25, 35, 0.28));
    border: 1px solid rgba(0, 0, 0, 0.18);
}

.aperture-housing {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 14, 20, 0.65), rgba(10, 14, 20, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 35ms linear;
}

.aperture-blades-container {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    transition: transform 35ms linear;
    transform: rotate(8deg);
}

.aperture-blade {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44%;
    height: 18%;
    transform-origin: left center;
}

.aperture-blade-inner {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.aperture-center-opening {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    margin-top: -36px;
    margin-left: -36px;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 40%, rgba(30, 35, 45, 0.35), rgba(0, 0, 0, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.aperture-highlight {
    position: absolute;
    left: 22%;
    top: 18%;
    width: 32%;
    height: 22%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.05));
    filter: blur(0.2px);
    opacity: 0.75;
    transition: transform 35ms linear;
    transform: rotate(-18deg);
}

.aperture-ticks {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.aperture-tick {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 10px;
    background: rgba(16, 9, 8, 0.2);
    transform-origin: bottom center;
    margin-left: -1px;
    pointer-events: none;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.aperture-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(16, 9, 8, 0.6);
    text-transform: uppercase;
    pointer-events: none;
}

@media (min-width: 768px) {
    .aperture-lens {
        height: 460px;
    }
    
    .aperture-outer-ring {
        width: 320px;
        height: 320px;
    }
    
    .aperture-center-opening {
        width: 95px;
        height: 95px;
        margin-top: -47.5px;
        margin-left: -47.5px;
    }
}

@media (min-width: 1024px) {
    .aperture-lens {
        height: 520px;
        max-width: 680px;
    }
    
    .aperture-outer-ring {
        width: 360px;
        height: 360px;
    }
    
    .aperture-center-opening {
        width: 110px;
        height: 110px;
        margin-top: -55px;
        margin-left: -55px;
    }
    
    .aperture-tick {
        height: 14px;
    }
}

.hero-title {
    font-size: clamp(56px, 6vw, 92px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-top: 0 !important;
    margin-bottom: 0;
    color: var(--ink-black);
    position: relative;
    display: inline-block;
    z-index: 2;
}

.hero-title-main {
    font-weight: 700;
    display: block;
    letter-spacing: -0.02em;
    margin-top: 0 !important;
    margin-bottom: 0;
    line-height: 0.92;
}

.hero-title-sub-line1,
.hero-mid {
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 600;
    opacity: 0.85;
    display: inline;
    margin-right: 8px;
}

.hero-title-sub-line2,
.hero-subtitle {
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 6px;
    display: inline;
    position: relative;
}

.hero-subhead,
.hero-body {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 22px;
    margin-bottom: 0;
    color: var(--ink-black);
    max-width: 520px;
}

.hero-ctas,
.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
    align-items: flex-start;
}

.cta-with-consultation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 20px;
}

.doodled-arrow-wrapper {
    position: absolute;
    left: -25px;
    top: 12px;
    transform: rotate(-5deg);
    z-index: 1;
    pointer-events: none;
}

.doodled-arrow {
    width: 35px;
    height: 18px;
    opacity: 0.85;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.15));
}

.free-consultation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.hand-drawn-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
    transform: rotate(-1deg);
    text-shadow: 
        1px 1px 0 rgba(0, 0, 0, 0.1),
        0 0 8px rgba(229, 114, 54, 0.15);
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    backdrop-filter: blur(2px);
}

.hand-drawn-text::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 5%;
    width: 90%;
    height: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 4'%3E%3Cpath d='M0,2 Q25,0.5 50,2 Q75,3.5 100,1.5 Q125,3 150,1 Q175,2.5 200,2' stroke='%23E57236' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
    transform: rotate(0.3deg);
}

.hand-drawn-text::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -12px;
    font-size: 18px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 18px) clamp(20px, 4vw, 36px);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600 !important;
    text-decoration: none;
    border: clamp(3px, 0.5vw, 5px) solid var(--ink-black);
    border-radius: 8px;
    transition: all 0.15s ease;
    cursor: pointer;
    box-shadow: clamp(6px, 1.2vw, 12px) clamp(6px, 1.2vw, 12px) 0 0 var(--ink-black);
    text-align: center;
    position: relative;
    transform: translate(0, 0);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    position: relative;
    overflow: visible;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8'%3E%3Cpath d='M0,4 Q10,1 20,4 Q30,7 40,3' stroke='white' stroke-width='10' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.3'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.btn-primary:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.btn-primary:active {
    transform: translate(10px, 10px);
    box-shadow: 2px 2px 0 0 var(--ink-black);
}

.btn-primary:hover::after {
    transform: rotate(5deg);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 8px 8px 0 0 var(--ink-black) !important;
}

.btn-primary:disabled:hover {
    transform: none !important;
    box-shadow: 8px 8px 0 0 var(--ink-black) !important;
}

.btn-secondary {
    background-color: var(--warm-off-white);
    color: var(--ink-black);
}

.btn-secondary:hover {
    background-color: var(--accent-lime);
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.btn-secondary:active {
    transform: translate(10px, 10px);
    box-shadow: 2px 2px 0 0 var(--ink-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--ink-black);
}

.btn-outline:hover {
    background-color: var(--pink-lavender);
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.btn-outline:active {
    transform: translate(10px, 10px);
    box-shadow: 2px 2px 0 0 var(--ink-black);
}

.btn-large {
    padding: 20px 48px;
    font-size: 20px;
}

/* Services Preview */
.services-preview {
    padding: 60px 0 100px;
    background-color: var(--warm-off-white);
    overflow: visible;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 30px;
    margin-top: 0;
    color: var(--ink-black);
    letter-spacing: -1px;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 25px;
}

.proof .section-title {
    margin-top: -20px;
}

.white-label .section-title,
.white-label h2 {
    margin-top: -20px;
}

.section-title svg {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 600px;
    height: 20px;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Brush Stroke Elements */
.brush-underline,
.brush-highlight,
.brush-accent {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 20px;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    z-index: 0;
}

.hero-title-sub-line2 {
    position: relative;
    display: inline-block;
}

.hero-title-sub-line2 .brush-underline {
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
}

.brush-highlight {
    bottom: -5px;
    height: 25px;
    opacity: 0.5;
    width: 110%;
    left: -5%;
}

.brush-accent {
    bottom: -10px;
    height: 18px;
}

.cta-title {
    position: relative;
    display: inline-block;
}

.cta-title .brush-accent {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
}

.why-fast-text h2 .brush-highlight,
.white-label-text h2 .brush-highlight {
    width: 110%;
    left: -5%;
    bottom: -8px;
}

/* Brush Color Classes */
.brush-orange {
    color: var(--accent-orange);
}

.brush-blue {
    color: var(--accent-blue);
}

.brush-lime {
    color: var(--accent-lime);
}

.brush-pink {
    color: var(--pink-lavender);
}

.brush-green {
    color: var(--deep-green) !important;
    stroke: var(--deep-green) !important;
}

.brush-white {
    color: white;
}

/* Add brush strokes to headings */
h2 {
    position: relative;
    display: inline-block;
}

.why-fast-text h2,
.white-label-text h2 {
    display: inline-block;
}

/* Decorative brush elements */
.service-card {
    position: relative;
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 12'%3E%3Cpath d='M0,6 Q20,2 40,6 Q60,10 80,4' stroke='%23E57236' stroke-width='14' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.4'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
    transform: rotate(15deg);
}

.testimonial-card {
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 100px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'%3E%3Cpath d='M0,4 Q25,1 50,4 Q75,7 100,3' stroke='%23D0CC4E' stroke-width='12' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.4'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/* Brush stroke decorative elements for sections */
.services-preview::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    width: 150px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 12'%3E%3Cpath d='M0,6 Q30,2 60,6 Q90,10 120,4 Q150,8 150,5' stroke='%23F3CCE7' stroke-width='14' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.proof::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 5%;
    width: 120px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M0,5 Q20,1 40,5 Q60,9 80,3 Q100,7 120,4' stroke='%232792C8' stroke-width='16' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.4'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.services-preview,
.proof {
    position: relative;
}

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

.service-card {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 var(--ink-black);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink-black);
}

.service-card p {
    font-size: 16px;
    color: var(--ink-black);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Fast Section */
.why-fast {
    padding: 60px 0;
    background-color: var(--deep-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-fast-content {
    display: block;
    margin-top: -30px;
}

.why-fast-text {
    margin-top: 0;
    padding-top: 0;
}

.why-fast-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 24px;
    margin-top: 0;
    color: white;
    letter-spacing: -1px;
}

.lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-lime);
}

.why-fast-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: 800;
    font-size: 24px;
}

.why-fast-visual {
    position: relative;
    height: 400px;
}

/* Proof Section */
.proof {
    padding: 60px 0;
    background-color: var(--pink-lavender);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--ink-black);
}

.testimonial-author {
    font-weight: 700;
    color: var(--deep-green);
    font-size: 16px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 20px 40px;
    background-color: white;
    border: 3px solid var(--ink-black);
    border-radius: 8px;
    font-weight: 700;
    color: var(--ink-black);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

/* Pricing Preview */
.pricing-preview {
    padding: 100px 0;
    background-color: var(--warm-off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 var(--ink-black);
}

.pricing-card.featured {
    background-color: var(--accent-lime);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translate(-4px, -4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-orange);
    color: white;
    padding: 6px 16px;
    border: 3px solid var(--ink-black);
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 3px 3px 0 0 var(--ink-black);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ink-black);
}

.price {
    font-size: 56px;
    font-weight: 900;
    color: var(--ink-black);
    margin-bottom: 8px;
}

.price-desc {
    font-size: 18px;
    color: var(--ink-black);
    margin-bottom: 32px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--ink-black);
}

.pricing-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 20px;
}

/* White-Label Section */
.white-label {
    padding: 60px 0;
    background-color: var(--soft-blush);
    position: relative;
    overflow: hidden;
}

.white-label-content {
    display: block;
    margin-top: -20px;
}

.white-label-text {
    margin-top: 0;
    padding-top: 0;
}

.white-label-text h2 {
    margin-top: 0;
}

.white-label-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--ink-black);
    letter-spacing: -1px;
}

/* Process Timeline */
.process {
    padding: 40px 0;
    background-color: var(--warm-off-white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.timeline-item {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
    position: relative;
    overflow: visible;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 50px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 6'%3E%3Cpath d='M0,3 Q12,1 25,3 Q37,5 50,2' stroke='%23D0CC4E' stroke-width='8' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    transform: rotate(-15deg);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-orange);
    color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.timeline-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink-black);
}

.timeline-item p {
    font-size: 16px;
    color: var(--ink-black);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background-color: var(--accent-blue);
    color: white;
    text-align: center;
    border-top: var(--border-thick) solid var(--ink-black);
}

.final-cta .container {
    margin-top: -20px;
}

.cta-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 24px;
    margin-top: 0;
    color: white;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: white;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--ink-black);
    color: white;
    padding: 60px 0 30px;
    border-top: var(--border-thick) solid var(--accent-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--accent-lime);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Page-Specific Styles */
.page-hero {
    padding: 40px 0;
    background-color: var(--sky-blue);
    border-bottom: var(--border-thick) solid var(--ink-black);
    text-align: center;
}

.page-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--ink-black);
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.page-title svg {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background-color: var(--warm-off-white);
}

.services-detail:nth-child(even) {
    background-color: var(--warm-off-white);
}

.service-detail-card {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 60px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.service-icon-large {
    font-size: 64px;
}

.service-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-detail-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--ink-black);
    letter-spacing: -1px;
    margin: 0;
}

.service-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--accent-orange);
    margin: 0;
    transform: rotate(-0.5deg);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.service-lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--ink-black);
}

.service-detail-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--ink-black);
}

.service-features {
    margin: 40px 0;
}

.service-features h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ink-black);
}

/* Problem/Solution Boxes */
.service-problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.problem-box,
.solution-box {
    padding: 24px;
    border: 3px solid var(--ink-black);
    border-radius: 8px;
    background-color: var(--warm-off-white);
}

.problem-box {
    background-color: rgba(229, 114, 54, 0.1);
    border-color: var(--accent-orange);
}

.solution-box {
    background-color: rgba(208, 204, 78, 0.15);
    border-color: var(--accent-lime);
}

.problem-box h3,
.solution-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink-black);
}

.problem-box p,
.solution-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-black);
    margin: 0;
}

/* Service Delivery & Result */
.service-delivery {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--warm-off-white);
    border: 3px solid var(--ink-black);
    border-radius: 8px;
}

.delivery-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: 12px;
}

.service-result {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-green);
    margin: 0;
}

/* Case Studies */
.case-studies {
    padding: 40px 0;
    background-color: var(--warm-off-white);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.case-study-card {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.case-study-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 var(--ink-black);
}

.case-study-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.case-study-content {
    padding: 32px;
}

.case-study-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--ink-black);
}

.case-study-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.case-study-status {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-black);
    background-color: var(--warm-yellow);
    border: 2px solid var(--ink-black);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-description {
    margin-bottom: 24px;
}

.case-study-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    color: var(--ink-black);
}

.case-study-read-more {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    margin-top: 8px;
    cursor: pointer;
    user-select: none;
}

.case-study-read-more:hover {
    text-decoration: underline;
}

.case-study-text.expanded {
    -webkit-line-clamp: none !important;
    display: block !important;
}

.case-study-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Full Page */
.pricing-full {
    padding: 100px 0;
    background-color: var(--warm-off-white);
}

.price-note {
    font-size: 16px;
    color: var(--ink-black);
    opacity: 0.7;
    margin-bottom: 32px;
    font-style: italic;
}

/* FAQ Section */
.pricing-faq {
    padding: 100px 0;
    background-color: var(--sky-blue);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
}

.faq-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--ink-black);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-black);
}

/* About Page */
.about-story {
    padding: 100px 0;
    background-color: var(--warm-off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--ink-black);
    letter-spacing: -1px;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 32px 0 16px;
    color: var(--ink-black);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--ink-black);
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-values {
    padding: 100px 0;
    background-color: var(--pink-lavender);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
}

.value-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ink-black);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-black);
}

.about-la {
    padding: 100px 0;
    background-color: var(--deep-green);
    color: white;
}

.about-la-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-la-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -1px;
}

.about-la-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: white;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background-color: var(--warm-off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: white;
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
}

.contact-form-container h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ink-black);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 3px solid var(--ink-black);
    box-shadow: 4px 4px 0 0 var(--ink-black);
}

.form-message-success {
    background-color: var(--accent-lime);
    color: var(--ink-black);
}

.form-message-error {
    background-color: #ffebee;
    color: #c62828;
    border-color: #c62828;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink-black);
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px;
    border: 3px solid var(--ink-black);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-off-white);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background-color: white;
    box-shadow: 4px 4px 0 0 var(--ink-black);
    transform: translate(-2px, -2px);
}

.contact-info {
    background-color: var(--accent-lime);
    border: var(--border-thick) solid var(--ink-black);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink-black);
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--ink-black);
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink-black);
}

.info-item a,
.info-item p {
    font-size: 18px;
    color: var(--ink-black);
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
/* Desktop - ensure nav stays in one line */
@media (min-width: 769px) {
    .nav {
        flex-wrap: nowrap !important;
    }
    
    .header-content {
        flex-wrap: nowrap !important;
        flex-direction: row !important;
    }
    
    .logo-link {
        flex-shrink: 0;
    }
    
    .nav {
        margin-left: auto;
    }
}

/* Tablet and below (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .header {
        padding: 16px 0;
    }

    .header-content {
        flex-direction: row !important;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap !important;
        height: auto;
    }
    
    .logo-link {
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 36px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
        order: 2;
    }

    .nav {
        display: none !important;
    }

    .nav.active {
        display: flex !important;
        position: fixed !important;
        top: 0;
        right: 0 !important;
        width: 280px;
        height: 100vh;
        background-color: var(--warm-off-white);
        border-left: 4px solid var(--ink-black);
        box-shadow: -8px 0 0 0 var(--ink-black);
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        white-space: normal !important;
        margin-left: 0 !important;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 12px;
        font-size: 18px;
        width: 100%;
        display: block;
        border-bottom: 2px solid var(--ink-black);
        white-space: normal;
    }
    
    .nav-link-dropdown {
        padding: 16px 12px;
        font-size: 18px;
    }

    .cta-nav {
        margin-top: 12px;
        background-color: var(--accent-orange);
        color: white;
        text-align: center;
        border-radius: 4px;
    }

    .nav-dropdown {
        width: 100%;
        position: relative;
    }

    .nav-link-dropdown {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 2px solid var(--ink-black) !important;
        padding: 8px 0 !important;
        margin: 0 !important;
        margin-top: 8px !important;
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        background-color: var(--warm-off-white) !important;
        pointer-events: auto !important;
        z-index: 1 !important;
        overflow: visible !important;
        min-width: 0 !important;
        transition: none !important;
    }

    .nav-dropdown.active .dropdown-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-item {
        padding: 12px 16px !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        text-align: left !important;
        display: block !important;
        color: var(--ink-black) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(16, 9, 8, 0.1) !important;
    }
    
    .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-item:hover {
        background-color: rgba(16, 9, 8, 0.05) !important;
    }

    /* Hero Section */
    .hero {
        padding: 10px 0 15px;
        overflow: hidden;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .aperture-lens {
        max-width: 100%;
        height: 300px;
    }
    
    .aperture-outer-ring {
        width: 200px;
        height: 200px;
    }
    
    .aperture-center-opening {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
    }
    
    .aperture-tick {
        transform-origin: bottom center;
    }

    .thread-wiggle {
        width: min(500px, 60vw);
        height: 150vh;
        opacity: 0.4;
    }

    .hero-title-main {
        font-size: clamp(32px, 8vw, 48px);
        letter-spacing: -2px;
    }

    .hero-title-sub {
        font-size: 20px;
    }

    .hero-subhead {
        font-size: clamp(18px, 4vw, 22px);
    }

    .hero-ctas {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 30px;
        width: 100%;
        flex-wrap: nowrap !important;
    }

    .cta-with-consultation {
        flex: 1 1 0;
        min-width: 0;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 50%;
    }

    .cta-with-consultation .btn {
        width: 100%;
        flex: none;
        text-align: center;
    }

    .btn-secondary {
        flex: 1 1 0;
        min-width: 0;
        max-width: 50%;
        width: 100%;
    }
    
    .doodled-arrow-wrapper {
        left: -20px;
        top: 10px;
    }
    
    .doodled-arrow {
        width: 30px;
        height: 15px;
    }

    .btn-secondary {
        flex: 1;
        min-width: 0;
        padding: 14px 20px;
    }

    .btn {
        width: auto;
        max-width: 85%;
        padding: 14px 20px;
        font-size: 15px;
        border-width: 4px;
        box-shadow: 8px 8px 0 0 var(--ink-black);
    }

    .btn:hover {
        transform: translate(6px, 6px);
        box-shadow: 4px 4px 0 0 var(--ink-black);
    }

    .btn:active {
        transform: translate(7px, 7px);
        box-shadow: 2px 2px 0 0 var(--ink-black);
    }

    .hand-drawn-text {
        font-size: 10px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 40px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 24px;
    }

    /* Two Column Layouts */
    .why-fast-content,
    .white-label-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-fast-visual,
    .white-label-visual,
    .about-visual {
        height: 300px;
    }

    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translate(-4px, -4px);
    }

    /* Timeline */
    .timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Service Detail Pages */
    .service-problem-solution {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-card {
        padding: 32px 20px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .service-detail-header h2 {
        font-size: clamp(32px, 6vw, 40px);
    }

    .service-icon-large {
        font-size: 48px;
    }

    /* Contact Page */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container,
    .contact-info {
        padding: 32px 24px;
    }

    /* Case Studies */
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .case-studies {
        padding: 30px 0;
        margin-top: 0;
    }
    
    .case-study-card {
        border-radius: 8px;
    }
    
    .case-study-image {
        height: 140px;
    }
    
    .case-study-content {
        padding: 16px;
    }
    
    .case-study-content h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .case-study-type {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .case-study-status {
        margin-left: 8px;
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .case-study-description {
        margin-bottom: 12px;
    }
    
    .case-study-text {
        font-size: 13px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .case-study-read-more {
        display: inline-block;
    }
    
    .case-study-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }

    .case-study-detail-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .case-study-box {
        padding: 24px !important;
    }

    .case-study-takeaway {
        padding: 32px 24px !important;
    }

    .case-study-stats {
        flex-direction: column;
        gap: 24px;
    }

    .case-study-section img {
        border-width: 3px !important;
        box-shadow: 6px 6px 0 0 var(--ink-black) !important;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Trust Logos */
    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .header {
        padding: 12px 0;
    }

    .logo {
        font-size: 16px;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Hero */
    .hero {
        padding: 8px 0 12px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .aperture-lens {
        max-width: 100%;
        height: 250px;
    }
    
    .aperture-outer-ring {
        width: 180px;
        height: 180px;
    }
    
    .aperture-center-opening {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }
    
    .aperture-label {
        font-size: 10px;
        bottom: -35px;
    }
    
    .aperture-tick {
        height: 8px;
    }

    .thread-wiggle {
        display: none; /* Hide squiggle on very small screens */
    }

    .squiggle-section {
        display: none; /* Hide section squiggles on mobile */
    }

    .hero-title-main {
        font-size: clamp(28px, 10vw, 36px);
        letter-spacing: -1px;
    }

    .hero-title-sub {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .hero-subhead {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-ctas {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }

    .cta-with-consultation {
        flex: 1 1 0;
        min-width: 0;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-with-consultation .btn {
        width: 100%;
    }

    .btn-secondary {
        flex: 1 1 0;
        min-width: 0;
        max-width: 50%;
        width: 100%;
        padding: 12px 16px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
        border-width: 3px;
        box-shadow: 6px 6px 0 0 var(--ink-black);
    }

    .btn:hover {
        transform: translate(5px, 5px);
        box-shadow: 3px 3px 0 0 var(--ink-black);
    }

    .btn:active {
        transform: translate(6px, 6px);
        box-shadow: 2px 2px 0 0 var(--ink-black);
    }

    .hand-drawn-text {
        font-size: 10px;
        padding: 3px 10px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 32px);
        margin-bottom: 30px;
    }

    /* Cards */
    .service-card,
    .testimonial-card,
    .pricing-card,
    .timeline-item {
        padding: 20px;
    }
    
    .case-study-card {
        border-radius: 8px;
    }
    
    .case-study-image {
        height: 120px;
    }
    
    .case-study-content {
        padding: 12px;
    }
    
    .case-study-content h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .case-study-type {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .case-study-status {
        margin-left: 6px;
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .case-study-description {
        margin-bottom: 10px;
    }
    
    .cta-title {
        font-size: clamp(20px, 5vw, 28px);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .case-study-text {
        font-size: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .case-study-read-more {
        display: inline-block;
        font-size: 12px;
    }
    
    .case-study-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }

    /* Service Detail */
    .service-detail-card {
        padding: 24px 16px;
    }

    .service-detail-header h2 {
        font-size: 28px;
    }

    .service-subtitle {
        font-size: 20px;
    }

    .service-lead {
        font-size: 20px;
    }

    .problem-box,
    .solution-box {
        padding: 20px;
    }

    .service-delivery {
        padding: 20px;
    }

    /* Contact */
    .contact-form-container,
    .contact-info {
        padding: 24px 16px;
    }

    .contact-form-container h2,
    .contact-info h2 {
        font-size: 28px;
    }

    /* Page Titles */
    .page-title {
        font-size: clamp(32px, 8vw, 40px);
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    /* CTA Sections */
    .final-cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .nav-link {
        padding: 5px 8px;
        font-size: 12px;
    }

    .btn-secondary {
        max-width: 60%;
        padding: 11px 16px;
    }

    .btn {
        width: auto;
        max-width: 75%;
        padding: 11px 16px;
        font-size: 13px;
        border-width: 3px;
        box-shadow: 5px 5px 0 0 var(--ink-black);
    }

    .btn:hover {
        transform: translate(4px, 4px);
        box-shadow: 2px 2px 0 0 var(--ink-black);
    }

    .btn:active {
        transform: translate(5px, 5px);
        box-shadow: 1px 1px 0 0 var(--ink-black);
    }

    .service-card,
    .pricing-card {
        padding: 16px;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        border-width: 4px;
        box-shadow: 8px 8px 0 0 var(--ink-black);
    }

    .btn:hover {
        transform: translate(6px, 6px);
        box-shadow: 4px 4px 0 0 var(--ink-black);
    }

    .btn:active {
        transform: translate(7px, 7px);
        box-shadow: 2px 2px 0 0 var(--ink-black);
    }

    .hero-ctas {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }
    
    .cta-with-consultation {
        flex: 1;
        min-width: 0;
    }
    
    .btn-secondary {
        flex: 1;
        min-width: 0;
    }

    .cta-with-consultation {
        flex: 1;
        min-width: 0;
        padding-left: 0;
    }
    
    .btn-secondary {
        flex: 1;
        min-width: 0;
    }
    
    .doodled-arrow-wrapper {
        left: -18px;
        top: 8px;
    }
    
    .doodled-arrow {
        width: 28px;
        height: 14px;
    }

    .btn-secondary {
        flex: 1;
        min-width: 200px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
    }

    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens (1024px and above) */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 12px;
    }
    
    .nav-link-dropdown {
        font-size: 18px;
        padding: 10px 12px;
    }

    .hero {
        padding: 20px 0 30px;
    }
    
    .hero-content-wrapper {
        gap: 15px;
    }
    
    .hero-title {
        margin-bottom: 2px;
    }
    
    .hero-subhead {
        margin-bottom: 6px;
    }
    
    .hero-ctas {
        margin-top: 8px;
    }

    section {
        padding: 120px 0;
    }
}

/* Extra large screens (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .thread-wiggle {
        width: min(700px, 50vw);
        height: 180vh;
    }
}

/* Back link styles for case study pages */
.back-link {
    position: fixed;
    top: 100px;
    left: 40px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-black);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.back-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .back-link {
        top: 80px;
        left: 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .back-link {
        top: 70px;
        left: 16px;
        font-size: 12px;
    }
}
