/* MindLab Creative - Modern Professional with Whiteboard Illustrations */

:root {
    /* Tropical Color Palette - ADA Compliant */
    --primary: #2d9d8c;        /* Darker Turquoise (ADA compliant) */
    --primary-light: #7dd3c0;  /* Light Turquoise (for backgrounds) */
    --primary-lighter: #a8e6d7; /* Very Light Turquoise */
    --primary-dark: #1f5445;   /* Deep Forest Green */
    --accent-green: #3d8a54;   /* Darker Medium Green (ADA compliant) */
    --accent-light: #52a868;   /* Light Green (for backgrounds) */
    --accent-dark: #1a4d3e;    /* Dark Teal */
    --cream: #e8e4d0;          /* Warm Cream */
    --dark: #1a1a1a;           /* Rich Black */
    --gray-900: #1e1e1e;
    --gray-700: #3d3d3d;
    --gray-600: #5a5a5a;
    --gray-500: #7a7a7a;
    --gray-400: #9a9a9a;
    --gray-200: #e0e0e0;
    --gray-100: #f0f0f0;
    --gray-50: #f8f9f7;
    --white: #ffffff;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hand: 'Caveat', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }

p {
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 157, 140, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-links .btn {
    margin-left: 8px;
}

.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.lang-switch a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-switch a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(45, 157, 140, 0.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #e8f5f3 0%, #d4ebe7 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 250px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 3600 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 Q200 100 400 120 T800 120 T1200 120 T1600 120 T2000 120 T2400 120 T2800 120 T3200 120 T3600 120 L3600 150 Z' fill='%237dd3c0' opacity='0.12'/%3E%3C/svg%3E") bottom center repeat-x;
    animation: wave-gentle 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 250px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 3600 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 Q250 80 500 110 T1000 110 T1500 110 T2000 110 T2500 110 T3000 110 T3600 110 L3600 150 Z' fill='%232d9d8c' opacity='0.1'/%3E%3C/svg%3E") bottom center repeat-x;
    animation: wave-slow 30s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero .container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 250px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 3600 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 Q300 60 600 100 T1200 100 T1800 100 T2400 100 T3000 100 T3600 100 L3600 150 Z' fill='%23a8e6d7' opacity='0.08'/%3E%3C/svg%3E") bottom center repeat-x;
    animation: wave-medium 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes wave-gentle {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-33.33%) translateY(-5px);
    }
}

@keyframes wave-slow {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(33.33%) translateY(-3px);
    }
}

@keyframes wave-medium {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}


/* Water shimmer effect */
@keyframes shimmer {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.15;
    }
}

.hero .hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(125, 211, 192, 0.3) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    border-radius: 16px;
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero .highlight {
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--primary-lighter);
    opacity: 0.5;
    z-index: -1;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Whiteboard Illustration Styles */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.whiteboard {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
    max-width: 450px;
}

.whiteboard::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
}

.sketch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sketch-brain {
    width: 120px;
    height: 100px;
}

.brain-svg {
    width: 100%;
    height: 100%;
}

/* Drawing animations */
.draw-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 2s ease forwards;
}

.draw-path.delay-1 { animation-delay: 0.5s; }
.draw-path.delay-2 { animation-delay: 0.8s; }
.draw-path.delay-3 { animation-delay: 1.1s; }

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.sketch-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sketch-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: var(--delay);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.icon-circle-sketch {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.icon-circle-sketch svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.sketch-label {
    font-family: var(--font-hand);
    font-size: 1rem;
    color: var(--gray-600);
}

.sketch-arrow {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--gray-400);
}

.sketch-annotation {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.handwritten {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--primary);
}

.arrow-curve {
    width: 50px;
    height: 30px;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.value-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-number {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-item h3 {
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.95rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q150 30 300 15 T600 15 T900 15 T1200 15 L1200 0 Z' fill='%23ffffff'/%3E%3C/svg%3E") top center / cover no-repeat;
    pointer-events: none;
}

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

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.service-sketch {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-sketch svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-whiteboard {
    margin-top: 40px;
}

.whiteboard-surface {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

/* Whiteboard texture */
.whiteboard-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-sketch {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.step-sketch svg {
    width: 100%;
    height: 100%;
}

.step-content h4 {
    margin-bottom: 8px;
}

.handwritten-title {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--gray-900);
}

.step-content p {
    font-size: 0.875rem;
    max-width: 160px;
    margin: 0 auto;
}

.connector-sketch {
    width: 80px;
    height: 20px;
    margin-top: 20px;
    flex-shrink: 0;
}

.connector-sketch svg {
    width: 100%;
    height: 100%;
}

.whiteboard-annotations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.annotation {
    position: absolute;
    font-family: var(--font-hand);
    font-size: 1rem;
    color: var(--primary);
}

.doodle-underline {
    position: absolute;
    width: 100px;
    height: 10px;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: var(--gray-900);
}

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

.results-text .section-eyebrow {
    color: var(--primary-lighter);
}

.results-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.results-description {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.results-sketch {
    display: flex;
    justify-content: center;
}

.sketch-chart {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
}

.sketch-chart svg {
    width: 100%;
    height: auto;
}

/* Bar animations */
.bar {
    transform-origin: bottom;
    animation: growBar 1s ease forwards;
    opacity: 0;
}

.bar-1 { animation-delay: 0.2s; }
.bar-2 { animation-delay: 0.4s; }
.bar-3 { animation-delay: 0.6s; }

@keyframes growBar {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list span {
    color: var(--gray-700);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.sketch-board {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 350px;
}

.sketch-diagram svg {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f5445 0%, #2d9d8c 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q150 40 300 20 T600 20 T900 20 T1200 20 L1200 0 Z' fill='%23ffffff'/%3E%3C/svg%3E") top center / cover no-repeat;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120 Q150 80 300 100 T600 100 T900 100 T1200 100 L1200 120 Z' fill='%231e1e1e'/%3E%3C/svg%3E") bottom center / cover no-repeat;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info .section-eyebrow {
    color: var(--primary-lighter);
}

.contact-info h2 {
    margin-bottom: 16px;
    color: var(--white);
}

.contact-info > p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-lighter);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 157, 140, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--gray-900);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-brand .logo {
    margin-bottom: 12px;
    display: inline-flex;
}

.footer-brand .logo-img-footer {
    height: 40px;
    filter: brightness(0) invert(1);
}

.tagline {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-site {
    color: var(--primary-lighter) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .results-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links .btn {
        margin-left: 0;
        width: 100%;
    }

    .lang-switch {
        position: absolute;
        top: 20px;
        right: 70px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero {
        padding: 120px 0 60px;
    }

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

    .process-flow {
        flex-direction: column;
        align-items: center;
    }

    .connector-sketch {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 24px;
        width: 100%;
    }

    .whiteboard {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .whiteboard-surface {
        padding: 40px 20px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Animation utilities */
@media (prefers-reduced-motion: no-preference) {
    .service-card {
        transition-delay: calc(var(--index, 0) * 0.1s);
    }
}
