/* Sophisticated Color Palette */
:root {
    --sophisticated-green: #014C3B;
    --dark-blue: #243D44;
    --bold-purple: #A6008A;
    --light-green: #28826D;
    --lime-green: #AFE900;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #8a8a8a;
    --dark-gray: #333333;
    --border-light: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--white);
}

/* Typography Classes */
.instrument-serif-regular {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.instrument-serif-regular-italic {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h1 {
    font-family: "Instrument Serif", serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--sophisticated-green);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.cta-button {
    background: var(--sophisticated-green);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--sophisticated-green);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sophisticated-green) 0%, var(--dark-blue) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(175, 233, 0, 0.08) 0%, rgba(175, 233, 0, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: floatSlow 20s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-50px, 30px) scale(1.1);
    }
    66% {
        transform: translate(30px, -40px) scale(0.9);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h2 {
    font-family: "Instrument Serif", serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text p:last-of-type {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: center;
}

.stat {
    text-align: center;
    width: 170px;
}

.stat-icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
}

.stat-label {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    letter-spacing: 0px;
}

.hero-cta {
    display: inline-block;
    background: var(--light-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--light-green);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--sophisticated-green);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--off-white);
}

.how-it-works h2 {
    text-align: center;
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--off-white);
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.process-step {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.process-step:hover {
    border-color: var(--sophisticated-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--sophisticated-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.step-content h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hardware-hero {
    margin: 4rem 0;
    text-align: center;
}

.hardware-showcase {
    margin: 1.5rem 0;
    text-align: center;
}

.hardware-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--pale-purple);
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.detail-icon {
    width: 20px;
    height: 20px;
    color: var(--vivid-purple);
    flex-shrink: 0;
}

.scaling-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 4px 12px var(--shadow);
}

.scaling-section h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.8rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.02em;
}

.scaling-section > p {
    color: var(--medium-gray);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

.scaling-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.scaling-point {
    background: transparent;
    padding: 1.5rem 0;
    border-radius: 0;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.scaling-point:hover {
    transform: translateY(-2px);
}

.scaling-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--sophisticated-green);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.scaling-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.scaling-point h4 {
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
}

.scaling-point p {
    color: var(--medium-gray);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    max-width: 250px;
    margin: 0 auto;
}

.scaling-summary {
    background: var(--sophisticated-green);
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    color: white;
    margin: 2rem auto 0;
    box-shadow: 0 4px 12px var(--shadow);
    width: 95%;
}

.model-evolution {
    display: none;
}

.summary-content h4 {
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: white;
}

.summary-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    font-family: inherit;
    letter-spacing: 0;
    line-height: 1.5;
}

.model-evolution {
    background: var(--off-white);
    padding: 4rem 2rem;
    border-radius: 0;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow);
}

.model-evolution h4 {
    font-family: "Instrument Serif", serif;
    font-size: 1.6rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.model-evolution p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.capability-graph {
    margin: 2rem 0;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 0;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow);
}

.graph-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.y-axis-label {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: rotate(-90deg) translateY(50%);
    transform-origin: left center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.graph-content {
    height: 200px;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    border-left: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.graph-line {
    position: absolute;
    width: 100%;
    height: 100%;
}


.graph-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--sophisticated-green);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--sophisticated-green);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.graph-point::before {
    content: attr(data-capability);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sophisticated-green);
    color: white;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.graph-point:hover::before {
    opacity: 1;
}

.graph-point[data-year="2022"] {
    left: 12.5%;
    bottom: 5%;
}

.graph-point[data-year="2023"] {
    left: 37.5%;
    bottom: 25%;
}

.graph-point[data-year="2024"] {
    left: 62.5%;
    bottom: 55%;
}

.graph-point[data-year="2025"] {
    left: 87.5%;
    bottom: 85%;
    background: var(--bold-purple);
    box-shadow: 0 0 0 2px var(--bold-purple);
    opacity: 0.8;
}

.graph-point[data-year="2025"]::before {
    background: var(--bold-purple);
}

.graph-point.future {
    animation: none;
}


.x-axis {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.evolution-insight {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.evolution-insight p {
    margin: 0;
    font-style: italic;
    color: var(--gray);
    font-size: 0.95rem;
}

.specs-grid {
    display: grid;
    gap: 1rem;
}

.spec-item {
    background: var(--white);
    border: 1px solid var(--pale-purple);
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.spec-item strong {
    color: var(--deep-purple);
}

.cta-button-secondary {
    display: inline-block;
    background: var(--sophisticated-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--sophisticated-green);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-secondary:hover::before {
    left: 100%;
}

.cta-button-secondary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: var(--sophisticated-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, transparent 20%, rgba(255, 255, 255, 0.015) 21%, rgba(255, 255, 255, 0.015) 22%, transparent 23%),
        radial-gradient(circle at 80% 20%, transparent 20%, rgba(0, 0, 0, 0.02) 21%, rgba(0, 0, 0, 0.02) 22%, transparent 23%),
        radial-gradient(circle at 40% 40%, transparent 20%, rgba(255, 255, 255, 0.008) 21%, rgba(255, 255, 255, 0.008) 22%, transparent 23%),
        radial-gradient(circle at 90% 70%, transparent 20%, rgba(0, 0, 0, 0.015) 21%, rgba(0, 0, 0, 0.015) 22%, transparent 23%),
        radial-gradient(circle at 10% 30%, transparent 20%, rgba(255, 255, 255, 0.012) 21%, rgba(255, 255, 255, 0.012) 22%, transparent 23%);
    background-size: 45px 45px, 65px 65px, 35px 35px, 55px 55px, 40px 40px;
    background-position: 0 0, 20px 20px, 10px 10px, 30px 30px, 15px 15px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.use-cases .container {
    position: relative;
    z-index: 2;
}

.use-cases::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.003) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(0, 0, 0, 0.005) 50%, transparent 51%);
    background-size: 3px 3px, 2px 2px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.use-cases-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.use-cases h2 {
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.chat-demo {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.chat-window {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}




.chat-messages {
    padding: 2rem 1rem;
    max-height: none;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.user-message {
    align-items: flex-end;
    margin-bottom: 1rem;
}

.ai-message {
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.message-content {
    max-width: 85%;
    padding: 1rem 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.message-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.user-message .message-content {
    background: #FFFAE6;
    color: var(--dark-gray);
    border-radius: 18px 18px 4px 18px;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-message .message-content {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-gray);
    border-radius: 18px 18px 18px 4px;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Remove bold from AI messages for natural conversation flow */
.ai-message .message-content strong {
    font-weight: 500;
    color: var(--sophisticated-green);
}

/* Add subtle emphasis through structure */
.ai-message .message-content {
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-sources {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    padding: 0 1rem;
    opacity: 0.8;
    text-align: left;
    margin-right: auto;
    max-width: 75%;
}






.privacy-note {
    text-align: center;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-note h4 {
    font-family: "Instrument Serif", serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.privacy-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px var(--shadow);
}

.benefit-card:hover {
    border-color: var(--sophisticated-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: var(--sophisticated-green);
    stroke-width: 1.5;
}

.benefit-card h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hardware Section */
.pricing {
    padding: 6rem 0;
    background: var(--off-white);
}

.pricing h2 {
    text-align: center;
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hardware-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    border-radius: 0;
    box-shadow: 0 4px 12px var(--shadow);
    overflow: hidden;
    margin-top: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--sophisticated-green);
    transform: scale(1.03);
    box-shadow: 0 8px 20px var(--shadow-hover);
}


.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sophisticated-green);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 0;
    white-space: nowrap;
    z-index: 10;
}

.pricing-card:hover {
    background: var(--off-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--pale-purple);
}

.pricing-card.featured .pricing-header {
    padding-top: 2rem;
    margin-top: 0.5rem;
}

.pricing-header h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.8rem;
    color: var(--sophisticated-green);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 400;
}

.team-size {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hardware-stack {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    min-height: 60px;
}

.stack-unit {
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(16, 0, 43, 0.1);
}

.mac-unit-retina {
    width: 80px;
    height: 42px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: scale(1);
    transform-origin: center;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.mac-mini-unit {
    width: 80px;
    height: 24px;
    background: linear-gradient(135deg, var(--pale-purple) 0%, var(--light-purple) 100%);
}

.mac-studio-unit {
    width: 90px;
    height: 36px;
    background: linear-gradient(135deg, var(--vivid-purple) 0%, var(--bright-purple) 100%);
}

.pricing-content {
    padding: 0rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--pale-purple);
}

.monthly-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-main {
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--sophisticated-green);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 400;
    margin-left: 0.25rem;
}

.hardware-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hardware-cost-label {
    color: var(--medium-gray);
    font-weight: 400;
}

.hardware-cost-amount {
    color: var(--sophisticated-green);
    font-weight: 500;
}

.savings-badge {
    display: inline-block;
    background: rgba(1, 76, 59, 0.1);
    color: var(--sophisticated-green);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border: 1px solid rgba(1, 76, 59, 0.2);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
    padding-bottom: 1rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.features-list li::before {
    content: "✓ ";
    color: var(--sophisticated-green);
    font-weight: 600;
}


.pricing-cta-button {
    display: block;
    background: var(--sophisticated-green);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--sophisticated-green);
    text-transform: none;
    letter-spacing: 0;
    margin-top: auto;
    margin-bottom: 1rem;
}

.deposit-text {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.pricing-cta-button:hover {
    background: var(--lime-green);
    border-color: var(--lime-green);
    color: var(--dark-gray);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    background: var(--light-gray);
    border: 1px solid var(--pale-purple);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--deep-purple);
    font-weight: 600;
}

.guarantee-badge svg {
    width: 16px;
    height: 16px;
    color: var(--vivid-purple);
    flex-shrink: 0;
}

.consultation-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.consultation-offer svg {
    width: 18px;
    height: 18px;
    color: var(--vivid-purple);
    flex-shrink: 0;
}

.consultation-offer.small {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.consultation-offer.small svg {
    width: 16px;
    height: 16px;
}

.consultation-offer.form-offer {
    color: var(--gray);
    margin-top: 1.5rem;
}

.consultation-offer.form-offer svg {
    color: var(--gray);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-guarantee svg {
    width: 20px;
    height: 20px;
    color: var(--vivid-purple);
    flex-shrink: 0;
}

.enterprise-section {
    margin: 4rem 0;
}

.enterprise-card {
    background: var(--light-gray);
    border: 2px solid var(--pale-purple);
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-card.full-width {
    max-width: none;
    margin: 0;
}

.enterprise-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.enterprise-info h3 {
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.enterprise-info p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.enterprise-description {
    font-size: 1rem;
    line-height: 1.5;
}

.enterprise-cta {
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sophisticated-green);
    color: white;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 4px 12px var(--shadow);
}

.pricing-note p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 1;
    color: white;
    line-height: 1.5;
}

.pricing-note strong {
    color: white;
    font-weight: 600;
    opacity: 1;
}

/* Compliance Section */
.compliance {
    padding: 6rem 0;
    background: var(--off-white);
}

.compliance h2 {
    text-align: center;
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: transparent;
}

.compliance-badge {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow);
}

.compliance-badge:hover {
    background: var(--off-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px var(--shadow-hover);
    border-color: var(--sophisticated-green);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.compliance-badge:hover .badge-icon {
    filter: grayscale(0%);
}

.compliance-badge h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.compliance-badge p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--sophisticated-green);
    color: white;
    position: relative;
}

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

.cta-content h2 {
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    color: var(--dark-gray);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sophisticated-green);
    box-shadow: 0 0 0 3px rgba(1, 76, 59, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    width: 100%;
    margin-bottom: 1rem;
}

.submit-button {
    background: var(--sophisticated-green);
    color: white;
    padding: 1rem 2rem;
    border: 1px solid var(--sophisticated-green);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 2px 8px var(--shadow);
    position: relative;
}

.submit-button:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.submit-button.success {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.submit-button.success:hover {
    background: #16a34a;
    border-color: #16a34a;
}

/* Footer */
.footer {
    background: #063328;
    color: white;
    padding: 4rem 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-section h4 {
    font-family: "Instrument Serif", serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.footer-location {
    
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--sophisticated-green);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1050;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-button:hover {
    background-color: rgba(1, 76, 59, 0.1);
}

.mobile-menu-button:active {
    transform: scale(0.95);
    background-color: rgba(1, 76, 59, 0.15);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: white;
    z-index: 1200;
    padding: 1.5rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
}

.mobile-nav-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--sophisticated-green);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--sophisticated-green);
    padding-left: 0.5rem;
}

.mobile-nav-links a.cta-button {
    margin-top: 1rem;
    padding: 0.85rem 1.25rem;
    background: var(--sophisticated-green);
    color: white;
    border: none;
    border-radius: 0;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }

    .mobile-menu-button {
        display: flex !important;
    }

    .nav-links {
        display: none;
    }

    .nav-brand h1 {
        font-size: 1.6rem;
    }

    .hero-text h2 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 2.5rem;
    }

    .stat {
        flex: 1;
        min-width: 110px;
        max-width: 140px;
        width: auto;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .hero {
        padding: 140px 0 80px;
        min-height: 80vh;
    }

    .hero-cta,
    .cta-button-secondary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-intro {
        color: var(--medium-gray);
        font-size: 0.95rem;
    }

    .form-group {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 4px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 1rem 0.75rem;
        font-size: 1rem;
        border-radius: 6px;
        min-height: 44px;
        -webkit-appearance: none;
        appearance: none;
    }

    .contact-form select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.5rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 2.5rem;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
        line-height: 1.5;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 6px;
        margin-top: 1rem;
        cursor: pointer;
    }

    .consultation-offer.form-offer {
        margin-top: 1rem;
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
    }

    .benefits-grid,
    .hardware-grid {
        grid-template-columns: 1fr;
    }

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

    .compliance-badge {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .badge-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .compliance-badge h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .compliance-badge p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-card {
        min-height: auto;
        margin-top: 0;
    }

    .pricing-card.featured {
        transform: none;
        order: 0;
        margin-bottom: 1rem;
    }

    .pricing-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .pricing-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .team-size {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hardware-stack {
        gap: 6px;
        min-height: 50px;
        justify-content: center;
    }

    .mac-unit-retina {
        width: 70px;
        height: 36px;
    }

    .price-main {
        font-size: 2rem;
    }

    .features-list {
        margin-bottom: 1.5rem;
    }

    .features-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .pricing-cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .deposit-text {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .enterprise-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .chat-demo {
        margin-bottom: 2rem;
    }

    .chat-window {
        max-width: 100%;
        margin: 0;
    }

    .chat-messages {
        padding: 1rem 0.5rem;
    }

    .message-content {
        max-width: 90%;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .user-message .message-content {
        border-radius: 16px 16px 4px 16px;
    }

    .ai-message .message-content {
        border-radius: 16px 16px 16px 4px;
    }

    .message-sources {
        font-size: 0.65rem;
        margin-top: 0.25rem;
        padding: 0 0.5rem;
    }

    .privacy-note {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .privacy-note h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .privacy-note p {
        font-size: 0.9rem;
    }

    .how-it-works,
    .benefits,
    .pricing,
    .compliance,
    .cta-section {
        padding: 4rem 0;
    }

    .process-grid {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .detail-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .detail-icon {
        width: 18px;
        height: 18px;
    }


    .scaling-section {
        padding: 2rem 0;
    }

    .scaling-explanation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .scaling-point {
        padding: 1.5rem;
    }

    .scaling-summary {
        padding: 1.5rem;
    }

    .summary-content h4 {
        font-size: 1.1rem;
    }

    .summary-content p {
        font-size: 0.9rem;
    }

    .model-evolution {
        padding: 2rem 1rem;
    }

    .capability-graph {
        padding: 1.5rem;
    }

    .y-axis-label {
        left: -30px;
        font-size: 0.8rem;
    }

    .graph-content {
        height: 150px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .graph-point::before {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .x-axis {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 120px 0 50px;
        min-height: 75vh;
    }

    .hero-text h2 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat {
        width: 100%;
        max-width: 180px;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .hero-cta,
    .cta-button-secondary {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 260px;
    }

    .cta-button {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
    }

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

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .compliance-badge {
        padding: 1.25rem 0.75rem;
    }

    .badge-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .compliance-badge h3 {
        font-size: 0.95rem;
    }

    .compliance-badge p {
        font-size: 0.8rem;
    }

    .how-it-works,
    .benefits,
    .pricing,
    .compliance,
    .cta-section {
        padding: 3rem 0;
    }

    .section-intro {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .process-step,
    .benefit-card {
        padding: 1.25rem;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .step-content h3,
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .pricing-header {
        padding: 1.25rem 1rem 0.75rem;
    }

    .pricing-content {
        padding: 0 1rem 1.25rem 1rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .enterprise-content {
        padding: 1.5rem 1rem;
    }

    .enterprise-info h3 {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        text-align: left;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-brand h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .footer-brand p {
        font-size: 0.95rem;
        margin: 0 auto;
        line-height: 1.6;
        opacity: 0.85;
        max-width: 100%;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
        color: white;
        font-weight: 500;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease;
    }

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

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
        margin: 0;
    }
}

/* Page Styles */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--sophisticated-green) 0%, var(--dark-blue) 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Case Study Styles */
.case-study-content {
    padding: 6rem 0;
    background: var(--white);
}

.case-study-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
}

.case-study-main {
    background: var(--white);
}

.case-study-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.case-study-header h2 {
    font-family: "Instrument Serif", serif;
    font-size: 2.2rem;
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.case-study-meta {
    color: var(--medium-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.case-study-body {
    line-height: 1.7;
    font-size: 1rem;
    color: var(--dark-gray);
}

.case-study-body h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.5rem;
    color: var(--sophisticated-green);
    margin: 3rem 0 1.5rem;
    font-weight: 400;
}

.case-study-body h4 {
    font-weight: 600;
    color: var(--dark-blue);
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

.case-study-body p {
    margin-bottom: 1.5rem;
}

.case-study-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.case-study-body li {
    margin-bottom: 0.75rem;
}

.executive-summary {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 0;
    margin-bottom: 3rem;
    border-left: 4px solid var(--sophisticated-green);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.feature-item h4 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-card {
    background: var(--sophisticated-green);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 0;
}

.metric-value {
    font-family: "Instrument Serif", serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.metric-detail {
    font-size: 0.8rem;
    opacity: 0.8;
}

.benefit-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-category {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.benefit-category h4 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
}

.benefit-category ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-category li {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li::before {
    content: "✓";
    color: var(--sophisticated-green);
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

.consideration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.consideration-item {
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: 0;
}

.consideration-item h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.case-study-quote {
    background: var(--dark-blue);
    color: white;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid var(--lime-green);
}

.case-study-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.case-study-cta {
    background: var(--off-white);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    border-radius: 0;
    border: 2px solid var(--border-light);
}

.case-study-cta h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
}

.case-study-cta p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

/* Sidebar Styles */
.case-study-sidebar {
    background: transparent;
}

.quick-facts {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.quick-facts h3 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.fact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item strong {
    color: var(--dark-blue);
}

.related-resources {
    background: var(--sophisticated-green);
    padding: 2rem;
    border-radius: 0;
    color: white;
}

.related-resources h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.resource-links a:hover {
    color: white;
}

.resource-links a:last-child {
    border-bottom: none;
}

/* Responsive Design for Case Studies */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .case-study-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-grid,
    .metrics-grid,
    .consideration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-category ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefit-category li {
        min-width: auto;
        flex: none;
    }

    .case-study-header h2 {
        font-size: 1.8rem;
    }

    .executive-summary,
    .case-study-cta {
        padding: 2rem 1.5rem;
    }

    .case-study-quote {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .metric-value {
        font-size: 2rem;
    }
}

/* Technical Papers Styles */
.technical-papers-content {
    padding: 6rem 0;
    background: var(--white);
}

.technical-papers-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
}

.paper-main {
    background: var(--white);
}

.paper-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.paper-header h2 {
    font-family: "Instrument Serif", serif;
    font-size: 2rem;
    color: var(--sophisticated-green);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.paper-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.paper-meta span {
    padding: 0.4rem 1rem;
    background: var(--off-white);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.paper-abstract {
    background: var(--sophisticated-green);
    color: white;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 0;
}

.paper-abstract h3 {
    color: white;
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.paper-abstract p {
    line-height: 1.7;
    opacity: 0.95;
}

.paper-body {
    line-height: 1.7;
    font-size: 1rem;
    color: var(--dark-gray);
}

.paper-section {
    margin-bottom: 3rem;
}

.paper-body h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.4rem;
    color: var(--sophisticated-green);
    margin: 2.5rem 0 1.5rem;
    font-weight: 400;
}

.paper-body h4 {
    font-weight: 600;
    color: var(--dark-blue);
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

.paper-body h5 {
    font-weight: 600;
    color: var(--dark-gray);
    margin: 1.5rem 0 0.75rem;
    font-size: 1rem;
}

.paper-body p {
    margin-bottom: 1.5rem;
}

.paper-body ul,
.paper-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.paper-body li {
    margin-bottom: 0.75rem;
}

.performance-table {
    margin: 2rem 0;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.data-table th,
.data-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.data-table th {
    background: var(--sophisticated-green);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.data-table tbody tr:hover {
    background: rgba(1, 76, 59, 0.05);
}

.cost-analysis {
    margin: 2rem 0;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.cost-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cost-item {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 0;
}

.cost-item h5 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cost-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cost-details strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.references {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border-left: 4px solid var(--sophisticated-green);
}

.references li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.paper-cta {
    background: var(--off-white);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    border-radius: 0;
    border: 2px solid var(--border-light);
}

.paper-cta h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
}

.paper-cta p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

/* Paper Sidebar Styles */
.paper-sidebar {
    background: transparent;
}

.paper-info {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.paper-info h3 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--dark-blue);
}

.download-options {
    background: var(--dark-blue);
    padding: 2rem;
    border-radius: 0;
    color: white;
    margin-bottom: 2rem;
}

.download-options h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 4px;
}

.download-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.related-papers {
    background: var(--sophisticated-green);
    padding: 2rem;
    border-radius: 0;
    color: white;
}

.related-papers h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
}

.paper-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.paper-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.paper-links a:hover {
    color: white;
}

.paper-links a:last-child {
    border-bottom: none;
}

/* Responsive Design for Technical Papers */
@media (max-width: 768px) {
    .technical-papers-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .paper-header h2 {
        font-size: 1.6rem;
    }

    .paper-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .paper-abstract,
    .paper-cta {
        padding: 2rem 1.5rem;
    }

    .cost-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .data-table {
        font-size: 0.8rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 6rem 0;
    background: var(--white);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1rem;
    color: var(--dark-gray);
}

.legal-meta {
    background: var(--off-white);
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 0;
    border-left: 4px solid var(--sophisticated-green);
}

.legal-meta p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.legal-meta p:last-child {
    margin-bottom: 0;
}

.legal-meta-redesigned {
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--medium-gray);
}

.meta-date {
    font-family: "Instrument Serif", serif;
    font-size: 1.1rem;
    color: var(--sophisticated-green);
    font-weight: 400;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: "Instrument Serif", serif;
    font-size: 1.6rem;
    color: var(--sophisticated-green);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-weight: 400;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.legal-section h4 {
    font-weight: 600;
    color: var(--dark-blue);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.legal-section p {
    margin-bottom: 1.5rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

.legal-section li strong {
    color: var(--dark-blue);
}

.contact-details {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 0;
    margin: 1.5rem 0;
    border-left: 4px solid var(--sophisticated-green);
}

.contact-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.security-model {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    margin: 2rem 0;
    border-left: 4px solid var(--sophisticated-green);
}

.security-model h4 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.security-model ul {
    margin-bottom: 1.5rem;
}

.security-model ul:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 4rem 0;
    }

    .legal-document {
        padding: 0 1rem;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-meta {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .legal-meta-redesigned {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        padding: 1.25rem;
    }
}

/* About Page Styles */
.about-content {
    padding: 6rem 0;
    background: var(--white);
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.policy-quote {
    background: var(--off-white);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--bold-purple);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.policy-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--sophisticated-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.stat-number {
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    color: var(--bold-purple);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0em;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.innovation-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-light);
}

.innovation-item h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-convergence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tech-item {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.tech-icon {
    background: var(--sophisticated-green);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.tech-icon svg {
    width: 2rem;
    height: 2rem;
}

.tech-item h3 {
    color: var(--sophisticated-green);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.tech-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.advantage-icon {
    background: var(--bold-purple);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.advantage-icon svg {
    width: 2rem;
    height: 2rem;
}

.advantage-item h3 {
    color: var(--sophisticated-green);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.advantage-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.references-list {
    background: var(--off-white);
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--sophisticated-green);
}

.references-list p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.references-list p:last-child {
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 4rem 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border-light);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro h2 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.contact-info-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-methods h3,
.consultation-info h3 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.contact-icon {
    background: var(--sophisticated-green);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-details h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--sophisticated-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

.expectation-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--off-white);
    border: 1px solid var(--border-light);
}

.expectation-icon {
    background: var(--bold-purple);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.expectation-content h4 {
    color: var(--sophisticated-green);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.expectation-content p {
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Careers Page Styles */
.careers-content {
    padding: 6rem 0;
    background: var(--white);
}

.careers-main {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.careers-intro h2 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.culture-section,
.benefits-section,
.positions-section,
.application-section {
    margin-bottom: 5rem;
}

.culture-section h2,
.benefits-section h2,
.positions-section h2,
.application-section h2 {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.culture-value {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.culture-value:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.culture-icon {
    background: var(--sophisticated-green);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.culture-icon svg {
    width: 2rem;
    height: 2rem;
}

.culture-value h3 {
    color: var(--sophisticated-green);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.culture-value p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.benefits-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-group {
    background: var(--off-white);
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.benefit-group h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-group p {
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.no-positions {
    background: var(--off-white);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
}

.no-positions-icon {
    background: var(--medium-gray);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.no-positions-icon svg {
    width: 2rem;
    height: 2rem;
}

.no-positions h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-positions p {
    color: var(--medium-gray);
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

.future-opportunities {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
}

.future-opportunities h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.future-opportunities p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.role-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.role-type {
    background: var(--sophisticated-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.simple-application-form {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    max-width: 600px;
}

.simple-application-form .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.simple-application-form input,
.simple-application-form select,
.simple-application-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.simple-application-form input:focus,
.simple-application-form select:focus,
.simple-application-form textarea:focus {
    outline: none;
    border-color: var(--sophisticated-green);
}

.simple-application-form textarea {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

.careers-contact {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--medium-gray);
}

.careers-email {
    background: var(--off-white);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.careers-email-link {
    font-family: "Instrument Serif", serif;
    color: var(--sophisticated-green);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
    letter-spacing: -0.01em;
}

.careers-email-link:hover {
    text-decoration: underline;
}

/* Footer Brand Email */
.footer-brand-email {
    font-family: "Instrument Serif", serif;
    color: #AFE900 !important;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    display: block;
}

.footer-brand-email:hover {
    text-decoration: underline;
}

.apply-button {
    background: var(--bold-purple);
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.apply-button:hover {
    background: var(--dark-blue);
    color: white;
}

.application-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.application-method {
    background: var(--off-white);
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.application-method h3 {
    color: var(--sophisticated-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hiring-process {
    background: var(--off-white);
    padding: 3rem;
    border: 1px solid var(--border-light);
    margin-top: 3rem;
}

.hiring-process h3 {
    color: var(--sophisticated-green);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.step-number {
    background: var(--bold-purple);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-weight: 500;
    font-size: 1.1rem;
}

.step-content h4 {
    color: var(--sophisticated-green);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Simplified Contact Styles */
.contact-methods-simple h3,
.consultation-info-simple h3 {
    font-family: "Instrument Serif", serif;
    font-size: 1.8rem;
    color: var(--sophisticated-green);
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.simple-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--medium-gray);
}

.contact-value {
    font-family: "Instrument Serif", serif;
    font-size: 1.3rem;
    color: var(--sophisticated-green);
    text-decoration: none;
    font-weight: 400;
}

.contact-value:hover {
    color: var(--dark-gray);
}

.simple-expectations {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.expectation-simple {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 3px solid var(--sophisticated-green);
    margin: 0;
}

/* Mobile Styles for New Pages */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-intro h2 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .expectation-item {
        padding: 1.5rem;
    }

    .stats-grid,
    .innovation-grid,
    .tech-convergence-grid,
    .advantage-grid,
    .culture-values,
    .benefits-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .simple-application-form .form-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .role-types {
        justify-content: center;
    }

    .application-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .position-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-section h2,
    .careers-intro h2,
    .culture-section h2,
    .benefits-section h2,
    .positions-section h2,
    .application-section h2 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }
}

/* Touch device hover effects */
@media (hover: none) {
    .cta-button::before,
    .hero-cta::before,
    .cta-button-secondary::before {
        display: none;
    }

    .cta-button:active,
    .hero-cta:active,
    .cta-button-secondary:active {
        transform: scale(0.98);
    }
}