 .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.site-main {
    min-height: calc(100vh - 160px);
}

.site-header {
    position: relative;
    z-index: 30;
    background: #ffffff;
    border-bottom: 1px solid #e8eaf2;
}

.nav-wrapper {
    min-height: 124px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section {
    padding: 28px 0 72px;
    background: linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
    gap: 72px;
    align-items: center;
}

.hero-copy {
    padding-top: 8px;
}

.hero-visual {
    position: relative;
    margin-top: -78px;
    margin-right: -12px;
    transform: scale(1.08);
    transform-origin: top right;
    z-index: 1;
}

.content-section {
    padding: 84px 0;
}

.intro-section {
    background: #ffffff;
}

.features-section {
    background: #f7f8fc;
}

.narrow-copy {
    max-width: 920px;
}

.features-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.site-footer {
    border-top: 1px solid #e8eaf2;
    background: #ffffff;
}

.footer-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom {
    padding: 0 32px 24px;
}

