/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f2f2f2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* === SITE HEADER === */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    line-height: 1.5;
    max-width: 140px;
}

.hdr-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-icon {
    flex-shrink: 0;
}

.hdr-icon svg {
    display: block;
}

.hdr-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hdr-addr {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.hdr-phones {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.hdr-phones a {
    color: #333;
    transition: color 0.2s;
}

.hdr-phones a:hover {
    color: #e3ae62;
}

.hdr-link {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e3ae62;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.hdr-link:hover {
    color: #d49a4e;
}

.hdr-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hdr-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f2f2f2;
    transition: background 0.2s;
}

.hdr-social a:hover {
    background: #e3ae62;
}

.hdr-social a:hover svg {
    fill: #fff;
}

.hdr-social svg {
    width: 16px;
    height: 16px;
    fill: #666;
    transition: fill 0.2s;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-switch .lang-icon {
    display: flex;
    align-items: center;
}

.lang-switch .lang-icon svg {
    width: 24px;
    height: 24px;
}

.lang-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    padding: 2px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.2s;
    text-align: center;
}

.lang-links a:hover {
    color: #e3ae62;
    border-color: #e3ae62;
}

.lang-links a.active {
    color: #e3ae62;
    border-color: #e3ae62;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle i {
    display: block;
    width: 26px;
    height: 2px;
    background: #1a1a2e;
    transition: all 0.3s;
}

.site-nav {
    background: #1a1a2e;
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0;
}

.site-nav a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.site-nav a:hover {
    color: #e3ae62;
    background: rgba(255, 255, 255, 0.05);
}

.site-nav a.nav-active {
    color: #e3ae62;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background: #e3ae62;
    color: #fff;
    border-color: #e3ae62;
}

.btn-gold:hover {
    background: #d49a4e;
    border-color: #d49a4e;
}

.btn-outline {
    background: transparent;
    color: #e3ae62;
    border-color: #e3ae62;
}

.btn-outline:hover {
    background: #e3ae62;
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px;
}

/* === HERO === */
.hero {
    position: relative;
    background: url('https://readycon.com.ua/wp-content/uploads/2020/10/prjamosten01-optimized.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(26, 26, 46, 0.55) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #e3ae62;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-cta .btn-outline {
    color: #fff;
    border-color: #fff;
}

.hero-cta .btn-outline:hover {
    background: #fff;
    color: #1a1a2e;
}

.trust-bar {
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-title span {
    color: #e3ae62;
}

.section-title--left {
    text-align: left;
}

.section-title--light {
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 17px;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-link {
    text-align: center;
    margin-top: 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #e3ae62;
}

/* === PROBLEMS === */
.problems {
    padding: 80px 0;
    background: #fff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.problem-card {
    padding: 32px 24px;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: #e3ae62;
    box-shadow: 0 8px 30px rgba(227, 174, 98, 0.15);
    transform: translateY(-4px);
}

.problem-icon {
    margin-bottom: 16px;
}

.problem-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.problem-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* === TYPES === */
.types {
    padding: 80px 0;
    background: #f2f2f2;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.type-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.type-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.type-img {
    height: 220px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-body {
    padding: 24px;
}

.type-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.type-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* === TECHNOLOGY === */
.tech {
    padding: 80px 0;
    background: #fff;
}

.tech-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tech-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    margin-top: 16px;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-feature {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    border-left: 3px solid #e3ae62;
}

.tech-feature h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.tech-feature p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.tech-img {
    border-radius: 6px;
    overflow: hidden;
    background: #ddd;
    min-height: 400px;
}

.tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === PROJECTS === */
.projects {
    padding: 80px 0;
    background: #1a1a2e;
}

.projects .section-title {
    color: #fff;
}

.projects .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.project-card {
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.project-img {
    height: 200px;
    background: #444;
    position: relative;
    overflow: hidden;
}

.project-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(227, 174, 98, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-info {
    padding: 16px;
}

.project-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.project-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.projects-cta a {
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(227, 174, 98, 0.4);
    transition: border-color 0.2s;
}

.projects-cta a:hover {
    border-color: #e3ae62;
}

/* === NUMBERS === */
.numbers {
    padding: 60px 0;
    background: #f2f2f2;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.number-item strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #e3ae62;
    line-height: 1;
    margin-bottom: 8px;
}

.number-item span {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === HOW WE WORK === */
.how {
    padding: 80px 0;
    background: #fff;
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
}

.step-num {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #e3ae62;
    line-height: 1;
    margin-bottom: 12px;
}

.step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.step p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.step-line {
    width: 40px;
    height: 2px;
    background: #e3ae62;
    margin-top: 24px;
    flex-shrink: 0;
}

/* === CALCULATOR / FORM === */
.calc {
    padding: 80px 0;
    background: #1a1a2e;
    color: #fff;
}

.calc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calc-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.calc-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.calc-form-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 36px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    color: #333;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e3ae62;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.form-status {
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
}

.form-status.error {
    display: block;
    background: #fbe9e7;
    color: #c62828;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* === MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 26, 46, 0.7);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-overlay.open {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon svg {
    width: 64px;
    height: 64px;
}

.modal-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1a1a2e;
}

/* === FAQ === */
.faq {
    padding: 80px 0;
    background: #f2f2f2;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item summary {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-item summary:hover {
    color: #e3ae62;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #e3ae62;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    padding: 0 0 20px;
}

/* === CTA BOTTOM === */
.cta-bottom {
    padding: 60px 0;
    background: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #f8f8f8;
    padding: 40px 48px;
    border-radius: 8px;
    border-left: 4px solid #e3ae62;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-inner p {
    color: #666;
    font-size: 16px;
    max-width: 640px;
    line-height: 1.6;
}

/* === SITE FOOTER === */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 16px;
}

.footer-logo p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e3ae62;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #e3ae62;
}

.footer-contacts p,
.footer-contacts a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contacts a {
    display: inline;
}

.footer-contacts a:hover {
    color: #e3ae62;
}

.footer-contacts .footer-schedule {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.footer-social a:hover {
    background: #e3ae62;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-messengers {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-messengers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.2s;
}

.footer-messengers a:hover {
    transform: scale(1.1);
}

.footer-messengers svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }

    .types-grid,
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tech-inner,
    .calc-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps {
        gap: 16px;
    }

    .step-line {
        display: none;
    }

    .step {
        min-width: 140px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .site-header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hdr-col.hdr-address,
    .hdr-col.hdr-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .site-nav-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .site-nav a {
        padding: 12px 14px;
        font-size: 12px;
    }

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

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-inner {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .types-grid,
    .problems-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .step-line {
        display: block;
        width: 2px;
        height: 24px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .site-nav {
        display: none;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav-inner {
        flex-direction: column;
    }

    .site-nav a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        justify-content: center;
    }

    .calc-form-wrap {
        padding: 24px 20px;
    }

    .number-item strong {
        font-size: 40px;
    }

    .roi-result strong {
        font-size: 22px;
    }

    .exit-popup-box {
        padding: 32px 20px;
    }
}

/* === CLIENT LOGOS STRIP === */
.clients {
    padding: 32px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.clients-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.clients-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    white-space: nowrap;
}

.client-item {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.2s;
}

.client-item:hover {
    color: #e3ae62;
}

/* === ROI SECTION === */
.roi {
    padding: 80px 0;
    background: #faf7f2;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.roi-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.roi-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.roi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.roi-row:last-of-type {
    border-bottom: none;
}

.roi-label {
    color: #666;
}

.roi-value {
    font-weight: 600;
    color: #1a1a2e;
}

.roi-result {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #e3ae62 0%, #d49a4e 100%);
    border-radius: 6px;
    text-align: center;
    color: #fff;
}

.roi-result strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
}

.roi-result span {
    font-size: 14px;
    opacity: 0.9;
}

.roi-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: #999;
}

/* === COMPARISON TABLE === */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 12px;
    text-align: left;
    border-bottom: 2px solid #e3ae62;
    color: #1a1a2e;
}

.comparison-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666;
}

.comparison-table .val-good {
    color: #2e7d32;
    font-weight: 600;
}

.comparison-table .val-bad {
    color: #c62828;
}

/* === TESTIMONIALS === */
/* === VIDEO === */
.video-section {
    padding: 80px 0;
    background: #1a1a2e;
}

.video-section .section-title {
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.video-card .video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-card .video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card .video-info {
    padding: 16px 20px;
}

.video-card .video-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 4px;
}

.video-card .video-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.video-cta {
    text-align: center;
    margin-top: 32px;
}

.video-cta a {
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.3s;
}

.video-cta a:hover {
    border-color: #e3ae62;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.testimonials {
    padding: 80px 0;
    background: #f2f2f2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    color: #e3ae62;
    opacity: 0.15;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-info .t-name {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.testimonial-info .t-role {
    font-size: 13px;
    color: #999;
}

/* === PROJECT BADGE === */
.project-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(227, 174, 98, 0.92);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 1;
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #1a1a2e;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.sticky-cta-inner {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 12px;
}

/* === CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.chat-widget-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.chat-widget.open .chat-widget-items {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chat-widget-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.chat-widget-item:hover {
    transform: scale(1.1);
}

.chat-widget-item svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.chat-widget-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e3ae62;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(227, 174, 98, 0.4);
    transition: transform 0.2s, background 0.2s;
}

.chat-widget-toggle:hover {
    transform: scale(1.05);
    background: #d49a4e;
}

.chat-widget-toggle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: transform 0.3s;
}

.chat-widget.open .chat-widget-toggle svg {
    transform: rotate(135deg);
}

/* === EXIT POPUP === */
.exit-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 26, 46, 0.75);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.exit-popup-overlay.open {
    display: flex;
}

.exit-popup-box {
    background: #fff;
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

.exit-popup-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.exit-popup-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.exit-popup-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.exit-popup-form input {
    flex: 1;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.exit-popup-form input:focus {
    outline: none;
    border-color: #e3ae62;
    background: #fff;
}

.exit-popup-note {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.exit-popup-skip {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: underline;
}

.exit-popup-skip:hover {
    color: #666;
}

/* === HERO MINI-BENEFITS === */
.hero-benefits {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.85;
}

.hero-benefit svg {
    flex-shrink: 0;
}

/* === RESPONSIVE NEW COMPONENTS === */
@media (max-width: 1024px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }

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

    .clients-inner {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }

    .chat-widget {
        bottom: 80px;
        right: 16px;
    }

    .chat-widget-toggle {
        width: 50px;
        height: 50px;
    }

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

    .clients-inner {
        gap: 20px;
    }

    .client-item {
        font-size: 14px;
    }

    .exit-popup-form {
        flex-direction: column;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 10px;
    }

    body {
        padding-bottom: 64px;
    }

    .site-footer {
        padding-bottom: 64px;
    }
}

/* === RENT TRIGGER BLOCK === */
.rent-trigger {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid rgba(227, 174, 98, 0.3);
    border-radius: 12px;
    padding: 32px 40px;
    max-width: 700px;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.rent-trigger p:first-child {
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rent-trigger .rent-amount {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 8px;
}

.rent-trigger .rent-cta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* === PROBLEM CARD LOSS LINE === */
.problem-loss {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(227, 174, 98, 0.2);
    color: #e3ae62;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* === TYPE CARD SPECS === */
.type-specs {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(227, 174, 98, 0.08);
    border-top: 1px solid rgba(227, 174, 98, 0.15);
}

.type-spec {
    text-align: center;
}

.type-spec strong {
    display: block;
    color: #e3ae62;
    font-size: 15px;
    font-weight: 700;
}

.type-spec span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* === ROI CONCLUSION === */
.roi-conclusion {
    background: #1a1a2e;
    border: 1px solid rgba(227, 174, 98, 0.3);
    border-radius: 12px;
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.roi-conclusion h3 {
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 16px;
}

.roi-conclusion-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.roi-conclusion-item {
    color: #fff;
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.roi-conclusion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23e3ae62' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* === PROJECT DETAILS === */
.project-details {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.project-detail {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(227, 174, 98, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(227, 174, 98, 0.15);
}

.project-detail strong {
    color: #e3ae62;
}

/* === WHO-SUITS BLOCK === */
.who-suits {
    padding: 60px 0;
    background: #12121f;
}

.who-suits .section-title {
    color: #fff;
}

.who-suits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.who-suits-item {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 174, 98, 0.15);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}

.who-suits-item:hover {
    border-color: #e3ae62;
    transform: translateY(-4px);
}

.who-suits-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}

.who-suits-item h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
}

.who-suits-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* === URGENCY BLOCK === */
.urgency {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

.urgency .section-title {
    color: #fff;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 32px;
}

.urgency-item {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(227, 174, 98, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.urgency-item svg {
    margin-bottom: 16px;
}

.urgency-item h4 {
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.urgency-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.urgency-cta {
    text-align: center;
}

/* === CALCULATOR === */
.calculator {
    padding: 60px 0;
    background: #12121f;
}

.calculator .section-title {
    color: #fff;
}

.calc-tool {
    max-width: 600px;
    margin: 32px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 174, 98, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.calc-tool-row {
    margin-bottom: 20px;
}

.calc-tool-row label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
}

.calc-tool-row input[type="range"] {
    width: 100%;
    accent-color: #e3ae62;
}

.calc-tool-row select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(227, 174, 98, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.calc-tool-value {
    text-align: right;
    color: #e3ae62;
    font-weight: 600;
    font-size: 16px;
}

.calc-tool-result {
    background: linear-gradient(135deg, rgba(227, 174, 98, 0.15) 0%, rgba(227, 174, 98, 0.05) 100%);
    border: 1px solid rgba(227, 174, 98, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.calc-tool-result .price {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #e3ae62;
    font-weight: 700;
}

.calc-tool-result .price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-top: 4px;
}

.calc-tool-result .btn {
    margin-top: 16px;
}

/* === RESPONSIVE: new blocks === */
@media (max-width: 1024px) {
    .who-suits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rent-trigger {
        margin-top: -24px;
        padding: 24px 20px;
    }

    .rent-trigger .rent-amount {
        font-size: 22px;
    }

    .who-suits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .roi-conclusion-items {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .type-specs {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .who-suits-grid {
        grid-template-columns: 1fr;
    }
}

/* === SEO CONTENT BLOCK === */
.seo-content {
    padding: 60px 0 40px;
    background: #f8f8f8;
}

.seo-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 48px 0 16px;
    text-transform: uppercase;
}

.seo-content h2:first-of-type {
    margin-top: 0;
}

.seo-content h2 span {
    color: #e3ae62;
}

.seo-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 28px 0 10px;
}

.seo-content p,
.seo-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.seo-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.seo-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23e3ae62' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.seo-content .seo-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
}

.seo-content .seo-cta-inline {
    display: inline-block;
    margin: 16px 0 24px;
}

.seo-content .seo-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 24px;
}

.seo-content .seo-case {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.seo-content .seo-case strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.seo-content .seo-case span {
    font-size: 13px;
    color: #888;
}

.seo-content .seo-case em {
    display: block;
    color: #e3ae62;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
}

.seo-content .seo-price-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0 24px;
    max-width: 500px;
}

.seo-content .seo-price-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.seo-content .seo-price-item strong {
    display: block;
    color: #e3ae62;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
}

.seo-content .seo-price-item span {
    font-size: 13px;
    color: #666;
}

.seo-content details {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 0;
}

.seo-content details summary {
    padding: 14px 20px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    font-size: 15px;
}

.seo-content details summary:hover {
    color: #e3ae62;
}

.seo-content details p {
    padding: 0 20px 14px;
    margin: 0;
}

.seo-content .seo-steps {
    counter-reset: seo-step;
    list-style: none;
    padding: 0;
}

.seo-content .seo-steps li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 12px;
}

.seo-content .seo-steps li::before {
    counter-increment: seo-step;
    content: counter(seo-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #e3ae62;
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Oswald', sans-serif;
}

@media (max-width: 768px) {
    .seo-content .seo-cases {
        grid-template-columns: 1fr;
    }

    .seo-content .seo-price-table {
        grid-template-columns: 1fr;
    }

    .seo-content h2 {
        font-size: 22px;
    }
}

/* === GEO: AI-Citation Styles === */
.tldr{background:#1a1a2e;border-radius:6px;padding:24px 28px;margin:20px 0 28px;color:rgba(255,255,255,.9)}
.tldr-title{font-family:'Oswald',sans-serif;font-size:14px;font-weight:600;text-transform:uppercase;color:#e3ae62;margin-bottom:10px;letter-spacing:.5px}
.tldr ul{margin:0;padding:0 0 0 20px;font-size:14px;line-height:1.8}
.tldr li{padding:2px 0}
.tldr strong{color:#e3ae62}
.answer-capsule{background:rgba(227,174,98,.06);border-left:3px solid #e3ae62;padding:12px 16px;margin:12px 0 20px;font-size:15px;color:#444;line-height:1.7}
.key-takeaway{background:rgba(227,174,98,.06);border-left:3px solid #e3ae62;padding:10px 16px;margin:16px 0 24px;font-size:14px;color:#444}
.key-takeaway strong{color:#1a1a2e}
.author-bio{display:flex;gap:16px;align-items:flex-start;background:#f8f8f8;border-radius:6px;padding:20px;margin:28px 0}
.author-bio-avatar{width:64px;height:64px;border-radius:50%;background:#1a1a2e;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#e3ae62;font-family:'Oswald',sans-serif;font-size:24px;font-weight:700}
.author-bio-text{font-size:13px;color:#555;line-height:1.6}
.author-bio-text strong{color:#1a1a2e;font-size:15px;display:block;margin-bottom:2px}
.author-bio-text em{font-style:normal;color:#888}
dfn{font-style:normal;font-weight:600;border-bottom:1px dotted #e3ae62}
.articles-cluster{background:#f8f8f8;padding:48px 0}
.articles-cluster .section-title{text-align:center;margin-bottom:32px}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.article-link-card{background:#fff;border-radius:6px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.06);transition:box-shadow .2s,transform .2s;text-decoration:none;color:inherit;display:flex;flex-direction:column}
.article-link-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.12);transform:translateY(-2px)}
.article-link-card h3{font-family:'Oswald',sans-serif;font-size:15px;font-weight:500;color:#1a1a2e;padding:16px 16px 8px;line-height:1.4;margin:0}
.article-link-card p{font-size:13px;color:#666;padding:0 16px 16px;line-height:1.5;margin:0;flex:1}
.article-link-card .article-link-tag{display:inline-block;font-size:11px;text-transform:uppercase;color:#e3ae62;font-weight:600;padding:0 16px 14px;letter-spacing:.3px}
@media(max-width:900px){.articles-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.articles-grid{grid-template-columns:1fr}}
.article-meta{display:flex;align-items:center;gap:16px;font-size:13px;color:#888;margin-bottom:16px;flex-wrap:wrap;justify-content:center}
.article-meta time{font-weight:600;color:#555}
.article-quote{background:#f8f8f8;border-left:3px solid #e3ae62;padding:20px 24px;margin:0;font-size:15px;line-height:1.7;color:#333;font-style:italic}
.article-quote p{margin:0 0 10px;font-style:italic}
.article-quote-author{display:block;font-size:13px;font-style:normal;color:#888;margin-top:8px}
.article-quote-author a{color:#e3ae62;text-decoration:none}
