* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f7f7f7;
    color: #1c1c1c;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =======================
   CONTAINER (adaptive)
======================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =======================
   HEADER
======================= */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    font-weight: 700;
}

.logo span {
    color: #c9a46a;
}

.nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    padding-right: 22px;
}

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

.phone {
    font-size: 14px;
    white-space: nowrap;
}

/* =======================
   BUTTONS
======================= */
.btn {
    background: #1f2a44;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.btn.big {
    padding: 14px 18px;
    margin-top: 15px;
    width: 100%;
    max-width: 260px;
}

/* =======================
   HERO (premium version)
======================= */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;

    background: url("images/hero.png") center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.95) 12%,
            rgba(0, 0, 0, 0.92) 22%,
            rgba(0, 0, 0, 0.85) 35%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.35) 65%,
            rgba(0, 0, 0, 0.10) 80%,
            rgba(0, 0, 0, 0) 100%
    );

    z-index: 1;
}

/* контейнер поверх слоя */
.hero .container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    align-items: center;
}

/* =======================
   TEXT
======================= */
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
    color: #fff;
    padding-bottom: 10px;
}

.hero h2 {
    color: #c9a46a;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    text-shadow: 0 2px 10px rgba(201, 164, 106, 0.25);

    padding-bottom: 30px;
}

.hero h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero li {
    font-size: 15px;
    font-weight: 400;
}

.hero .address {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

/* =======================
   BUTTON
======================= */
.hero .btn {
    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;
    border: none;

    padding: 16px 26px;
    font-weight: 700;
    letter-spacing: 1px;

    border-radius: 10px;
    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow:
            0 10px 25px rgba(201, 164, 106, 0.25),
            inset 0 0 0 1px rgba(255,255,255,0.15);
}

.hero .btn:hover {
    transform: translateY(-3px) scale(1.02);

    box-shadow:
            0 18px 40px rgba(201, 164, 106, 0.35),
            inset 0 0 0 1px rgba(255,255,255,0.2);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .hero h3 {
        font-size: 14px;
    }
}

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

.hero-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;

    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

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

.hero-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;

    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

/* круг с галочкой */
.hero-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;

    color: #111;

    background: #c9a46a;
    border-radius: 50%;

    box-shadow: 0 6px 14px rgba(201, 164, 106, 0.25);
}

/* =======================
   FEATURES
======================= */
.features {
    padding: 30px 0;
}

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

.feature {
    background: #fff;
    padding: 12px;
    font-size: 13px;
    border-radius: 6px;
}

/* =======================
   CARDS
======================= */
.cards {
    padding: 40px 0;
}

.cards h2 {
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.card a {
    text-decoration: none;
    color: black;
}

.card .img {
    height: 180px;
    background: #ddd;
}

.card .info {
    padding: 15px;
}

.card button {
    margin-top: 10px;
    padding: 8px 12px;
    background: #c9a46a;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* =======================
   BUSINESS
======================= */
.business {
    padding: 40px 0;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.grid-6 div {
    background: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 6px;
    font-size: 13px;
}

/* =======================
   CTA
======================= */
.cta {
    padding: 40px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.form button {
    width: 100%;
    padding: 12px;
    background: #c9a46a;
    border: none;
    color: #fff;
    cursor: pointer;
}

.map-box {
    height: 320px;
    background: #ddd;
    border-radius: 28px;
}

/* =======================
   FOOTER
======================= */
.footer {
    background: #ffffff; /* как в заявке */
    padding: 80px 0 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

/* сетка */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    text-align: left;
}

/* бренд */
.footer-logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1f2a44;
}

.footer-logo span {
    color: #c9a46a;
}

.footer p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* контакты */
.footer-contacts div {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

/* ссылки */
.footer-links h4,
.footer-right h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #1f2a44;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #c9a46a;
}

/* правая часть */
.footer-right p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* кнопка как в CTA */
.footer-btn {
    margin-top: 15px;
    width: 100%;
    padding: 14px;

    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;

    border: none;
    border-radius: 10px;

    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(201,164,106,0.25);
}

/* нижняя полоса */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 18px 0;
    font-size: 13px;
    color: #888;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =========================================================
   📱 TABLET
========================================================= */
@media (max-width: 992px) {

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

    .hero-image {
        height: 300px;
    }

    .grid-7 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .nav {
        display: none; /* можно заменить на бургер */
    }
}

/* =========================================================
   📱 MOBILE
========================================================= */
@media (max-width: 576px) {

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text h3 {
        font-size: 14px;
    }

    .btn.big {
        width: 100%;
        max-width: 100%;
    }

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

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

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

    .phone {
        font-size: 12px;
    }
}

p, li {
    line-height: 1.6;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f7f7f7;
    color: #1c1c1c;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =======================
   CONTAINER (adaptive)
======================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =======================
   HEADER
======================= */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    font-weight: 700;
    font-size: 25px;
}

.logo span {
    color: #c9a46a;
}

.nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

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

.header-right a {
    text-decoration: none;
    color: #c9a46a;
}

.phone {
    font-size: 14px;
    white-space: nowrap;
}

/* =======================
   BUTTONS
======================= */
.btn {
    background: #1f2a44;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.btn.big {
    padding: 14px 18px;
    margin-top: 15px;
    width: 100%;
    max-width: 260px;
}

/* =======================
   HERO (premium version)
======================= */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;

    background: url("images/hero.png") center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.95) 12%,
            rgba(0, 0, 0, 0.92) 22%,
            rgba(0, 0, 0, 0.85) 35%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.35) 65%,
            rgba(0, 0, 0, 0.10) 80%,
            rgba(0, 0, 0, 0) 100%
    );

    z-index: 1;
}

/* контейнер поверх слоя */
.hero .container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    align-items: center;
}

/* =======================
   TEXT
======================= */
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
}

.hero h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero li {
    font-size: 15px;
    font-weight: 400;
}

.hero .address {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

/* =======================
   BUTTON
======================= */
.hero .btn {
    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;
    border: none;

    padding: 16px 26px;
    font-weight: 700;
    letter-spacing: 1px;

    border-radius: 10px;
    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow:
            0 10px 25px rgba(201, 164, 106, 0.25),
            inset 0 0 0 1px rgba(255,255,255,0.15);
}

.hero .btn:hover {
    transform: translateY(-3px) scale(1.02);

    box-shadow:
            0 18px 40px rgba(201, 164, 106, 0.35),
            inset 0 0 0 1px rgba(255,255,255,0.2);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .hero h3 {
        font-size: 14px;
    }
}

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

.hero-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;

    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

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

.hero-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;

    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

/* круг с галочкой */
.hero-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;

    color: #111;

    background: #c9a46a;
    border-radius: 50%;

    box-shadow: 0 6px 14px rgba(201, 164, 106, 0.25);
}

/* =======================
   FEATURES
======================= */
.features {
    padding: 30px 0;
}

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

.feature {
    background: #fff;
    padding: 12px;
    font-size: 13px;
    border-radius: 6px;
}

/* =======================
   CARDS
======================= */
.cards {
    padding: 40px 0;
}

.cards h2 {
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.card .img {
    height: 180px;
    background: #ddd;
}

.card .info {
    padding: 15px;
}

.card button {
    margin-top: 10px;
    padding: 8px 12px;
    background: #c9a46a;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* =======================
   BUSINESS
======================= */
.business {
    padding: 40px 0;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.grid-6 div {
    background: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 6px;
    font-size: 13px;
}

/* =======================
   CTA
======================= */
.cta {
    padding: 40px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.form button {
    width: 100%;
    padding: 12px;
    background: #c9a46a;
    border: none;
    color: #fff;
    cursor: pointer;
}

.map-box {
    height: 260px;
    background: #ddd;
    border-radius: 28px;
}

/* =======================
   FOOTER
======================= */
.footer {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* =========================================================
   📱 TABLET
========================================================= */
@media (max-width: 992px) {

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

    .hero-image {
        height: 300px;
    }

    .grid-7 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .nav {
        display: none; /* можно заменить на бургер */
    }
}

/* =========================================================
   📱 MOBILE
========================================================= */
@media (max-width: 576px) {

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    text a {
        text-decoration: none;
    }
    .hero-text h3 {
        font-size: 14px;
    }

    .btn.big {
        width: 100%;
        max-width: 100%;
    }

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

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

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

    .phone {
        font-size: 12px;
    }
}

p, li {
    line-height: 1.6;
}

.feature {
    background: #fff;
    padding: 16px;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    transition: 0.2s;
}

.feature i {
    font-size: 34px;
    color: #c9a46a;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201, 164, 106, 0.08);
    border-radius: 12px;
}

.feature span {
    text-align: center;
    color: #333;
    font-weight: 500;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.business {
    padding: 60px 0;
}

.business-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 30px;
    align-items: start;
}

/* LEFT */
.business-left h2,
.business-right h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

/* GRID ICONS */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.grid-6 div {
    background: #fff;
    padding: 16px;
    text-align: center;
    border-radius: 8px;

    font-size: 13px;
    transition: 0.2s;
}

.grid-6 div:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* RIGHT FLOOR CARD */
.business-right {
    display: flex;
    flex-direction: column;
}

.floor-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 12px;
}

.floor-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.floor-card .btn {
    background: #1f2a44;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .business-grid {
        grid-template-columns: 1fr;
    }

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

.biz-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    text-align: center;
    transition: 0.25s ease;
}

.biz-item i {
    font-size: 22px; /* 🔥 БОЛЬШИЕ ИКОНКИ */
    color: #c9a46a;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201, 164, 106, 0.08);
    border-radius: 14px;
}

.biz-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.biz-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.history {
    padding: 80px 0;
    background: #f6f2ee;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.history-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #a98b5e;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.history-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.history-left p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* BUTTON */
.history .btn {
    background: #1f2a44;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.history .btn:hover {
    transform: translateY(-2px);
    background: #2b3a5c;
}

/* RIGHT GRID */
.history-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* PHOTO CARD */
.history-photo {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.history-photo:hover {
    transform: translateY(-5px);
}

.history-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CAPTION */
.photo-caption {
    padding: 12px;
}

.photo-caption .year {
    font-size: 12px;
    color: #a98b5e;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.photo-caption .title {
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

/* MOBILE */
@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-right {
        grid-template-columns: 1fr;
    }
}

.cta {
    padding: 80px 0;
    background: #fff; /* 💥 чисто белый фон */
}

/* GRID */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* FORM */
.form {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;

    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form h3,
.map h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2a44;
}

/* INPUTS */
.form input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    background: #fff;
    font-size: 14px;

    outline: none;
    transition: 0.2s;
}

.form input:focus {
    border-color: #c9a46a;
    box-shadow: 0 0 0 3px rgba(201,164,106,0.15);
}

/* BUTTON */
.form button {
    width: 100%;
    padding: 14px;

    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;

    border: none;
    border-radius: 10px;

    font-weight: 700;
    cursor: pointer;

    transition: 0.25s;
}

.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(201,164,106,0.25);
}

/* MAP */
.map {
    background: #fff;
    padding: 20px;

    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.map-box {
    height: 320px;
    border-radius: 28px;

    background: #f2f2f2; /* если пока нет карты */
    border: 1px solid #e5e5e5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.card-img {
    height: 280px;
    background: linear-gradient(135deg, #e9e9e9, #dcdcdc);
    position: relative;
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;

    background: #c9a46a;
    color: #111;

    font-size: 12px;
    font-weight: 700;

    padding: 6px 10px;
    border-radius: 20px;
}

/* BODY */
.card-body {
    padding: 18px;
}

.card-body h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* META */
.card-meta {
    display: flex;
    justify-content: space-between;

    font-size: 13px;
    color: #666;

    margin-bottom: 12px;
}

.card-meta i {
    color: #c9a46a;
    margin-right: 5px;
}

/* PRICE */
.card-price {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.card-price small {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

/* BUTTON */
.card-btn {
    width: 100%;
    padding: 12px;

    background: linear-gradient(135deg, #1f2a44, #2d3b5f);
    color: #fff;

    border: none;
    border-radius: 10px;

    cursor: pointer;
    font-weight: 600;

    transition: 0.2s;
}

.card-btn:hover {
    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    text-align: left; /* важно */
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between; /* не центр */
    align-items: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #c9a46a;
}

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

.footer-contacts div {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-links h4,
.footer-right h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #c9a46a;
}

.footer-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.footer-btn:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 15px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

/* responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.cards {
    padding: 80px 0;
    background: #ffffff; /* 👈 ВОТ ЭТО ФОН */
}

.footer-links h4 {
    color: white;
}

.footer-right h4 {
    color: white;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 0;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #c9a46a;
}

/* NAV */
.nav {
    display: flex;
    gap: 26px;
}

.nav a {
    position: relative;

    text-decoration: none;
    font-size: 14px;
    color: #222;

    padding: 6px 0;
    transition: 0.25s;
}

/* hover underline animation */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;

    background: #c9a46a;
    transition: 0.25s;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #c9a46a;
}

/* active link */
.nav a.active {
    color: #c9a46a;
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
}

/* RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone {
    font-size: 14px;
    color: #444;
    white-space: nowrap;
}

/* BUTTON */
.header-btn {
    background: linear-gradient(135deg, #c9a46a, #e2c38a);
    color: #111;

    border: none;
    padding: 10px 16px;

    border-radius: 10px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.25s;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201,164,106,0.25);
}

/* MOBILE */
@media (max-width: 992px) {
    .nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* =======================
   PRODUCT PAGE
======================= */

.product-hero {
    padding: 80px 0;
    background: #fff;
}

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

/* GALLERY */
.product-gallery .main-img {
    height: 360px;
    background: linear-gradient(135deg, #ddd, #cfcfcf);
    border-radius: 14px;
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.thumbs div {
    height: 80px;
    background: #e5e5e5;
    border-radius: 10px;
}

/* INFO */
.product-info h1 {
    font-size: 34px;
    margin: 10px 0;
}

.meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.price small {
    font-size: 14px;
    color: #777;
}

.product-info p {
    color: #555;
    margin-bottom: 20px;
}

/* BADGE */
.product-info .badge {
    display: inline-block;
    background: #c9a46a;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* FEATURES MINI */
.features-mini {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-mini div {
    font-size: 14px;
    color: #333;
}

.features-mini i {
    color: #c9a46a;
    margin-right: 6px;
}

/* DETAILS */
.product-details {
    padding: 60px 0;
    background: #f7f7f7;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.details-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.details-box h3 {
    margin-bottom: 10px;
}

.details-box ul {
    list-style: none;
}

.details-box ul li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

/* TAGS */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: #f1f1f1;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

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