:root {
    --primary: #7a5c58;
    --secondary: #b38a7c;
    --dark: #2a2826;
    --light: #f7f4ef;
    --accent: #5d9d8b;
    --shadow: rgba(0, 0, 0, 0.1);
    --desert: #e2d3c0;
    --mountain: #6b6359;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pixel Elements */
.pixel-border {
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.pixel-border.bottom {
    position: relative;
    bottom: 0;
    top: auto;
}


.pixel-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
}


.email-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 75%, 
        50% 100%, 
        0% 75%
    );
}

.location-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(
        50% 0%, 
        100% 50%, 
        50% 100%, 
        0% 50%
    );
}

.lab-icon {
    width: 100%;
    max-width: 140px;
    height: 140px;
    background-color: var(--primary);
    position: relative;
    margin: 0 auto;
    opacity: 0.9;
    border-radius: 8px;
}

.lab-icon::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 30%;
    width: 40%;
    height: 50%;
    background-color: var(--accent);
    border-radius: 4px;
}

.lab-icon::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 45%;
    width: 10%;
    height: 30%;
    background-color: var(--light);
}

/* Typography */
h1, h2, h3, .logo-text {
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background-color: var(--primary);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.accent {
    color: var(--secondary);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.blink {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Header */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 6px;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 4px;
    display: inline-block;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 0 6rem;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, var(--light), var(--desert) 90%);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.interactive-console {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    width: 100%;
    max-width: 450px;
    min-height: 85px;
    cursor: text;
    margin-top: 1rem;
    outline: none;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    position: relative;
}

.interactive-console.console-focused {
    border-color: var(--accent);
}

.console-prompt {
    display: flex;
    align-items: center;
    font-family: 'Space Mono', monospace;
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.prompt-char {
    color: var(--accent);
    margin-right: 0.5rem;
    font-weight: bold;
}

.prompt-text {
    color: var(--light);
    min-width: 10px;
    display: inline-block;
}

.prompt-cursor {
    margin-left: 2px;
    color: var(--accent);
    animation: blink 1s infinite;
}

.console-message {
    font-family: 'Space Mono', monospace;
    color: var(--accent);
    margin-top: 0.8rem;
    min-height: 1.4rem;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
    word-wrap: break-word;
}

.interactive-console::after {
    content: 'Click to interact';
    position: absolute;
    right: 10px;
    bottom: -20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--dark);
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature {
    background-color: var(--light);
    padding: 0.8rem 1rem;
    border-radius: 2px;
    border-left: 2px solid var(--accent);
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.3;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--light);
    position: relative;
}

.featured-projects {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 2px 5px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--shadow);
}

.project-card.featured {
    flex: 1;
    padding-bottom: 1.5rem;
}

.project-image {
    height: 180px;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.project-image.ai-web-builder {
    background-color: var(--primary);
    position: relative;
}

.project-image.ai-web-builder::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 60%;
    left: 25%;
    top: 20%;
    background-color: white;
    border-radius: 2px;
}

.project-image.ai-web-builder::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 4%;
    left: 32.5%;
    top: 35%;
    background-color: var(--secondary);
    box-shadow: 0 12px 0 var(--secondary), 0 24px 0 var(--secondary);
}

.project-image.workflow-automation {
    background-color: var(--accent);
    position: relative;
}

.project-image.workflow-automation::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    left: 30%;
    top: 30%;
    border: 3px solid white;
    border-radius: 50%;
    border-right-color: transparent;
    transform: rotate(45deg);
}

.project-image.customer-support {
    background-color: var(--primary);
    position: relative;
}

.project-image.customer-support::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 30%;
    left: 35%;
    top: 25%;
    border: 3px solid white;
    border-radius: 50%;
}

.project-image.customer-support::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 15%;
    left: 37.5%;
    top: 60%;
    border-radius: 5px;
    background-color: white;
    transform: skew(-10deg);
}

.project-image.document-digitization {
    background-color: var(--secondary);
    position: relative;
}

.project-image.document-digitization::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 50%;
    left: 30%;
    top: 25%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.2);
}

.project-image.document-digitization::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 3%;
    left: 40%;
    top: 40%;
    background-color: white;
    box-shadow: 0 8px 0 white, 0 16px 0 white;
}

.project-image.insights-builder {
    background-color: var(--accent);
    position: relative;
}

.project-image.insights-builder::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 40%;
    left: 25%;
    top: 30%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
}

.project-image.insights-builder::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 15%;
    left: 35%;
    top: 60%;
    background-color: white;
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%);
}

.project-image.knowledge-base {
    background-color: var(--primary);
    position: relative;
}

.project-image.knowledge-base::before {
    content: '';
    position: absolute;
    width: 45%;
    height: 60%;
    left: 27.5%;
    top: 20%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.2);
}

.project-image.knowledge-base::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 4%;
    left: 37.5%;
    top: 30%;
    background-color: white;
    box-shadow: 0 10px 0 white, 0 20px 0 white, 0 30px 0 white;
}

.project-image.placeholder {
    background-color: var(--desert);
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-image.placeholder::after {
    content: '+';
    font-size: 2rem;
    color: var(--dark);
    opacity: 0.2;
}

.project-card h3 {
    padding: 1rem 1.5rem 0;
    margin-bottom: 0.5rem;
}

.project-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #666;
    flex-grow: 1;
}

.project-grid .project-card h3 {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem 0;
}

.more-projects-title {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.project-grid .project-card {
    padding-bottom: 1rem;
    position: relative;
    overflow: visible;
    height: 270px;
    display: flex;
    flex-direction: column;
}

.project-grid .project-image {
    height: 120px;
}

.project-grid .project-card p {
    max-height: 4.5em; /* Show 3 lines instead of 2 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.85rem; /* Slightly smaller text */
    line-height: 1.5;
    margin-bottom: 1.2rem; /* Space for the click to spotlight text */
}

.project-card {
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 2px 5px var(--shadow);
    overflow: hidden;
    opacity: 0.7;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--shadow);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card.clickable {
    cursor: pointer;
    position: relative;
}

.project-card.clickable::after {
    content: 'Click to spotlight';
    position: absolute;
    bottom: 0.5rem;
    left: 1.2rem;
    font-size: 0.7rem;
    color: var(--primary);
    background-color: white;
    padding: 3px 8px;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s;
    font-style: italic;
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.05);
}

.project-card.clickable:hover::after {
    opacity: 0.9;
}

/* Hover effects for grid cards */
.project-grid .project-card:hover {
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

@keyframes spotlight {
    0% { transform: scale(0.95); box-shadow: 0 0 0 rgba(0,0,0,0.1); }
    50% { transform: scale(1.02); box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
    100% { transform: scale(1); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
}

.spotlight-animation {
    animation: spotlight 1s ease-out;
}

@keyframes reset-flash {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 1; }
}

.reset-animation {
    animation: reset-flash 0.8s ease-out;
}

.reset-spotlight-button {
    display: block;
    background-color: transparent;
    border: 1px solid var(--desert);
    color: var(--mountain);
    padding: 0.4rem 0.8rem;
    margin: 2rem auto 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reset-spotlight-button:hover {
    background-color: var(--desert);
    color: var(--dark);
    opacity: 1;
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: var(--light);
    position: relative;
}

.clients-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.clients-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.featured-note {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--mountain);
    opacity: 0.7;
    padding: 0.2rem 0.8rem;
    border: 1px dashed var(--desert);
    border-radius: 2px;
}

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

.client-card {
    background-color: white;
    border-radius: 2px;
    padding: 2rem;
    box-shadow: 0 2px 5px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Standardize client content structure */
.client-content {
    min-height: 260px;
}

.client-logo {
    height: 60px;
    width: 60px;
    margin-bottom: 1.5rem;
    background-color: var(--desert);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.9;
}

.client-logo::after {
    position: absolute;
    font-family: 'Space Mono', monospace;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.7;
}

.client-logo.vapormex::after {
    content: 'VM';
}

.client-logo.hydraship::after {
    content: 'HS';
}

.client-logo.lozmer::after {
    content: 'LZ';
}

.client-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.client-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark);
    opacity: 0.8;
}

.client-result {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 1rem;
    border-radius: 2px;
    border-left: 3px solid var(--accent);
}

.result-number {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.1;
    white-space: nowrap;
}

.result-keyword {
    color: var(--accent);
}

.result-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.clients-footer {
    text-align: center;
    margin-top: 2rem;
}

.more-clients {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--mountain);
    opacity: 0.75;
    padding: 0.3rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 2px;
}

/* Careers Section */
.careers {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.careers-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.careers-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.job-listings {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background-color: var(--light);
    border-radius: 2px;
    padding: 2rem;
    box-shadow: 0 2px 5px var(--shadow);
}

.job-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.job-meta span {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
}

.job-description p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.job-tabs {
    display: flex;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.job-tab {
    padding: 0.75rem 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    color: var(--dark);
    opacity: 0.7;
    min-width: 120px;
    text-align: center;
}

.job-tab.active {
    border-bottom-color: var(--secondary);
    color: var(--secondary);
    opacity: 1;
}

.tab-content {
    display: none;
    margin-bottom: 1.5rem;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.tab-content ul {
    padding-left: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.apply-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: var(--secondary);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-content {
    display: flex;
    gap: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-family: 'Space Mono', monospace;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.contact-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
    width: 100%;
}

.contact-form button:hover {
    background-color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.footer-content .logo-text {
    font-size: 2rem;
}

/* Easter Eggs and Interactive Elements */



/* Logo pulse effect */
.logo-pulse {
    animation: pulse 1s ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Project card hover effect enhancement */
.project-card:hover .project-image::after {
    opacity: 0.5;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Lab icon subtle glow effect on hover */
.lab-icon {
    transition: all 0.5s ease;
}

.about-image:hover .lab-icon {
    box-shadow: 0 0 15px var(--accent);
    filter: brightness(1.05);
}


/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .featured-projects {
        flex-direction: column;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .result-number {
        font-size: 1.8rem;
    }
    
    header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .about-content,
    .featured-projects,
    .contact-content {
        flex-direction: column;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-meta span {
        display: inline-block;
    }
    
    nav ul {
        gap: 1.2rem;
        justify-content: center;
    }
    
    nav li {
        margin-left: 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .interactive-console {
        font-size: 0.9rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .client-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0 4rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
    
    .job-tabs {
        flex-wrap: wrap;
    }
    
    .job-tab {
        flex: 1;
        min-width: auto;
    }
    
    .feature {
        padding: 0.6rem 0.8rem;
    }
    
    .client-result {
        padding: 0.8rem;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .featured-note {
        font-size: 0.65rem;
        padding: 0.15rem 0.6rem;
    }
    
    .more-clients {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .interactive-console::after {
        display: none;
    }
}