:root {
    --bg-color: #fff8f0;
    --text-primary: #051150;
    --text-secondary: #051150;
    --coral-primary: #FF7E5F;
    --coral-secondary: #FEB47B;
    --purple-soft: #D4D0F5;
    --purple-deep: #706FD3;
    --card-warm-bg: radial-gradient(circle at center, #FFFFFF 0%, #FFDAC1 100%);
    --card-cool-bg: radial-gradient(circle at center, #FFFFFF 0%, #EFEAFF 100%);
    --card-neutral-bg: radial-gradient(circle at center, #FFFFFF 0%, #F0F0F0 100%);
    --shadow-soft: 0 32px 80px -40px rgba(5, 17, 80, 0.18);
    --shadow-color-warm: 0 36px 90px -45px rgba(255, 126, 95, 0.38);
    --shadow-color-cool: 0 36px 90px -45px rgba(112, 111, 211, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.reveal-item {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(6px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.site-header {
    padding: 1.5rem 0 0;
}

.site-nav {
    position: relative;
    z-index: 20;
}

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

.nav-logo {
    color: var(--coral-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 1px;
}

.logo-weight-light {
    font-weight: 400;
    opacity: 0.8;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-cta {
    padding: 10px 24px;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary {
    background: linear-gradient(90deg, var(--coral-primary) 0%, var(--coral-secondary) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
}

.btn-secondary {
    background-color: var(--purple-soft);
    color: var(--purple-deep);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #C8C4E8;
}

.hero-section {
    padding: 6rem 0 10rem;
    position: relative;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 560px;
    z-index: 2;
    padding: 1.5rem 0;
    padding-left: 1.75rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    max-width: min(600px, 100%);
    height: auto;
    margin-left: auto;
    z-index: 1;
    mix-blend-mode: multiply;
    animation: hero-float 10s ease-in-out infinite;
    transform-origin: 60% 40%;
    will-change: transform;
}

@keyframes hero-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -18px, 0) scale(1.02) rotate(-0.6deg);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.18;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.accent-purple {
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--purple-deep) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 200% 200%;
    animation: gradient-drift 14s ease-in-out infinite;
}

.accent-peach {
    background: linear-gradient(90deg, var(--coral-primary) 0%, var(--coral-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 200% 200%;
    animation: gradient-drift 12s ease-in-out infinite;
}

@keyframes gradient-drift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .accent-purple,
    .accent-peach {
        animation: none;
    }

    .hero-image {
        animation: none;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 440px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card {
    border: none;
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
}

.card-warm {
    background: var(--card-warm-bg);
    box-shadow: var(--shadow-color-warm);
    --card-base: var(--card-warm-bg);
}

.card-cool {
    background: var(--card-cool-bg);
    box-shadow: var(--shadow-color-cool);
    --card-base: var(--card-cool-bg);
}

.card-neutral {
    background: var(--card-neutral-bg);
    box-shadow: var(--shadow-soft);
    --card-base: var(--card-neutral-bg);
}

.benefit-item {
    background:
        radial-gradient(320px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0) 60%),
        var(--card-base, #FFFFFF);
}

.benefit-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background:
        radial-gradient(320px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0) 60%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.benefit-item.is-spotlight::after {
    opacity: 0.9;
}

.btn.is-magnetic {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    will-change: transform;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.benefits-container {
    padding: 5rem 0 8.5rem;
    text-align: center;
    background-color: #FFFFFF;
}

.benefits-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--purple-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
}

.benefits-title.reveal-text {
    background: none;
    color: var(--text-primary);
}

.reveal-text .word {
    color: inherit;
}

.benefits-title.reveal-text .word {
    background: linear-gradient(to right, var(--text-primary), var(--purple-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: var(--gradient-width, 100%) 100%;
    background-position: calc(var(--word-offset-x, 0px) * -1) 0;
    background-repeat: no-repeat;
}

.section-title-centered {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-intro {
    max-width: 620px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-top: 1rem;
}

.success-matrix-section .benefits-intro {
    text-align: center;
    margin-bottom: 2.35rem;
}

.benefits-intro::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(200px, 55%);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral-primary), var(--coral-secondary));
    opacity: 0.7;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.benefit-text strong {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.ai-is-different-container {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.ai-is-different-container::before,
.ai-is-different-container::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    opacity: 0.4;
    z-index: 0;
}

.ai-is-different-container::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.2), rgba(255, 126, 95, 0));
    top: 12%;
    left: 6%;
}

.ai-is-different-container::after {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(112, 111, 211, 0.18), rgba(112, 111, 211, 0));
    bottom: 8%;
    right: 4%;
}

.success-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.success-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 2.75rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px -50px rgba(5, 17, 80, 0.28);
}

.card-human {
    border: 1px solid rgba(255, 126, 95, 0.2);
    box-shadow: 0 34px 90px -55px rgba(255, 126, 95, 0.38);
}

.card-tech {
    border: 1px solid rgba(112, 111, 211, 0.2);
    box-shadow: 0 34px 90px -55px rgba(112, 111, 211, 0.3);
}

.card-human:hover {
    box-shadow: 0 44px 110px -60px rgba(255, 126, 95, 0.45);
}

.card-tech:hover {
    box-shadow: 0 44px 110px -60px rgba(112, 111, 211, 0.4);
}

.card-human::before,
.card-tech::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    bottom: -90px;
    right: -40px;
    opacity: 0.25;
}

.card-human::before {
    background: radial-gradient(circle, rgba(255, 126, 95, 0.6), rgba(255, 126, 95, 0));
}

.card-tech::before {
    background: radial-gradient(circle, rgba(112, 111, 211, 0.6), rgba(112, 111, 211, 0));
}

.success-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-bottom: 0;
    border-bottom: none;
}

.success-card h3 {
    font-size: 1.65rem;
    color: var(--text-primary);
    margin: 0;
}

.card-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.card-title {
    display: block;
    line-height: 1.2;
}

.card-icon-small {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px -15px rgba(5, 17, 80, 0.35);
    border: 1px solid rgba(5, 17, 80, 0.05);
}

.card-icon-small svg {
    width: 100%;
    height: 100%;
}

.factor-conclusion {
    margin-top: auto;
    font-weight: 600;
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.factor-highlight {
    margin-top: auto;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.factor-conclusion::before,
.factor-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 6px;
    height: calc(100% - 0.3rem);
    border-radius: 99px;
}

.factor-conclusion::before {
    background: linear-gradient(180deg, var(--coral-primary), var(--coral-secondary));
}

.factor-highlight::before {
    background: linear-gradient(180deg, var(--purple-deep), var(--purple-soft));
}

.success-matrix-section {
    background-color: var(--bg-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 4rem;
    position: relative;
    z-index: 10;
}

.carousel-track-container {
    position: relative;
    overflow: hidden;
    padding: 3.3rem 0;
}

.carousel-track {
    display: flex;
    gap: 4rem;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    align-items: center;
    padding: 2rem 0;
}

.factor-card {
    flex: 0 0 420px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 36px;
    padding: 3.75rem 3.25rem;
    border: 1px solid rgba(5, 17, 80, 0.08);
    box-shadow:
        0 80px 160px -90px rgba(5, 17, 80, 0.32),
        0 34px 90px -70px rgba(255, 126, 95, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 460px;
    transform: scale(0.9);
    opacity: 1;
}

.factor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(212, 208, 245, 0.18) 45%,
            rgba(255, 126, 95, 0.08) 100%);
    z-index: -1;
    transition: opacity 0.8s ease;
}

.factor-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 55%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.factor-card.active {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(5, 17, 80, 0.12);
    box-shadow:
        0 100px 190px -100px rgba(5, 17, 80, 0.32),
        0 40px 100px -80px rgba(255, 126, 95, 0.3);
    z-index: 10;
}

.factor-card>* {
    position: relative;
    z-index: 1;
}

.factor-card:not(.active) {
    transform: scale(0.9);
    opacity: 0.75;
    filter: grayscale(35%);
}

.factor-card.active::before {
    opacity: 1;
}

.factor-number {
    position: absolute;
    top: -1.5rem;
    right: -0.5rem;
    font-size: 14rem;
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.06;
    line-height: 0.8;
    pointer-events: none;
    transition: all 0.8s ease;
    font-family: 'Inter', sans-serif;
}

.factor-card.active .factor-number {
    color: var(--coral-secondary);
    opacity: 1;
    transform: translateY(10px);
}

.factor-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(212, 208, 245, 0.35) 100%);
    box-shadow:
        0 12px 30px rgba(5, 17, 80, 0.12),
        inset 0 0 12px rgba(255, 126, 95, 0.08);
    position: relative;
    z-index: 2;
}

.factor-card.active .factor-icon {
    box-shadow:
        0 18px 40px rgba(255, 126, 95, 0.2),
        inset 0 0 16px rgba(255, 126, 95, 0.12);
}

.factor-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--coral-primary);
    stroke-width: 2;
}

.factor-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.factor-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.factor-bullets li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.6rem;
    transition: color 0.4s ease;
}

.factor-card.active .factor-bullets li {
    color: var(--text-primary);
}

.factor-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral-primary), var(--coral-secondary));
    opacity: 0.8;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 20;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #FFFFFF;
    box-shadow: 0 15px 30px rgba(0, 28, 61, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    stroke-width: 2;
    fill: none;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 28, 61, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--coral-primary);
    transform: scale(1.3);
}

.about-section {
    background-color: var(--coral-primary);
    padding: 8rem 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.parallax-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    opacity: 0.35;
    z-index: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.blob-one {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    top: -120px;
    right: 8%;
}

.blob-two {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(254, 180, 123, 0.5), rgba(254, 180, 123, 0));
    bottom: -140px;
    left: 6%;
}

.contact-section {
    padding: 7.5rem 0 9rem;
    background: var(--bg-color);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral-primary);
}

.contact-intro h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contact-intro p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 420px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 3rem;
    box-shadow:
        0 25px 60px -40px rgba(5, 17, 80, 0.25),
        0 12px 24px -18px rgba(255, 126, 95, 0.35);
    border: 1px solid rgba(5, 17, 80, 0.08);
}

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

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

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    border-radius: 14px;
    border: 1px solid rgba(5, 17, 80, 0.12);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--coral-primary);
    box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.2);
}

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

.contact-form .btn-primary {
    align-self: flex-start;
    padding: 0.9rem 2.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.form-status {
    min-height: 1.2rem;
    font-size: 0.92rem;
    margin: 0;
    color: var(--text-secondary);
}

.form-status.is-success {
    color: #1A6A50;
    font-weight: 600;
}

.site-footer {
    background: var(--coral-primary);
    padding: 1rem 0 1.25rem;
    color: #FFFFFF;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-inner a {
    color: inherit;
}

.footer-inner a:first-child {
    justify-self: start;
}

.footer-inner a:nth-child(2) {
    justify-self: center;
}

.footer-inner span {
    justify-self: end;
    white-space: nowrap;
}

.legal-page {
    background: var(--bg-color);
    min-height: 100vh;
}

.legal-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #FFF7F2 0%, #FFFFFF 100%);
}

.legal-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-back {
    align-self: flex-end;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(5, 17, 80, 0.2);
    padding-bottom: 0.2rem;
}

.legal-intro h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.legal-intro p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

.legal-content {
    padding: 2rem 0 6rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-note {
    font-size: 0.9rem;
    color: rgba(5, 17, 80, 0.6);
    margin-top: 0.25rem;
}

.legal-stack {
    display: grid;
    gap: 0;
}

.legal-strong {
    font-weight: 700;
    color: var(--text-primary);
}

.legal-divider {
    border: none;
    height: 1px;
    background: rgba(5, 17, 80, 0.12);
    margin: 3rem 0;
}

.legal-list {
    padding-left: 1.1rem;
    margin: 0 0 1rem;
    color: var(--text-secondary);
}

.form-status.is-error {
    color: #B42318;
    font-weight: 600;
}

.reveal-text {
    overflow: hidden;
}

.reveal-text .word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: calc(var(--word-index) * 50ms);
}

.reveal-text.is-visible .word {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.about-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-left {
    flex: 1.2;
}

.about-headline {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.about-subtext {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 500px;
}

.about-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-white {
    background-color: #FFFFFF;
    color: var(--coral-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-white:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-4px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.about-right {
    display: flex;
    justify-content: flex-end;
}

.about-card {
    background: linear-gradient(160deg, rgba(254, 181, 166, 0.98), rgba(254, 181, 166, 0.88));
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 42px;
    border: 1px solid rgba(254, 181, 166, 0.75);
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    box-shadow:
        0 28px 70px -45px rgba(5, 17, 80, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #3B1C18;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 42px;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 55%);
    opacity: 0.6;
    pointer-events: none;
}

.about-card>* {
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-size: 2rem;
    color: #2A1110;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-card-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.about-card-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-card-subtitle {
    font-size: 0.98rem;
    opacity: 0.75;
    margin: 0;
}

.about-card-body {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.86;
    margin: 0;
}

.about-visual {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 242, 0.9));
    border-radius: 28px;
    padding: 1.6rem;
    color: #3B1C18;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 36px -30px rgba(59, 28, 24, 0.45);
    text-align: left;
}

.about-visual h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 1.2rem;
    color: rgba(59, 28, 24, 0.65);
}

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

.pareto-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.pareto-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.pareto-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #3B1C18;
    flex-shrink: 0;
    box-shadow: 0 12px 26px -18px rgba(59, 28, 24, 0.6);
}

.pareto-icon svg {
    width: 26px;
    height: 26px;
}

.pareto-icon-impact {
    background: linear-gradient(140deg, rgba(255, 126, 95, 0.9), rgba(254, 180, 123, 0.85));
}

.pareto-icon-focus {
    background: linear-gradient(140deg, rgba(255, 126, 95, 0.9), rgba(254, 180, 123, 0.85));
}

.pareto-icon-innovation {
    background: linear-gradient(140deg, rgba(255, 126, 95, 0.9), rgba(254, 180, 123, 0.85));
}

.pareto-item h5 {
    font-size: 1.02rem;
    margin: 0;
    color: #2A1110;
    letter-spacing: -0.01em;
}

.pareto-item p {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(59, 28, 24, 0.75);
}

.about-card-person {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.about-avatar {
    width: 104px;
    height: 104px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 40px -22px rgba(255, 255, 255, 0.65);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-card-person h4 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #2A1110;
}

.bio-role {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0.75;
}

.bio-description {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0;
    opacity: 0.78;
}

@media (max-width: 1024px) {
    .nav-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 2rem 1.75rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-image {
        margin-left: 0;
    }

    .carousel-container {
        padding: 0 3rem;
    }

    .factor-card {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-group {
        justify-content: center;
    }

    .about-right {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .about-container {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
    }

    .about-card {
        max-width: 720px;
        padding: 3.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .site-header {
        padding-top: 1rem;
    }

    .nav-inner {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        justify-content: center;
    }

    .hero-section {
        padding: 4.5rem 0 7.5rem;
    }

    .benefits-container,
    .ai-is-different-container,
    .success-matrix-section,
    .about-section,
    .contact-section {
        padding: 5rem 0;
    }

    .card {
        width: 100%;
        max-width: none;
    }

    .success-card {
        padding: 2.2rem;
    }

    .carousel-container {
        padding: 0 1.25rem;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-track-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
    }

    .carousel-track {
        transform: none !important;
    }

    .factor-card {
        flex: 0 0 100%;
        min-height: auto;
        scroll-snap-align: center;
    }

    .factor-number {
        font-size: 10rem;
    }

    .about-card {
        padding: 2.6rem;
    }

    .about-card-header {
        flex-direction: column;
        text-align: center;
    }

    .about-card-person {
        flex-direction: column;
        text-align: center;
    }

    .about-avatar {
        width: 88px;
        height: 88px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-intro p {
        margin: 0 auto;
    }

    .contact-card {
        padding: 2.25rem;
    }

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

    .contact-form .btn-primary {
        align-self: stretch;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-inner a,
    .footer-inner span {
        justify-self: center;
    }

    .legal-back {
        align-self: center;
    }
}

@media (max-width: 560px) {
    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .btn {
        width: 100%;
    }

    .about-cta-group,
    .btn-group {
        width: 100%;
    }
}
