/* ═══════════════════════════════════════════════════════════════════
   KUZNYA THEME — Стили секций
   ═══════════════════════════════════════════════════════════════════ */

/* ═══ ОБЩИЕ ДЛЯ СЕКЦИЙ ═══ */
.section {
    padding: 96px 0;
    position: relative;
}
.section-alt { background: var(--bg-light); }

.section-head {
    text-align: center;
    margin-bottom: 64px;
}
.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.section-head p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-head .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 14px;
}

/* ═══ FEATURES ═══ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 32px 26px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.4);
    background: rgba(var(--primary-rgb), 0.04);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-light);
    font-size: 20px;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.feature-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1000px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 44px; }
}


/* ═══ AUDIENCE ═══ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.audience-card {
    padding: 36px 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.4);
}
.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05));
    color: var(--primary-light);
    font-size: 24px;
    margin-bottom: 22px;
}
.audience-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.audience-card > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}
.audience-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}
.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
}
.audience-list li:last-child { margin-bottom: 0; }
.audience-list li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ═══ CAPABILITIES ═══ */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.capability-card {
    padding: 28px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.capability-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb), 0.35);
}
.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-light);
    font-size: 18px;
    margin-bottom: 18px;
}
.capability-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}
.capability-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ═══ RESPONSIVE для новых секций ═══ */
@media (max-width: 1000px) {
    .audience-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .capabilities-grid { grid-template-columns: 1fr; }
}


/* ═══ HOWITWORKS (Steps) ═══ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.step-card {
    padding: 32px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb), 0.35);
}
.step-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(var(--primary-rgb), 0.15);
    letter-spacing: -0.03em;
    line-height: 1;
}
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-light);
    font-size: 20px;
    margin-bottom: 20px;
}
.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ═══ DEMO ═══ */
.demo-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.demo-content h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
    margin: 14px 0 16px;
    letter-spacing: -0.025em;
}
.demo-content > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
}
.demo-creds {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.demo-cred {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-cred .cred-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    min-width: 60px;
}
.demo-cred code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary-light);
    background: none;
    padding: 0;
}
.demo-btn { margin-top: 8px; }

/* Мокап админки */
.demo-visual {
    display: flex;
    justify-content: center;
}
.demo-mockup {
    width: 100%;
    max-width: 460px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
    background: #0d0d12;
}
.mockup-bar {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    background: #1a1a22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2d2d38;
}
.mockup-bar span:first-child { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-body {
    display: grid;
    grid-template-columns: 120px 1fr;
    height: 260px;
}
.mockup-sidebar {
    background: #0f0f14;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.mock-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}
.mock-line:first-child {
    background: rgba(var(--primary-rgb), 0.25);
    width: 70%;
}
.mockup-main {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
}
.mock-card {
    height: 70px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.mock-card:first-child {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
    grid-column: span 2;
    height: 90px;
}

/* ═══ PRICING ═══ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    padding: 36px 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.4);
}
.price-card-featured {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0.02));
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.price-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.price-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
    min-height: 42px;
}
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-value {
    font-family: 'Inter Tight', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}
.price-suffix {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}
.price-sublabel {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 6px;
}
.price-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 28px;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}
.price-features li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}
.price-cta { width: 100%; justify-content: center; }

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
}
.pricing-note i { color: var(--primary); margin-right: 6px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1000px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .demo-block { grid-template-columns: 1fr; gap: 40px; }
    .demo-visual { order: -1; }
}
@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
}


/* ═══ SCREENSHOTS ═══ */
.screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.screen-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.screen-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.screen-image {
    aspect-ratio: 16 / 10;
    background: #0d0d12;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.screen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.screen-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}
.screen-placeholder i {
    font-size: 32px;
    color: rgba(var(--primary-rgb), 0.3);
}
.screen-body {
    padding: 20px 22px;
}
.screen-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.screen-body p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
}

/* ═══ DOCUMENTATION ═══ */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.doc-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 26px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.doc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb), 0.4);
    background: rgba(var(--primary-rgb), 0.04);
}
.doc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-light);
    font-size: 20px;
    flex-shrink: 0;
}
.doc-body { flex-grow: 1; }
.doc-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.doc-body p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.doc-count {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.doc-arrow {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    transition: transform 0.2s, color 0.2s;
}
.doc-card:hover .doc-arrow {
    transform: translateX(4px);
    color: var(--primary);
}
.docs-cta {
    text-align: center;
}

/* ═══ FAQ ═══ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item[open] {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.03);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--text);
    transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary-light); }
.faq-item[open] summary { color: var(--primary-light); }
.faq-q {
    flex-grow: 1;
    line-height: 1.5;
    text-align: left;
}
.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    font-size: 11px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}
.faq-a {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ═══ CTA ═══ */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15), transparent 65%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 32px 80px rgba(var(--primary-rgb), 0.15);
}
.cta-inner h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.cta-inner p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-actions .btn {
    padding: 14px 26px;
    font-size: 15px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1000px) {
    .screens-grid { grid-template-columns: repeat(2, 1fr); }
    .docs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .screens-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 44px 24px; }
    .faq-item summary { padding: 16px 20px; font-size: 14.5px; }
    .faq-a { padding: 0 20px 18px; font-size: 14px; }
}


/* ═══ PAGE (универсальный) ═══ */
.page-hero {
    padding: 56px 0 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-subtitle {
    margin-top: 14px;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.breadcrumbs a {
    color: var(--text-muted);
    transition: color .15s;
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs i { font-size: 9px; opacity: 0.5; }
.page-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.025em;
}
.page-content {
    max-width: 820px;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text-muted);
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--text);
    margin: 42px 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.page-content h1 { font-size: 34px; }
.page-content h2 { font-size: 27px; }
.page-content h3 { font-size: 21px; }
.page-content h4 { font-size: 17px; }
.page-content p { margin-bottom: 18px; }
.page-content strong { color: var(--text); font-weight: 600; }
.page-content a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb), 0.35);
    transition: text-decoration-color .15s;
}
.page-content a:hover { text-decoration-color: var(--primary-light); }
.page-content ul,
.page-content ol {
    margin: 18px 0 22px 26px;
}
.page-content li { margin-bottom: 10px; }
.page-content code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.35);
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 13.5px;
    color: var(--primary-light);
}
.page-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 4px 0 4px 22px;
    margin: 26px 0;
    font-style: italic;
    color: var(--text-muted);
}
.page-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 42px 0;
}
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}
.page-content table th,
.page-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}
.page-content table th {
    color: var(--text);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
}

/* ═══ CONTACT ═══ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-form-wrap {
    padding: 40px 40px 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-form h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.contact-form .form-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--text);
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}
.form-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
.form-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}
.form-msg i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.form-msg.ok {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #86efac;
}
.form-msg.err {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}

.contact-info h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.contact-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-light);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-item-body { flex-grow: 1; }
.contact-item-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-item-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}
.contact-item-value a { color: inherit; transition: color .15s; }
.contact-item-value a:hover { color: var(--primary-light); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-wrap { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 40px 0 28px; }
}