/* ==========================================================================
   Forge & Lever - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-bg: #F5F5F7;
    --color-card: #FFFFFF;
    --color-primary: #3B82F6;
    --color-primary-light: #93C5FD;
    --color-primary-lighter: #BFDBFE;
    --color-text-dark: #1F2937;
    --color-text-medium: #6B7280;
    --color-text-light: #9CA3AF;
    --color-border: #E5E7EB;
    --color-label-bg: #F3F4F6;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.4);

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.2;
}

.text-dark {
    color: var(--color-text-dark);
}

.text-blue {
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

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

.btn-primary:hover {
    background: #2563EB;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(245, 245, 247, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-links a {
    padding: var(--space-xs) var(--space-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: var(--space-xs) 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-4xl) var(--space-md);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: var(--color-bg);
    background-image: url('../assets/svg/hero-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-headline {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-headline span {
    display: block;
}

.hero-subheadline {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-medium);
    max-width: 540px;
    margin: 0 auto var(--space-lg);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 12px;
    background: var(--color-label-bg);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-medium);
    margin-bottom: var(--space-sm);
}

.section-label svg {
    color: var(--color-primary);
}

.section-headline {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: var(--space-sm);
}

.section-subheadline {
    font-size: 16px;
    color: var(--color-text-medium);
    max-width: 560px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Bento Grid (Services)
   -------------------------------------------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.bento-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.bento-card-large {
    grid-column: span 1;
    min-height: 320px;
}

.bento-card-wide {
    grid-column: span 1;
}

.bento-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    min-height: 140px;
}

.bento-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.bento-description {
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.bento-description-light {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   Service Card Illustrations
   -------------------------------------------------------------------------- */

/* App Mockup */
.app-mockup {
    width: 100%;
    max-width: 200px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.app-header {
    padding: 8px 12px;
    background: white;
    border-bottom: 1px solid var(--color-border);
}

.app-dots {
    display: flex;
    gap: 4px;
}

.app-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
}

.app-dots span:first-child {
    background: #FCA5A5;
}

.app-dots span:nth-child(2) {
    background: #FCD34D;
}

.app-dots span:last-child {
    background: #86EFAC;
}

.app-content {
    display: flex;
    padding: 12px;
    gap: 12px;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-nav-item {
    width: 24px;
    height: 24px;
    background: var(--color-border);
    border-radius: 4px;
}

.app-nav-item.active {
    background: var(--color-primary-light);
}

.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-bar {
    height: 12px;
    background: var(--color-primary-light);
    border-radius: 4px;
}

.app-bar.short {
    width: 60%;
}

/* Workflow Diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.workflow-node {
    width: 40px;
    height: 40px;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-primary);
}

.workflow-line {
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.workflow-branch {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.workflow-branch .workflow-line {
    width: 2px;
    height: 20px;
    margin-left: 19px;
}

.workflow-branch .workflow-node {
    width: 32px;
    height: 32px;
}

/* Change Graphic */
.change-graphic {
    display: flex;
    gap: var(--space-md);
    align-items: flex-end;
}

.change-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.change-bar .change-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
}

.change-bar .change-amount {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.change-bar.old .change-amount {
    background: var(--color-border);
    color: var(--color-text-medium);
}

.change-bar.new .change-amount {
    background: var(--color-primary);
    color: white;
}

/* AI Graphic */
.ai-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.ai-brain {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
}

.ai-connections {
    display: flex;
    gap: var(--space-sm);
}

.ai-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary-light);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.ai-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* --------------------------------------------------------------------------
   Process Steps
   -------------------------------------------------------------------------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.process-step {
    text-align: center;
}

.process-number {
    width: 32px;
    height: 32px;
    margin: 0 auto var(--space-xs);
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.process-step h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Credentials (replaces Testimonials)
   -------------------------------------------------------------------------- */
.credentials {
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.credential-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.credential-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.credential-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.credential-detail {
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Testimonials (kept for future use)
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.testimonial-rating {
    color: var(--color-primary);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial-video {
    margin-bottom: var(--space-sm);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--color-text-light);
}

.video-placeholder svg {
    opacity: 0.3;
}

.video-placeholder span {
    font-size: 12px;
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.testimonial-info span {
    font-size: 12px;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-xs);
}

.price-from {
    font-size: 14px;
    color: var(--color-text-light);
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.price-period {
    font-size: 16px;
    color: var(--color-text-light);
}

.pricing-description {
    font-size: 14px;
    color: var(--color-text-medium);
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--space-md);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
    font-size: 14px;
    color: var(--color-text-medium);
}

.pricing-features svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--color-text-light);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: var(--space-md);
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: var(--space-lg);
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-sm);
}

.about-emphasis {
    font-weight: 600;
    color: var(--color-text-dark);
}

.about-features {
    margin-top: var(--space-md);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 15px;
    color: var(--color-text-dark);
}

.about-features svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-signature {
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.signature-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.signature-title {
    font-size: 14px;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.contact-subheadline {
    font-size: 18px;
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.contact-email {
    font-size: 14px;
    color: var(--color-text-light);
}

.contact-email a {
    color: var(--color-primary);
    font-weight: 500;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-logo img {
    height: 25px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-medium);
    margin-bottom: var(--space-xs);
}

.footer-location {
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-links {
    display: flex;
    gap: var(--space-2xl);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-column a {
    font-size: 14px;
    color: var(--color-text-medium);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Legal Pages
   -------------------------------------------------------------------------- */
.legal-page {
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: var(--space-xs);
}

.legal-meta {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.legal-content h2 {
    font-size: 20px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-content a {
    color: var(--color-primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card-large {
        min-height: 280px;
    }

    .bento-card-wide {
        grid-column: span 2;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    /* Logo */
    .nav-logo img {
        height: 28px;
    }

    .footer-logo img {
        height: 24px;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-card);
        border-top: 1px solid var(--color-border);
        padding: var(--space-sm);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: var(--space-sm);
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card-wide {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Credentials */
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .credential-card {
        padding: var(--space-md);
    }

    .credential-number {
        font-size: 40px;
    }

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

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }

    .section-headline {
        font-size: 24px;
    }

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