@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #ffffff;
    --color-bg-soft: #f7f5f0;
    --color-text: #1c1c1c;
    --color-text-mid: #444444;
    --color-text-mute: #666666;
    --color-border: #e8e6e0;
    --color-border-light: #f0eee8;
    --color-accent: #b89968;
    --color-accent-dark: #9a7e52;
    --color-dark: #1c1c1c;
    --radius: 4px;
    --section-pad: 90px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Montserrat", sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    font-size: 0.95rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

/* HEADER */
.site-header {
    border-bottom: 1px solid var(--color-border);
    background: #fff;
    position: relative;
    z-index: 100;
}

.site-header .navbar {
    padding: 22px 0;
    min-height: 92px;
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.navbar-brand img {
    height: 38px;
    width: auto;
    max-width: 240px;
}

.site-header .navbar-collapse {
    justify-content: center;
}

.site-header .navbar-nav.main-nav {
    gap: 4px;
}

.site-header .nav-link {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: color 0.2s;
}

.site-header .nav-link:hover {
    color: var(--color-accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    transition: color 0.2s;
}

.header-phone:hover { color: var(--color-accent); }

/* BUTTONS */
.btn-accent {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

.btn-outline:hover {
    background: var(--color-text);
    color: #fff;
}

.btn-big {
    padding: 16px 44px;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

.btn-big:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    height: 640px;
    overflow: hidden;
    color: #fff;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

.hero-slogan {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    color: #fff;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    max-width: 560px;
    color: #f0eee8;
}

.hero-bullets {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-bullet {
    font-size: 0.95rem;
    padding-left: 18px;
    position: relative;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
    width: 240px;
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
}

.btn-hero-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    width: 240px;
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
}

.btn-hero-outline:hover {
    background: #fff;
    color: var(--color-dark);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: 5px;
}

/* SECTIONS */
section {
    padding: var(--section-pad) 0;
}

.section-gray {
    background: var(--color-bg-soft);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--color-text);
}

.section-sub {
    font-size: 1rem;
    color: var(--color-text-mid);
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* CALCULATOR */
.calc-wrapper {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 40px 44px;
    max-width: 940px;
    margin: 0 auto;
    box-shadow: 0 6px 30px rgba(0,0,0,0.04);
}

.calc-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.calc-form .form-control,
.calc-form .form-select {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    color: var(--color-text);
    font-family: "Montserrat", sans-serif;
}

.calc-form .form-control::placeholder {
    color: var(--color-text-mute);
}

.calc-form .form-control:focus,
.calc-form .form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.15rem rgba(184, 153, 104, 0.2);
}

.calc-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.calc-note {
    font-size: 0.85rem;
    color: var(--color-text-mid);
}

/* TYPES */
.type-card {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

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

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

.type-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-accent);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.type-tag.tag-konek {
    background: var(--color-accent);
}

.type-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.type-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.type-desc {
    font-size: 0.85rem;
    color: var(--color-text-mid);
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.type-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.type-price-from {
    font-size: 0.7rem;
    color: var(--color-text-mute);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
}

.type-more {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ADVANTAGES */
.adv-card {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    height: 100%;
}

.adv-num {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: var(--color-accent);
}

.adv-label {
    font-size: 0.95rem;
    color: var(--color-text-mid);
    line-height: 1.45;
    font-weight: 500;
}

/* GEOGRAPHY */
.geo-map {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    height: 420px;
    position: relative;
}

.geo-map iframe {
    border: 0 !important;
    width: 100%;
    height: 100%;
}

.geo-list-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-mute);
    margin-bottom: 20px;
}

.geo-region {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.geo-region:last-child { border-bottom: none; }

.geo-region-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.geo-region-cost {
    color: var(--color-text-mid);
    font-size: 0.85rem;
}

/* PROCESS */
.process-step {
    height: 100%;
}

.process-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
}

.process-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.process-desc {
    font-size: 0.9rem;
    color: var(--color-text-mid);
    line-height: 1.55;
    margin-bottom: 12px;
}

.process-time {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* CTA BANNER */
.cta-banner {
    background: var(--color-dark);
    color: #fff;
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
}

.cta-banner p {
    font-size: 0.95rem;
    color: #c4c0b6;
    margin-bottom: 0;
}

.cta-banner-form {
    display: flex;
    gap: 12px;
}

.cta-banner-form .form-control {
    background: #fff;
    border: 2px solid #fff;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 0.95rem;
    height: 54px;
    flex: 1;
    color: var(--color-text);
    font-family: "Montserrat", sans-serif;
}

.cta-banner-form .btn-accent {
    height: 54px;
    padding: 0 32px;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* SERVICES */
.service-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 28px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-mid);
    line-height: 1.55;
}

/* GUARANTEES */
.guar-card {
    background: #fff;
    border-radius: 6px;
    padding: 28px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.guar-icon {
    width: 56px;
    height: 56px;
    background: var(--color-dark);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.4rem;
}

.guar-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--color-text);
}

.guar-desc {
    font-size: 0.9rem;
    color: var(--color-text-mid);
    line-height: 1.6;
}

/* FAQ */
.faq-wrapper {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color 0.2s;
}

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

.faq-mark {
    font-size: 1.5rem;
    color: var(--color-accent);
    line-height: 1;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 16px;
    font-weight: 400;
}

.faq-question.active .faq-mark {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 0 26px;
    font-size: 0.95rem;
    color: var(--color-text-mid);
    line-height: 1.65;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
}

/* CONTACT */
.contact-block-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-mute);
    margin-bottom: 24px;
}

.contact-phone-big {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--color-text);
    text-decoration: none;
    display: inline-block;
}

.contact-phone-big:hover { color: var(--color-accent); }

.contact-line {
    font-size: 0.95rem;
    color: var(--color-text-mid);
    margin-bottom: 12px;
}

.contact-line i {
    color: var(--color-accent);
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.contact-messengers {
    display: flex;
    gap: 10px;
    margin: 22px 0;
}

.msg-btn {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 1.2rem;
}

.msg-btn:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.msg-btn-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-form {
    background: #fff;
    border-radius: 6px;
    padding: 36px;
    border: 1px solid var(--color-border);
}

.contact-form .form-label {
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form .form-control {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    font-family: "Montserrat", sans-serif;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 90px;
    padding: 14px 16px;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: var(--color-text-mute);
}

.contact-form .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.15rem rgba(184, 153, 104, 0.2);
}

.contact-form .btn-big { width: 100%; }

/* FOOTER */
.site-footer {
    background: var(--color-dark);
    color: #c4c0b6;
    padding: 56px 0 24px;
}

.footer-top {
    padding-bottom: 36px;
    border-bottom: 1px solid #2c2c2c;
    margin-bottom: 26px;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c4c0b6;
}

.footer-col-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #c4c0b6;
}

.footer-col a {
    color: #c4c0b6;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important;
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: #888;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--color-accent); }

/* MODAL */
.modal-content {
    border-radius: 6px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--color-border);
    padding: 22px 28px;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-body {
    padding: 28px;
}

.modal-form .form-label {
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.modal-form .form-control {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-family: "Montserrat", sans-serif;
}

.modal-form .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.15rem rgba(184, 153, 104, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hero h1 { font-size: 2.8rem; }
    .header-phone { font-size: 0.95rem; }
}

@media (max-width: 991px) {
    :root { --section-pad: 64px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    .hero { height: auto; min-height: 580px; padding: 60px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-text { font-size: 0.95rem; }
    .hero-bullets { gap: 14px 22px; }
    .hero-dots { right: 30px; bottom: 20px; }
    .section-title { font-size: 1.6rem; }
    .calc-wrapper { padding: 28px 22px; }
    .calc-bottom { flex-direction: column; align-items: stretch; }
    .calc-bottom .btn-big { width: 100%; }
    .cta-banner-form { flex-direction: column; gap: 10px; }
    .cta-banner-form .form-control { width: 100%; }
    .cta-banner-form .btn-accent { width: 100%; }
    .cta-banner h2 { font-size: 1.5rem; }
    .contact-phone-big { font-size: 1.8rem; }
    .footer-bottom { justify-content: center; text-align: center; }
    .adv-num { font-size: 2.2rem; }
    .process-num { font-size: 2.4rem; }
    .site-header .navbar { padding: 14px 0; min-height: auto; }
    .navbar-brand img { height: 32px; }
    .header-right { gap: 12px; }
    .site-header .navbar-collapse {
        background: #fff;
        padding: 16px 0;
        border-top: 1px solid var(--color-border);
        margin: 14px -12px 0;
        padding-left: 16px;
        padding-right: 16px;
    }
    .site-header .nav-link { padding: 10px 0 !important; }
    .header-right-mobile { 
        display: flex; 
        flex-direction: column; 
        gap: 12px; 
        margin-top: 14px; 
        padding-top: 14px; 
        border-top: 1px solid var(--color-border);
    }
    .header-right-mobile .header-phone { display: block; }
    .contact-form { padding: 24px; }
}

@media (max-width: 575px) {
    :root { --section-pad: 48px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .hero h1 { font-size: 1.8rem; line-height: 1.1; }
    .hero { min-height: 520px; }
    .hero-content { padding-top: 20px; }
    .hero-slogan { font-size: 0.8rem; letter-spacing: 1.5px; }
    .hero-text { font-size: 0.9rem; }
    .hero-bullet { font-size: 0.85rem; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; }
    .hero-ctas { flex-direction: column; gap: 10px; }
    .section-title { font-size: 1.4rem; }
    .section-sub { font-size: 0.9rem; margin-bottom: 36px; }
    .calc-wrapper { padding: 22px 16px; }
    .calc-bottom { padding-top: 18px; }
    .type-img { height: 180px; }
    .adv-card { padding: 26px 16px; }
    .adv-num { font-size: 1.9rem; }
    .guar-card { padding: 22px; gap: 14px; }
    .guar-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .service-card { padding: 22px; }
    .contact-phone-big { font-size: 1.5rem; }
    .contact-form { padding: 20px; }
    .cta-banner h2 { font-size: 1.3rem; }
    .modal-body { padding: 22px; }
}
