/* ============ ХОЛОДОК — Лендинг (Геленджик) ============ */
:root {
  --background: #f7fbfc;
  --foreground: #1a2233;
  --muted: #f1f5f7;
  --muted-foreground: #5c6878;
  --border: #dde6ec;
  --card: #ffffff;
  --primary: #00b4d8;
  --primary-foreground: #ffffff;
  --secondary: #e6f4f8;
  --accent: #fb8500;
  --accent-foreground: #ffffff;
  --sun: #ffb703;
  --sun-foreground: #3a2a05;
  --sand: #fff5db;
  --sky: #d9eef6;
  --deep: #023e6a;
  --destructive: #e63946;

  --radius: 0.875rem;
  --shadow-card: 0 10px 30px -10px rgba(0, 180, 216, 0.35);
  --shadow-glow: 0 20px 60px -20px rgba(251, 133, 0, 0.55);

  --gradient-sun: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  --gradient-sea: linear-gradient(180deg, #e6f4f8 0%, #76c5dc 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 180, 216, 0.78) 0%, rgba(2, 62, 106, 0.78) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  padding-bottom: env(safe-area-inset-bottom);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
img, iframe { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.1rem; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn-sun { background: var(--gradient-sun); color: var(--sun-foreground); box-shadow: var(--shadow-glow); }
.btn-sun:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--accent-foreground); box-shadow: var(--shadow-glow); }
.btn-accent:hover { transform: translateY(-2px); background: #e57700; }
.btn-outline-sea { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-sea:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-sm { padding: .45rem .85rem; font-size: .875rem; }
.btn-lg { padding: .85rem 1.4rem; font-size: 1rem; }
.btn-xl { padding: 1rem 1.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(10px);
  background: rgba(247, 251, 252, .85); border-bottom: 1px solid var(--border);
}
.site-header .row {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1rem; align-items: center;
  padding: .75rem 1rem;
}
.brand { display: flex; min-width: 0; align-items: center; gap: .55rem; }
.brand-mark {
  display: grid; place-items: center; height: 2.5rem; width: 2.5rem; flex-shrink: 0;
  border-radius: .85rem; background: var(--gradient-sun); color: #fff;
  box-shadow: var(--shadow-glow);
}
.brand-name { font-weight: 800; font-size: 1.1rem; line-height: 1; }
.brand-tag { font-size: 11px; color: var(--muted-foreground); display: none; }
.nav-main { display: none; gap: 1.5rem; font-weight: 600; font-size: .9rem; }
.nav-main a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.phone-link { display: none; align-items: center; gap: .4rem; font-weight: 700; color: var(--accent); }
.phone-link:hover { color: var(--sun); }
.phone-pill { display: inline-flex; align-items: center; gap: .35rem; padding: .55rem .8rem; border-radius: 999px;
  background: var(--gradient-sun); color: var(--sun-foreground); font-weight: 800; font-size: .85rem; box-shadow: var(--shadow-glow); }
.header-cta { display: none; }

@media (min-width: 640px) {
  .brand-tag { display: block; }
  .phone-link { display: inline-flex; }
  .phone-pill { display: none; }
  .header-cta { display: inline-flex; }
}
@media (min-width: 1024px) {
  .site-header .row { display: flex; justify-content: space-between; }
  .nav-main { display: flex; }
}

/* ---------- sections / hero ---------- */
section { position: relative; }
.section { padding: 5rem 0; }

.hero { position: relative; overflow: hidden; color: #fff; }
.hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero .inner { position: relative; padding: 5rem 0; }
.hero h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 900; max-width: 50rem; }
.hero p.lead { margin-top: 1.5rem; font-size: clamp(1rem, 1.6vw, 1.25rem); max-width: 36rem; color: rgba(255,255,255,.9); }
.hero .badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem;
  border-radius: 999px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); font-size: .85rem; font-weight: 600;
}
.hero .badge i { color: var(--sun); }
.hero-features { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; max-width: 28rem; }
.hero-feature { display: flex; align-items: center; gap: .5rem; padding: .55rem .75rem;
  border-radius: .75rem; background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); font-size: .85rem; font-weight: 600; }
.hero-feature i { color: var(--sun); }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-rating { margin-top: 2rem; display: flex; align-items: center; gap: .75rem; }
.stars { color: var(--sun); display: inline-flex; gap: 2px; }
.animate-up { animation: floatUp .7s ease-out both; }
@keyframes floatUp { from { opacity: 0; transform: translateY(20px);} to {opacity:1; transform:translateY(0);} }

/* ---------- problems ---------- */
.problems { background: linear-gradient(180deg, var(--background) 0%, var(--sky) 100%); }
.section-title { text-align: center; font-size: clamp(1.85rem, 3.5vw, 3rem); font-weight: 900; }
.section-sub { text-align: center; max-width: 38rem; margin: 1rem auto 0; color: var(--muted-foreground); }
.compare-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card { border-radius: 1.5rem; padding: 1.75rem; background: #fff; box-shadow: var(--shadow-card); border: 2px solid rgba(230, 57, 70, .15); }
.compare-card.solutions { background: var(--gradient-sea); border-color: rgba(0,180,216,.25); color: var(--deep); }
.compare-card h3 { font-size: 1.25rem; display: flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem; }
.compare-card.problems-card h3 { color: var(--destructive); }
.compare-card ul li { display: flex; gap: .75rem; margin-bottom: .75rem; align-items: flex-start; }
.compare-card.problems-card ul li i { color: var(--destructive); margin-top: .2rem; }
.compare-card.solutions ul li i { color: var(--deep); margin-top: .2rem; }
.compare-card.solutions ul li { font-weight: 500; }

.before-after { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .before-after { grid-template-columns: 1fr 1fr; } }
.ba-card { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-card); }
.ba-card img { width: 100%; height: 18rem; object-fit: cover; transition: transform .4s ease; }
.ba-card:hover img { transform: scale(1.05); }
.ba-tag { position: absolute; top: 1rem; left: 1rem; padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 700; color: #fff; background: var(--destructive); }
.ba-tag.after { background: var(--gradient-sun); color: var(--sun-foreground); }

/* ---------- services ---------- */
.services { overflow: hidden; }
.services .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.services .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.7), rgba(255,255,255,.85)); }
.services .container { position: relative; }
.services h2 { color: var(--deep); }
.services h2 .accent { color: var(--primary); }
.services .section-sub { color: rgba(26, 34, 51, .8); font-weight: 500; }
.cards-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card { background: rgba(255,255,255,.95); border-radius: 1.5rem; padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.svc-icon { display: grid; place-items: center; height: 3.5rem; width: 3.5rem; border-radius: 1rem; background: var(--gradient-sun); color: var(--sun-foreground); box-shadow: var(--shadow-glow); font-size: 1.4rem; }
.svc-card h3 { margin-top: 1.25rem; font-size: 1.2rem; }
.svc-card p { margin-top: .5rem; font-size: .9rem; color: var(--muted-foreground); }
.svc-foot { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.svc-price { font-size: 1.4rem; font-weight: 900; color: var(--accent); }

/* ---------- benefits ---------- */
.benefits { background: var(--gradient-sea); padding: 5rem 0; }
.benefits h2 { color: var(--deep); }
.benefit-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefit-grid { grid-template-columns: repeat(5, 1fr); } }
.benefit-card { background: rgba(255,255,255,.8); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.6);
  border-radius: 1rem; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-card); }
.benefit-card .icon { display: grid; place-items: center; height: 3.5rem; width: 3.5rem; margin: 0 auto;
  border-radius: 1rem; background: var(--gradient-sun); color: var(--sun-foreground); font-size: 1.3rem; }
.benefit-card h3 { margin-top: 1rem; font-size: 1rem; }
.benefit-card p { margin-top: .25rem; font-size: .85rem; color: var(--muted-foreground); }

/* ---------- steps ---------- */
.steps-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; padding: 1.6rem; background: #fff; border: 1px solid var(--border); border-radius: 1rem; box-shadow: var(--shadow-card); }
.step-num { position: absolute; top: -1rem; left: -.5rem; display: grid; place-items: center; height: 3rem; width: 3rem;
  border-radius: 1rem; background: var(--gradient-sun); color: var(--sun-foreground); font-size: 1.4rem; font-weight: 900; box-shadow: var(--shadow-glow); }
.step-card p { margin-top: 1.25rem; font-weight: 600; }

/* ---------- pricing ---------- */
.pricing { background: var(--sand); }
.pricing-cta { text-align: center; margin-top: 1rem; }
.pricing-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .85rem; }
.pricing-table-wrap { margin: 2.5rem auto 0; max-width: 48rem; border-radius: 1.5rem; overflow: hidden;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead { background: var(--gradient-sun); }
.pricing-table th { padding: 1rem 1.25rem; text-align: left; color: var(--sun-foreground); font-weight: 900; }
.pricing-table th:last-child { text-align: right; }
.pricing-table td { padding: 1rem 1.25rem; }
.pricing-table tr:nth-child(even) td { background: rgba(217, 238, 246, .4); }
.pricing-table td:first-child { font-weight: 500; }
.pricing-table td:last-child { text-align: right; font-weight: 700; color: var(--deep); }

/* ---------- reviews ---------- */
.reviews-wrap { margin: 3rem auto 0; max-width: 48rem; }
.review-card { position: relative; padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: 1.5rem; box-shadow: var(--shadow-card); }
.review-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.review-avatar { display: grid; place-items: center; height: 3.5rem; width: 3.5rem; border-radius: 999px; background: var(--gradient-sun); color: var(--sun-foreground); font-weight: 900; font-size: 1rem; }
.review-name { font-weight: 800; }
.review-date { font-size: .85rem; color: var(--muted-foreground); }
.review-stars { margin-left: auto; color: var(--sun); }
.review-text { margin-top: 1.5rem; font-size: 1.1rem; line-height: 1.6; color: rgba(26,34,51,.85); }
.review-nav { margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.review-nav button.arrow { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 999px; background: var(--secondary); transition: background .2s, color .2s; }
.review-nav button.arrow:hover { background: var(--primary); color: #fff; }
.dots { display: flex; gap: .5rem; }
.dots button { height: .6rem; border-radius: 999px; width: .6rem; background: var(--border); transition: width .25s, background .25s; }
.dots button.active { width: 2rem; background: var(--accent); }

/* ---------- why us ---------- */
.whyus { background: var(--sky); padding: 5rem 0; }
.whyus .row { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .whyus .row { grid-template-columns: 1fr 1fr; } }
.whyus img { width: 100%; height: auto; border-radius: 1.5rem; box-shadow: var(--shadow-glow); object-fit: cover; }
.whyus h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
.whyus h2 .accent { color: var(--accent); }
.whyus ul { margin-top: 2rem; }
.whyus li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1.05rem; margin-bottom: 1rem; }
.whyus .check { display: grid; place-items: center; height: 1.75rem; width: 1.75rem; flex-shrink: 0; border-radius: 999px; background: var(--gradient-sun); color: var(--sun-foreground); margin-top: 2px; font-size: .75rem; }
.whyus li span { font-weight: 600; }

/* ---------- contacts ---------- */
.contacts { color: #fff; overflow: hidden; padding: 5rem 0; position: relative; background: url('./assets/fon.jpg') center / cover no-repeat; }
.contacts::before { content: ''; position: absolute; inset: 0; background: var(--gradient-hero); }
.contacts .row { display: grid; grid-template-columns: 1fr; gap: 2.5rem; position: relative; }
@media (min-width: 1024px) { .contacts .row { grid-template-columns: 1fr 1fr; } }
.contacts h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
.contacts .sub { margin-top: 1rem; color: rgba(255,255,255,.8); max-width: 28rem; }
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: center; gap: .75rem; }
.contact-row .ic { display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: 1rem; }
.contact-row .ic.sun { background: var(--gradient-sun); color: var(--sun-foreground); box-shadow: var(--shadow-glow); }
.contact-row .ic.dim { background: rgba(255,255,255,.1); }
.contact-row .label { font-size: .75rem; color: rgba(255,255,255,.6); }
.contact-row .value { font-weight: 700; }
.contact-row .value.big { font-size: 1.25rem; font-weight: 900; }
.contact-row a.value:hover { color: var(--sun); }
.socials { display: flex; gap: .5rem; padding-top: .5rem; }
.socials a { display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: 1rem; background: var(--gradient-sun); color: var(--sun-foreground); transition: transform .2s; }
.socials a:hover { transform: scale(1.1); }
/* map removed */

.contact-form { background: #fff; color: var(--foreground); border-radius: 1.5rem; padding: 1.75rem; box-shadow: var(--shadow-glow); align-self: start; }
.contact-form h3 { font-size: 1.4rem; }
.contact-form .desc { margin-top: .25rem; font-size: .875rem; color: var(--muted-foreground); }
.form-fields { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.input {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--input, #e6ecef); background: var(--card);
  border-radius: .75rem; font: inherit; color: var(--foreground); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,180,216,.18); }

/* ---------- privacy consent ---------- */
.consent { display: flex; align-items: flex-start; gap: .75rem; margin-top: 1rem; }
.consent input[type="checkbox"] {
  width: 1.1rem; height: 1.1rem; margin-top: .2rem; accent-color: var(--primary); flex-shrink: 0; cursor: pointer;
}
.consent label { font-size: .8rem; color: var(--muted-foreground); line-height: 1.5; cursor: pointer; }
.consent a, .consent button.link { color: var(--primary); text-decoration: underline; }
.consent a:hover, .consent button.link:hover { color: var(--accent); }

/* ---------- footer ---------- */
.site-footer { padding: 2.5rem 0 8rem; background: var(--background); border-top: 1px solid var(--border); }
@media (min-width: 1024px) { .site-footer { padding-bottom: 2.5rem; } }
.site-footer .row { display: flex; flex-direction: column; gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .site-footer .row { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-phone { font-weight: 700; color: var(--accent); }
.footer-phone:hover { color: var(--sun); }
.footer-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-link { font-size: .85rem; color: var(--muted-foreground); }
.footer-link:hover { color: var(--foreground); }
.footer-cta { display: none; }
@media (min-width: 1024px) { .footer-cta { display: inline-flex; } }

/* ---------- mobile floating CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 30;
  display: flex; gap: .5rem;
}
@media (min-width: 1024px) { .mobile-cta { display: none; } }
.mobile-cta a, .mobile-cta button {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1rem; border-radius: 999px; font-weight: 800; box-shadow: var(--shadow-glow);
}
.mobile-cta .call { background: var(--gradient-sun); color: var(--sun-foreground); }
.mobile-cta .order { background: var(--accent); color: #fff; }

/* ---------- modals ---------- */
.modal {
  position: fixed; inset: 0; z-index: 60; display: none;
  align-items: center; justify-content: center; padding: 1rem;
}
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(2px); }
.modal-panel {
  position: relative; background: #fff; color: var(--foreground); border-radius: 1rem;
  width: 100%; max-width: 32rem; padding: 1.5rem; box-shadow: 0 25px 60px -10px rgba(0,0,0,.3);
  max-height: 85vh; overflow-y: auto;
}
.modal-panel.wide { max-width: 42rem; }
.modal-close { position: absolute; top: .75rem; right: .75rem; width: 2rem; height: 2rem; border-radius: 999px; display: grid; place-items: center; color: var(--muted-foreground); }
.modal-close:hover { background: var(--muted); color: var(--foreground); }
.modal-title { font-size: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.modal-title i { color: var(--primary); }
.modal-desc { margin-top: .25rem; font-size: .875rem; color: var(--muted-foreground); }
.modal-body { margin-top: 1rem; }
.modal-body h4 { margin-top: 1rem; font-size: 1rem; }
.modal-body p, .modal-body ul { margin-top: .5rem; font-size: .9rem; color: rgba(26,34,51,.9); }
.modal-body ul { padding-left: 1.25rem; list-style: disc; }
.modal-body ul li { margin-bottom: .25rem; }

/* ---------- toast ---------- */
.toast-host { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; flex-direction: column; gap: .5rem; pointer-events: none; }
.toast { min-width: 18rem; max-width: 24rem; padding: .75rem 1rem; border-radius: .75rem;
  background: #fff; box-shadow: 0 10px 30px -10px rgba(0,0,0,.25); font-size: .9rem;
  border-left: 4px solid var(--primary); animation: floatUp .3s ease-out; pointer-events: auto;
  display: flex; gap: .5rem; align-items: flex-start;
}
.toast.success { border-color: #10b981; }
.toast.error { border-color: var(--destructive); }
.toast i { margin-top: .1rem; }
.toast.success i { color: #10b981; }
.toast.error i { color: var(--destructive); }
