.geo-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-accent) 100%)
}

.geo-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px
}

.geo-hero__subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 24px
}

.geo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(192, 0, 0, .1);
    border: 1px solid rgba(192, 0, 0, .25);
    border-radius: 100px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 600
}

.geo-info {
    padding: 60px 0
}

.geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.geo-text h2 {
    font-size: 28px;
    margin-bottom: 16px
}

.geo-text h3 {
    font-size: 20px;
    margin: 24px 0 12px
}

.geo-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px
}

.geo-text ul {
    list-style: none;
    padding: 0
}

.geo-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6
}

.geo-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700
}

.geo-prices {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px
}

.geo-prices h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center
}

.geo-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border)
}

.geo-price-row:last-child {
    border-bottom: none
}

.geo-price-row strong {
    font-size: 15px
}

.geo-price-row span {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading)
}

.geo-cta {
    text-align: center;
    padding: 40px 0 80px
}

.geo-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 17px
}

.geo-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.geo-advantages {
    padding: 60px 0;
    background: var(--bg-accent)
}

.geo-adv-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s
}

.geo-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.geo-adv-card .icon {
    font-size: 36px;
    margin-bottom: 14px
}

.geo-adv-card h3 {
    font-size: 17px;
    margin-bottom: 8px
}

.geo-adv-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6
}

.geo-cities {
    padding: 40px 0 20px
}

.geo-cities h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px
}

.geo-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center
}

.geo-cities-grid a {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
    text-decoration: none;
    color: var(--text-primary)
}

.geo-cities-grid a:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.svc-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-accent) 100%)
}

.svc-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px
}

.svc-hero__subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 24px
}

.svc-content {
    padding: 60px 0
}

.svc-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.svc-text h2 {
    font-size: 28px;
    margin-bottom: 16px
}

.svc-text h3 {
    font-size: 20px;
    margin: 28px 0 12px
}

.svc-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px
}

.svc-text ul,
.svc-text ol {
    padding-left: 0;
    list-style: none
}

.svc-text ul li,
.svc-text ol li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6
}

.svc-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700
}

.svc-text ol {
    counter-reset: step
}

.svc-text ol li {
    counter-increment: step
}

.svc-text ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700
}

.svc-sidebar {
    position: sticky;
    top: 100px
}

.svc-sidebar .geo-prices {
    margin-bottom: 24px
}

.svc-faq {
    padding: 60px 0;
    background: var(--bg-accent)
}

.svc-faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px
}

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

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color .2s
}

.faq-question:hover {
    color: var(--accent)
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    transition: transform .3s
}

.faq-item.is-open .faq-question::after {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0
}

@media(max-width:768px) {

    .geo-grid,
    .svc-grid {
        grid-template-columns: 1fr
    }

    .geo-hero,
    .svc-hero {
        padding: 100px 0 40px
    }

    .svc-sidebar {
        position: static
    }
}

.geo-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px
}

.geo-brand-link {
    display: block;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all .2s
}

.geo-brand-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.map-container {
    width: 100%;
    line-height: 0
}

.map-container iframe {
    border: 0;
    display: block
}