/* ========================= */
/* VARIABLES */
/* ========================= */
:root {
    --bg: #FAFAFA;
    --bg-alt: #F0F0F0;
    --text: #1A1A1A;
    --text-secondary: #6B6B6B;
    --accent: #3D5A80;
    --accent-hover: #2E4766;
    --accent-light: #ECF0F5;
    --border: #E5E5E5;
    --card-bg: #FFFFFF;
    --dark-section: #0B0F19;
    --dark-text: #F5F5F5;
    --dark-text-secondary: #9CA3AF;
    --gradient-1: #3D5A80;
    --gradient-2: #4A5568;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
    --max-width: 1200px;
}

/* ========================= */
/* RESET & BASE */
/* ========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================= */
/* SKIP LINK */
/* ========================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* ========================= */
/* NAVIGATION */
/* ========================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav .nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-links .nav-cta {
    background: var(--text);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.nav-links .nav-cta:hover {
    background: #333;
    color: white;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.show {
    display: block;
    opacity: 1;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        bottom: 0;
        width: 280px;
        background: var(--card-bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 88px 32px 40px;
        gap: 8px;
        z-index: 999;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        list-style: none;
        display: flex;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

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

    .nav-links li:last-child .nav-cta {
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
        padding: 14px 24px;
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

/* ========================= */
/* HERO */
/* ========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 32px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(61, 90, 128, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 85, 104, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.8s ease both;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 8px;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero > .hero-content > p {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeUp 0.8s ease 0.3s both;
    flex-wrap: wrap;
}

/* ========================= */
/* BUTTONS */
/* ========================= */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(61, 90, 128, 0.25);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 90, 128, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

/* ========================= */
/* HERO STATS */
/* ========================= */
.hero-proof {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text);
    display: block;
    line-height: 1.2;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================= */
/* LOGOS / TRUST BAR */
/* ========================= */
.trust-bar {
    padding: 48px 32px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}

.trust-logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: 0.4;
    letter-spacing: -0.01em;
}

/* ========================= */
/* SECTION HELPERS */
/* ========================= */
.section {
    padding: 120px 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

/* ========================= */
/* PORTFOLIO */
/* ========================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
}

.portfolio-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 420px;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: transparent;
}

.portfolio-image {
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-image--fill {
    padding: 0;
}

.portfolio-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    width: fit-content;
}

.portfolio-info h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.portfolio-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-feature {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-alt);
    padding: 6px 14px;
    border-radius: 6px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.2s;
}

.portfolio-link svg {
    transition: transform 0.2s;
}

.portfolio-link:hover svg {
    transform: translateX(4px);
}

/* ========================= */
/* HOW IT WORKS */
/* ========================= */
.how-section {
    background: var(--dark-section);
    padding: 120px 32px;
}

.how-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.how-section .section-label { color: #8BA4BE; }
.how-section .section-title { color: var(--dark-text); }
.how-section .section-subtitle { color: var(--dark-text-secondary); }

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.how-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.how-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.how-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    color: rgba(139, 164, 190, 0.35);
    line-height: 1;
    margin-bottom: 20px;
}

.how-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.how-card p {
    font-size: 0.92rem;
    color: var(--dark-text-secondary);
    line-height: 1.7;
}

/* ========================= */
/* INDUSTRIES */
/* ========================= */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.industry-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: transparent;
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.industry-card:nth-child(1) .industry-icon { background: #FEF3C7; }
.industry-card:nth-child(2) .industry-icon { background: #DBEAFE; }
.industry-card:nth-child(3) .industry-icon { background: #D1FAE5; }

.industry-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================= */
/* WHY SECTION */
/* ========================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.why-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--accent);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.why-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================= */
/* TECH STACK */
/* ========================= */
.tech-stack-header {
    text-align: center;
    margin-top: 64px;
}

.tech-stack-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.tech-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* ========================= */
/* PRICING */
/* ========================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: start;
}

.pricing-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
    color: var(--accent);
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-from {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-amount {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
}

.pricing-feature svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--accent);
    margin-top: 1px;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
}

.pricing-card .btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    transition: all 0.2s;
}

.pricing-card .btn-outline:hover {
    border-color: var(--text);
    background: var(--bg-alt);
}

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================= */
/* FAQ */
/* ========================= */
.faq-list {
    max-width: var(--max-width);
    margin: 64px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
    display: none;
}

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

.faq-chevron {
    min-width: 20px;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 28px 28px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================= */
/* CTA SECTION */
/* ========================= */
.cta-card {
    max-width: var(--max-width);
    margin: 0 auto 80px;
    padding: 80px 60px;
    background: var(--dark-section);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-section {
    padding: 0 32px;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61, 90, 128, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 85, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .section-label {
    color: #8BA4BE;
}

.cta-content .section-title {
    color: var(--dark-text);
    margin-bottom: 16px;
}

.cta-emphasis {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    color: #8BA4BE;
}

.cta-content > p {
    font-size: 1.05rem;
    color: var(--dark-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(61, 90, 128, 0.3);
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 90, 128, 0.4);
}

.cta-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.cta-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--dark-text-secondary);
}

.cta-check-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #34D399;
}

.cta-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 28px;
    transition: all 0.3s;
}

.cta-stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.cta-stat-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    color: var(--dark-text);
    line-height: 1;
    margin-bottom: 4px;
}

.cta-stat-label {
    font-size: 0.82rem;
    color: var(--dark-text-secondary);
}

/* ========================= */
/* FOOTER */
/* ========================= */
footer {
    padding: 56px 32px 40px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-left .logo {
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 280px;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

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

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

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

/* ========================= */
/* BLOG */
/* ========================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.blog-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card-bg);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.blog-date {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.blog-card-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
}

.blog-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    padding-top: 8px;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

.blog-read-more svg {
    transition: transform 0.2s;
}

/* Blog article */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
}

.blog-article-header {
    margin-bottom: 48px;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
    line-height: 1;
}

.blog-back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.blog-back:hover {
    color: var(--accent);
}

.blog-article-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 16px;
    margin-bottom: 16px;
}

.blog-article-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Blog body typography */
.blog-body h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 16px;
}

.blog-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
}

.blog-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-body ul, .blog-body ol {
    margin: 0 0 24px 24px;
    color: var(--text);
}

.blog-body li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-body strong {
    font-weight: 600;
}

.blog-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    font-size: 0.92rem;
}

.blog-body th, .blog-body td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.blog-body th {
    font-weight: 600;
    color: var(--text);
    background: var(--bg-alt);
}

.blog-body td {
    color: var(--text-secondary);
}

.blog-body tr:hover td {
    background: var(--bg-alt);
}

.blog-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--accent-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.blog-body blockquote p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* Blog article CTA */
.blog-article-cta {
    margin-top: 64px;
    padding: 40px;
    background: var(--dark-section);
    border-radius: var(--radius-lg);
    text-align: center;
}

.blog-article-cta p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 24px;
}

/* ========================= */
/* FOCUS STYLES */
/* ========================= */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-primary:focus-visible {
    outline-color: white;
    outline-offset: 3px;
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 900px) {
    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        min-height: 280px;
    }

    .how-grid, .industries-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }

    .cta-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cta-stat-card {
        flex: 1;
        min-width: 140px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-right {
        align-items: flex-start;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 120px 20px 70px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .section { padding: 80px 20px; }
    .how-section { padding: 80px 20px; }
    .cta-section { padding: 80px 20px; }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .portfolio-info {
        padding: 28px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider { display: none; }

    .cta-card {
        padding: 36px 24px;
        border-radius: 16px;
    }

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