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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #0066ff;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-dark: rgba(0, 0, 0, 0.8);
    --bg-dark: #f3f6fb;
    --bg-light: #ffffff;
    --border-color: rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Inter', 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-subscribe,
.btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-subscribe:hover,
.btn-signin:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Business landing — first-screen visualization */
#core-business {
    scroll-margin-top: 96px;
}

.business-landing {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 100px 24px 48px;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(244, 114, 182, 0.14), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 56%, #f3f6fb 100%);
    color: #0f172a;
    overflow: hidden;
}

.business-landing__aurora {
    position: absolute;
    inset: -40% -20%;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(59, 130, 246, 0.14), transparent 55%),
        radial-gradient(ellipse 45% 35% at 75% 20%, rgba(139, 92, 246, 0.12), transparent 50%),
        radial-gradient(ellipse 40% 45% at 60% 85%, rgba(236, 72, 153, 0.1), transparent 55%);
    filter: blur(10px);
    animation: auroraShift 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.business-landing__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    pointer-events: none;
}

@keyframes auroraShift {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(4%, -3%) scale(1.05); opacity: 0.95; }
}

.business-landing__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.business-landing__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2rem;
}

.business-landing__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
    margin-bottom: 1rem;
}

.biz-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    100% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

.business-landing__title {
    font-family: 'Syne', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, #0f172a 0%, #2563eb 52%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-landing__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(15, 23, 42, 0.68);
    max-width: 640px;
    margin: 0 auto;
}

.business-landing__cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary--light {
    background: #0f172a;
    color: #ffffff;
}

.btn-primary--light:hover {
    background: #2563eb;
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-ghost-light:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.biz-flow-diagram {
    max-width: 720px;
    margin: 0 auto 1.75rem;
}

.biz-flow-svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.biz-flow-path {
    stroke-dasharray: 12 8;
    animation: flowDash 22s linear infinite;
}

@keyframes flowDash {
    to { stroke-dashoffset: -400; }
}

.biz-flow-node {
    animation: nodeGlow 3s ease-in-out infinite alternate;
}

@keyframes nodeGlow {
    from { filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.6)); }
    to { filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.7)); }
}

.biz-flow-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.4);
    margin-top: 0.35rem;
    padding: 0 4px;
}

.business-bento {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 1.5rem;
}

.hero-proof__item {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
}

.hero-proof__item strong {
    display: block;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.hero-proof__item p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.64);
}

.bento-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bento-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    min-height: 200px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.bento-erp {
    min-height: 100%;
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 24px 54px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.42);
    border-color: rgba(255, 255, 255, 0.78);
}

.bento-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-card__bg {
    transform: scale(1.08);
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(5, 5, 8, 0.1) 0%, rgba(5, 5, 8, 0.82) 55%, rgba(5, 5, 8, 0.94) 100%);
}

.bento-card__overlay--warm {
    background: linear-gradient(165deg, rgba(5, 5, 8, 0.15) 0%, rgba(60, 20, 40, 0.75) 50%, rgba(5, 5, 8, 0.95) 100%);
}

.bento-card__body {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.5rem 1.35rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.bento-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    color: #fff;
}

.bento-card__desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    max-width: 340px;
    margin-bottom: auto;
}

.bento-cta {
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #93c5fd;
    transition: color 0.25s ease;
}

.bento-mat .bento-cta { color: #fcd34d; }
.bento-creative .bento-cta { color: #f9a8d4; }

.bento-card:hover .bento-cta {
    color: #fff;
}

.bento-mini-viz {
    position: relative;
    width: 100%;
    max-width: 220px;
    height: 70px;
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-bar {
    flex: 1;
    height: var(--h);
    min-height: 18%;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    border-radius: 4px 4px 0 0;
    animation: barUp 2.4s ease-in-out infinite alternate;
}

.bento-bar:nth-child(2) { animation-delay: 0.2s; }
.bento-bar:nth-child(3) { animation-delay: 0.4s; }
.bento-bar:nth-child(4) { animation-delay: 0.1s; }

@keyframes barUp {
    from { transform: scaleY(0.85); opacity: 0.7; }
    to { transform: scaleY(1); opacity: 1; }
}

.bento-line {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 22px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    pointer-events: none;
}

.bento-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
}

.bento-chips li {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-swatches {
    display: flex;
    gap: 8px;
    margin-top: 0.85rem;
}

.bento-swatches span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.bento-swatches span:nth-child(1) { background: linear-gradient(135deg, #f472b6, #db2777); }
.bento-swatches span:nth-child(2) { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.bento-swatches span:nth-child(3) { background: linear-gradient(135deg, #22d3ee, #0284c7); }
.bento-swatches span:nth-child(4) { background: linear-gradient(135deg, #fbbf24, #ea580c); }

/* About Section */
.insight-section,
.focus-section,
.clients-section,
.process-section {
    padding: 96px 40px;
}

.insight-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.focus-section {
    background: #ffffff;
}

.clients-section {
    background: #f3f4f6;
}

.process-section {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 24%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #0f172a;
}

.section-intro {
    max-width: 880px;
    margin-bottom: 2.5rem;
}

.section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.9rem;
}

.section-title--left {
    text-align: left;
    margin-bottom: 1rem;
}

.section-copy {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.88;
}

.value-grid,
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

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

.value-card,
.outcome-card,
.client-panel,
.process-step {
    border-radius: 18px;
}

.value-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.value-card h3,
.outcome-card h3,
.client-panel h3,
.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-card p,
.outcome-card p,
.client-panel p,
.process-step p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-dark);
    opacity: 0.86;
}

.outcome-card {
    padding: 1.6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #0f172a;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.outcome-card p {
    color: rgba(15, 23, 42, 0.72);
    opacity: 1;
}

.outcome-index {
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #93c5fd;
    margin-bottom: 0.8rem;
}

.client-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.client-panel {
    padding: 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.check-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.check-list li {
    position: relative;
    padding-left: 1.6rem;
    line-height: 1.65;
    color: var(--text-dark);
    opacity: 0.9;
}

.check-list li::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #ec4899);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.process-step span {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #93c5fd;
}

.process-step p {
    color: rgba(15, 23, 42, 0.72);
}

.about {
    padding: 100px 40px;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-highlights div {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #f8fafc;
}

.about-highlights strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--primary-color);
}

.about-highlights p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder svg {
    opacity: 0.7;
}

.image-placeholder--insight {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.32), transparent 38%),
        radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.24), transparent 36%),
        linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
    align-items: stretch;
    justify-content: stretch;
    padding: 1.5rem;
}

.insight-board {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    padding: 1rem;
    gap: 0.8rem;
}

.insight-board__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
}

.insight-board__row span {
    color: rgba(15, 23, 42, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
}

.insight-board__row strong {
    color: #0f172a;
    font-size: 0.98rem;
}

.insight-board__foot {
    margin-top: 0.4rem;
    padding: 0 0.35rem;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.1), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #0f172a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(15, 23, 42, 0.72);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-prompts {
    margin-bottom: 2rem;
}

.contact-prompts h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.check-list--light li {
    color: rgba(15, 23, 42, 0.78);
}

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

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

.contact-item strong {
    color: #0f172a;
    font-weight: 600;
}

.contact-item a,
.contact-item p {
    color: rgba(15, 23, 42, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #0f172a;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(15, 23, 42, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    color: #0f172a;
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(15, 23, 42, 0.62);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: rgba(15, 23, 42, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .business-bento {
        grid-template-columns: 1fr;
    }

    .bento-erp {
        min-height: 320px;
    }

    .hero-proof,
    .value-grid,
    .client-columns,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .outcome-grid,
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-menu.active {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    }

    .nav-actions.active {
        position: absolute;
        top: calc(100% + 280px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .business-landing {
        padding: 88px 16px 36px;
    }

    .insight-section,
    .focus-section,
    .clients-section,
    .process-section,
    .about,
    .contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title--left {
        font-size: 2rem;
    }
}

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

    .biz-flow-labels {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-landing__head {
    animation: fadeIn 0.8s ease-out both;
}

.bento-card {
    animation: fadeIn 0.7s ease-out both;
}

.bento-stack .bento-card:nth-child(1) { animation-delay: 0.08s; }
.bento-stack .bento-card:nth-child(2) { animation-delay: 0.16s; }
.bento-erp { animation-delay: 0.04s; }
