/* Homepage */

.hero-copy,
.hero-visual {
    position: relative;
}

.intro-section h2 {
    max-width: 760px;
}

.intro-section p {
    max-width: 860px;
}

/* Shared internal pages */

.page-header {
    padding: 72px 0 36px;
    background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.page-header h1 {
    margin-bottom: 14px;
}

.page-header p {
    max-width: 720px;
}

.content-block {
    padding: 24px 0 84px;
    background: #ffffff;
}

.content-card {
    background: #ffffff;
    border: 1px solid #e6e8f0;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.content-card + .content-card {
    margin-top: 22px;
}

.content-card h2 {
    margin-bottom: 12px;
}

.simple-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.simple-list li {
    position: relative;
    padding-left: 18px;
    color: #475467;
    line-height: 1.7;
}

.simple-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4f46e5;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Contact form */

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    font-weight: 700;
    color: #0f172a;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #d8dce8;
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit;
    color: #0f172a;
    background: #ffffff;
}

.form-row textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.10);
}

