/* =========================================================
   GEOTERMO — страница услуги
   Использует существующие стили сайта + дополнительные классы
   ========================================================= */

.geo-page {
    --geo-orange: #f7941d;
    --geo-dark: #303030;
    --geo-light: #f7f7f7;
    --geo-border: #e6e6e6;
}

.geo-page * {
    box-sizing: border-box;
}

.geo-page .geo-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* ---------- Общие элементы ---------- */

.geo-section {
    padding: 70px 0;
}

.geo-section--gray {
    background: #f7f7f7;
}

.geo-section-title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--geo-orange);
}

.geo-section-subtitle {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    font-size: 18px;
    line-height: 1.55;
}

/* ---------- Hero ---------- */

.geo-hero {
    position: relative;
    overflow: hidden;
}

.geo-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.geo-hero .hero-image {
    object-fit: cover;
}

.geo-hero .hero-badge span {
    display: block;
    line-height: 1.45;
}

/* ---------- Карточки преимуществ ---------- */

.geo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.geo-benefit-card {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--geo-border);
    border-radius: 4px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.geo-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,.09);
}

.geo-benefit-number {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
    font-weight: 800;
    color: var(--geo-orange);
}

.geo-benefit-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.15;
    text-transform: uppercase;
}

.geo-benefit-card p {
    margin: 0;
    color: #666;
    line-height: 1.55;
}

/* ---------- Большой блок с изображением ---------- */

.geo-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.geo-image-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.geo-image-section.reverse .geo-image {
    order: 2;
}

.geo-image {
    overflow: hidden;
    border-radius: 3px;
}

.geo-image img {
    display: block;
    width: 100%;
    height: auto;
}

.geo-content h2 {
    margin: 0 0 22px;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--geo-orange);
}

.geo-content p {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

.geo-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.geo-list li {
    position: relative;
    padding: 0 0 13px 27px;
    color: #333;
    line-height: 1.45;
}

.geo-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--geo-orange);
    font-weight: 800;
}

/* ---------- Контур ---------- */

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

.geo-contour-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 26px;
}

.geo-contour-card h3 {
    margin: 0 0 14px;
    color: var(--geo-orange);
    font-size: 23px;
    text-transform: uppercase;
}

.geo-contour-card p {
    margin: 0;
    color: #555;
    line-height: 1.55;
}

/* ---------- Цифры ---------- */

.geo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.geo-stat {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-top: 4px solid var(--geo-orange);
}

.geo-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 1;
    color: var(--geo-orange);
}

.geo-stat span {
    display: block;
    color: #444;
    line-height: 1.35;
}

/* ---------- Кейсы ---------- */

.geo-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.geo-case {
    background: #fff;
    border: 1px solid #e4e4e4;
}

.geo-case-image img {
    display: block;
    width: 100%;
    height: auto;
}

.geo-case-content {
    padding: 26px;
}

.geo-case-content h3 {
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--geo-orange);
}

.geo-case-content p {
    margin: 7px 0;
    color: #444;
    line-height: 1.5;
}

.geo-case-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.geo-case-data div {
    padding: 14px 10px;
    background: #f5f5f5;
    text-align: center;
}

.geo-case-data strong {
    display: block;
    font-size: 20px;
    color: #333;
}

.geo-case-data span {
    font-size: 13px;
    color: #666;
}

/* ---------- Этапы ---------- */

.geo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.geo-step {
    position: relative;
    padding: 25px 22px;
    background: #fff;
    border: 1px solid #e4e4e4;
}

.geo-step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--geo-orange);
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.geo-step h3 {
    margin: 0 0 10px;
    font-size: 20px;
    text-transform: uppercase;
}

.geo-step p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* ---------- CTA ---------- */

.geo-cta {
    padding: 65px 30px;
    text-align: center;
    background: #303030;
    color: #fff;
}

.geo-cta h2 {
    max-width: 850px;
    margin: 0 auto 18px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    color: var(--geo-orange);
    text-transform: uppercase;
}

.geo-cta p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.55;
}

/* ---------- FAQ ---------- */

.geo-faq {
    max-width: 1000px;
    margin: 40px auto 0;
}

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

.geo-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 5px;
    cursor: pointer;
    font-size: 19px;
    font-weight: 700;
}

.geo-faq-arrow {
    flex: 0 0 auto;
    font-size: 30px;
    color: var(--geo-orange);
    transition: transform .25s ease;
}

.geo-faq-answer {
    display: none;
    padding: 0 45px 22px 5px;
    color: #555;
    line-height: 1.6;
}

.geo-faq-entry.active .geo-faq-answer {
    display: block;
}

.geo-faq-entry.active .geo-faq-arrow {
    transform: rotate(90deg);
}

/* ---------- Адаптив ---------- */

@media (max-width: 1000px) {
    .geo-benefits-grid,
    .geo-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .geo-contour-grid {
        grid-template-columns: 1fr;
    }

    .geo-image-section,
    .geo-image-section.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .geo-image-section.reverse .geo-image {
        order: initial;
    }
}

@media (max-width: 700px) {
    .geo-page .geo-container {
        width: min(100% - 28px, 1200px);
    }

    .geo-section {
        padding: 50px 0;
    }

    .geo-benefits-grid,
    .geo-stats,
    .geo-cases-grid,
    .geo-steps {
        grid-template-columns: 1fr;
    }

    .geo-case-data {
        grid-template-columns: 1fr;
    }

    .geo-section-title {
        font-size: 30px;
    }
}
