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

body {
  font-family: "Inter", Arial, sans-serif;
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
}

/* === HEADER === */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 16px 60px;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111827;
}

header .logo::before {
  content: "B";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  margin-right: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul li a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #2563eb;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
  z-index: 0;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 960px;
  padding: 0 20px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  color: #e5e7eb;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-content a {
  display: inline-block;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-content a:hover {
  background-color: #1e40af;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 14px 30px;
  }

  nav ul {
    gap: 18px;
  }

  .hero {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* ===== WHY SECTION ===== */
#why {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Inter", Arial, sans-serif;
}

#why .container {
  max-width: 1200px;
  margin: 0 auto;
}

#why h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

#why > p {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

/* подзаголовок "Professional Benefits:" */
#why .benefits-heading {
  text-align: center;
  font-weight: 700;
  color: #111827;
  margin: 12px 0 18px;
}

/* сетка карточек */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* карточка преимущества */
.benefit-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid #eef2f7;
  transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

/* бейдж иконки */
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9f1ff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.benefit-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* адаптив */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== WHY / BENEFITS BLOCK ===== */
:root{
  --container: 1120px;
  --text: #0f172a;           /* nearly-black */
  --muted: #475569;          /* slate-600 */
  --border: #e6eaf1;
  --card-bg: #ffffff;
  --shadow: 0 10px 24px rgba(16, 24, 40, .08);
  --icon-bg: #eaf2ff;
  --icon-ring: #d8e6ff;
  --brand: #2563eb;          /* blue-600 */
}

.why-ice{
  padding: 72px 16px;
  background: #fff;
}

.why-ice__container{
  max-width: var(--container);
  margin: 0 auto;
}

.why-ice__title{
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}

.why-ice__subtitle{
  margin: 0 auto 28px;
  max-width: 860px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

.why-ice__lead{
  margin: 14px 0 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

/* grid */
.benefits{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* card */
.benefit-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 22px 22px 20px;
}

.benefit-card__icon{
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  border: 1px solid var(--icon-ring);
  box-shadow: 0 2px 6px rgba(37, 99, 235, .12) inset;
  color: var(--brand);
  margin-bottom: 12px;
}

.benefit-card__icon .i{
  width: 22px;
  height: 22px;
  display: block;
}

.benefit-card__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.benefit-card__text{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* responsive */
@media (max-width: 1024px){
  .benefits{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px){
  .why-ice{ padding: 56px 14px; }
  .why-ice__title{ font-size: 28px; }
  .why-ice__subtitle{ font-size: 14.5px; }
  .benefits{ grid-template-columns: 1fr; }
}

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

:root {
  --max-width: 1100px;
  --text-color: #0f172a;
  --muted: #475569;
  --blue: #2563eb;
  --blue-bg: #eef4ff;
  --gray-bg: #f8fafc;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --font: 'Poppins', sans-serif;
}

body {
  font-family: var(--font);
  background: #fff;
  margin: 0;
  color: var(--text-color);
}

/* SECTION */
.ice-services {
  padding: 60px 16px;
  background: #fff;
  text-align: center;
}

.ice-services__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ice-services__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* GRID */
.ice-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* CARD */
.srv-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--gray-bg);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.srv-card--blue {
  background: var(--blue-bg);
}

/* ICON */
.srv-card__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  margin-bottom: 16px;
}

.srv-card__icon--dark {
  background: #0f172a;
  color: #fff;
}

.srv-card__icon .i {
  width: 26px;
  height: 26px;
}

/* TEXT */
.srv-card__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}

.srv-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ice-services__grid {
    grid-template-columns: 1fr;
  }
  .ice-services__title {
    font-size: 28px;
  }
  .srv-card__title {
    font-size: 18px;
  }
}

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

:root{
  --font: 'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
  --title:#0f172a;          /* slate-900 */
  --text:#334155;           /* slate-700 */
  --ring:#e2e8f0;           /* slate-200 */
  --shadow:0 10px 28px rgba(2,6,23,.08);

  /* pastel backgrounds */
  --rose:#ffe9ea;
  --sand:#fff0df;
  --yellow:#fff5d6;
  --blue:#e9f2ff;
  --cyan:#e7fbff;
  --indigo:#ecefff;
  --violet:#f3e9ff;
  --pink:#ffe8f0;
  --green:#e8f7e9;
  --stone:#f4f5f7;

  /* brand accents for numbers */
  --c-rose:#ef4444;
  --c-sand:#f59e0b;
  --c-yellow:#eab308;
  --c-blue:#2563eb;
  --c-cyan:#0891b2;
  --c-indigo:#4f46e5;
  --c-violet:#7c3aed;
  --c-pink:#ec4899;
  --c-green:#16a34a;
  --c-stone:#475569;
}

.problems{
  padding: 64px 16px;
  background: linear-gradient(180deg,#f8fafc, #ffffff 40%);
  font-family: var(--font);
}

.problems__container{ max-width: 1100px; margin: 0 auto; }

.problems__title{
  text-align:center;
  color:var(--title);
  font-size: 34px;
  font-weight: 700;
  letter-spacing:.2px;
  margin: 0 0 32px;
}

.problems__grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:18px 22px;
}

/* Card */
.p-card{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:flex-start;
  column-gap:14px;
  row-gap:6px;
  padding:16px 18px;
  border-radius:14px;
  box-shadow: var(--shadow);
  border:1px solid var(--ring);
  background:#fff;
}

.p-card__num{
  grid-row: 1 / span 2;
  align-self:flex-start;
  font-weight:700;
  font-size:20px;
  letter-spacing:.8px;
}

.p-card__icon{
  width:34px;height:34px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--ring);
}

.p-card__icon svg{ width:20px;height:20px; color:currentColor; }

.p-card__title{
  margin:0;
  font-size:16px;
  font-weight:600;
  color:var(--title);
}

.p-card__text{
  margin:0;
  grid-column: 2 / -1;
  font-size:14px;
  line-height:1.6;
  color:var(--text);
}

/* Pastel backgrounds + number colors */
.p-rose{ background:var(--rose); }.p-rose .p-card__num{ color:var(--c-rose); }
.p-sand{ background:var(--sand); }.p-sand .p-card__num{ color:var(--c-sand); }
.p-yellow{ background:var(--yellow); }.p-yellow .p-card__num{ color:var(--c-yellow); }
.p-blue{ background:var(--blue); }.p-blue .p-card__num{ color:var(--c-blue); }
.p-cyan{ background:var(--cyan); }.p-cyan .p-card__num{ color:var(--c-cyan); }
.p-indigo{ background:var(--indigo); }.p-indigo .p-card__num{ color:var(--c-indigo); }
.p-violet{ background:var(--violet); }.p-violet .p-card__num{ color:var(--c-violet); }
.p-pink{ background:var(--pink); }.p-pink .p-card__num{ color:var(--c-pink); }
.p-green{ background:var(--green); }.p-green .p-card__num{ color:var(--c-green); }
.p-stone{ background:var(--stone); }.p-stone .p-card__num{ color:var(--c-stone); }

/* Responsive */
@media (max-width: 900px){
  .problems__title{ font-size:28px; }
  .problems__grid{ grid-template-columns:1fr; }
  .p-card{ padding:14px 16px; }
}

/* ---------- Process section ---------- */
:root{
  --ink:#0f172a;            /* заголовки (почти чёрный) */
  --text:#334155;           /* основной текст */
  --muted:#94a3b8;          /* вторичный */
  --blue:#2563eb;           /* акцент/бейдж */
  --card:#ffffff;
  --shadow: 0 12px 30px rgba(2,6,23,.08);
  --radius: 20px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.process{
  padding: clamp(40px, 6vw, 80px) 0;
  font-family: var(--font);
  color: var(--text);
}

.process .container{
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-title{
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  text-align: center;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: clamp(20px, 4vw, 36px);
}

.process-row{
  display: grid;
  grid-template-columns: 1.1fr 1fr;         /* фото чуть крупнее */
  gap: clamp(18px, 3.2vw, 36px);
  align-items: center;
  margin-bottom: clamp(26px, 5vw, 56px);
}

.process-row.reverse{
  grid-template-columns: 1fr 1.1fr;
}
.process-row.reverse .process-media{ order: 2; }
.process-row.reverse .process-text { order: 1; }

.process-media img{
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: clamp(220px, 30vw, 330px);
}

.process-text{
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(16px, 2.8vw, 24px) clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.step-badge{
  --size: clamp(38px, 5.4vw, 56px);
  display: inline-grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 22px);
  box-shadow: 0 8px 18px rgba(37,99,235,.25);
  margin-bottom: 10px;
}

.process-h{
  margin: 6px 0 10px;
  font-size: clamp(20px, 2.6vw, 28px);  /* компактнее */
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}

.process p{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);  /* легче читается */
  line-height: 1.6;
  color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .process-row,
  .process-row.reverse{
    grid-template-columns: 1fr;
  }
  .process-row.reverse .process-media{ order: 1; }
  .process-row.reverse .process-text { order: 2; }
  .process-media img{
    height: clamp(200px, 48vw, 280px);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root{
  --font:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  --ink:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --shadow:0 10px 28px rgba(0,0,0,.06);
  --blue:#2563eb;
  --light-blue:#e7efff;
}

.testimonials{
  background:#fff;
  padding:clamp(48px,6vw,90px) 0;
  font-family:var(--font);
}

.container{
  max-width:1150px;
  margin:0 auto;
  padding:0 20px;
}

.testimonials-title{
  text-align:center;
  font-size:clamp(26px,3.5vw,38px);
  font-weight:800;
  color:var(--ink);
  margin-bottom:clamp(30px,4vw,50px);
  position:relative;
}

.testimonials-title::after{
  content:"";
  position:absolute;
  bottom:-10px;
  left:50%;
  transform:translateX(-50%);
  width:90px;
  height:3px;
  border-radius:3px;
  background:var(--blue);
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:24px;
  margin-bottom:clamp(40px,6vw,60px);
}

.t-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:24px 26px 22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .25s ease, box-shadow .25s ease;
}

.t-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 32px rgba(0,0,0,.08);
}

.stars{
  color:#facc15;
  font-size:18px;
  letter-spacing:2px;
}

.quote-mark{
  font-size:36px;
  line-height:0;
  color:#cbd5e1;
  display:block;
  margin:10px 0 4px;
}

.t-card p{
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
  margin:0 0 16px;
}

.t-card hr{
  border:none;
  border-bottom:1px solid var(--border);
  margin:10px 0 14px;
}

.t-card h4{
  margin:0;
  font-size:16px;
  font-weight:600;
  color:var(--ink);
}

.t-card .role{
  font-size:14px;
  color:var(--blue);
}

/* Badge */
.testimonials-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:var(--light-blue);
  padding:12px 22px;
  border-radius:40px;
  width:max-content;
  margin:0 auto;
  box-shadow:var(--shadow);
}

.avatars{
  display:flex;
}

.avatars span{
  width:30px;
  height:30px;
  border-radius:50%;
  margin-left:-10px;
  border:2px solid #fff;
}

.a1{background:#4ade80;}
.a2{background:#60a5fa;}
.a3{background:#f472b6;}

.badge-text strong{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--ink);
  line-height:1.3;
}

.badge-text span{
  display:block;
  font-size:13px;
  color:var(--muted);
}

/* Responsive */
@media (max-width:700px){
  .testimonials-badge{
    flex-direction:column;
    gap:8px;
    text-align:center;
    border-radius:20px;
  }
}

/* ============ FAQ / Accordion ============ */
:root{
  --faq-max: 1040px;
  --faq-radius: 14px;
  --faq-border: #e9eef5;
  --faq-bg: #f7f9fb;
  --faq-text: #0f1728;
  --faq-muted: #5b6476;
  --faq-ring: #cfe3ff;
}

.faq{
  padding: 64px 20px 84px;
  background:
    radial-gradient(1200px 300px at 50% -120px, #eef6ff, transparent 60%),
    linear-gradient(#fff, #fff);
}

.faq__wrap{
  margin: 0 auto;
  max-width: var(--faq-max);
}

.faq__title{
  text-align:center;
  color: var(--faq-text);
  font-size: clamp(28px, 3.7vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.faq__subtitle{
  text-align:center;
  color: var(--faq-muted);
  margin: 0 0 28px;
  font-size: 16px;
}

.faq__list{
  display: grid;
  gap: 14px;
}

.faq__item{
  background: #fff;
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  box-shadow: 0 8px 24px rgba(16,24,40,.04);
  overflow: hidden;
}

/* Header button */
.faq__btn{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 22px 22px;
  background: #f9fbfe;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--faq-text);
  border-bottom: 1px solid var(--faq-border);
}

.faq__btn span{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.faq__btn:hover{
  background: #f3f7ff;
}

.faq__btn:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 4px var(--faq-ring);
  border-radius: var(--faq-radius);
}

/* Chevron */
.faq__chev{
  width: 24px; height: 24px;
  color: #4b5565;
  transition: transform .25s ease;
}
.faq__btn[aria-expanded="true"] .faq__chev{
  transform: rotate(180deg);
}

/* Panel */
.faq__panel{
  padding: 16px 22px 22px;
  color: var(--faq-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Smooth height animation (JS toggles inline height) */
.faq__panel.animating{
  overflow: hidden;
  transition: height .28s ease;
}

/* Compact on mobile */
@media (max-width: 520px){
  .faq__btn{ padding: 18px 16px }
  .faq__panel{ padding: 12px 16px 16px }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0f172a;
  color: #f1f5f9;
  padding: 60px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-col p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.footer-col ul li {
  color: #cbd5e1;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-col ul li strong {
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 16px;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* адаптив */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.footer-col ul li a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.05rem;
  color: #5c6b80;
  margin-bottom: 10px;
}

.description {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.form-status {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #16a34a;
  text-align: center;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b132b;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-info li {
  margin-bottom: 15px;
  color: #374151;
  line-height: 1.4;
}

.emergency-box {
  background: #f9fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
}

.emergency-box h4 {
  font-size: 1.1rem;
  color: #0b132b;
  margin-bottom: 10px;
}

.emergency-box p {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.emergency-box ul {
  list-style: none;
  padding: 0;
  color: #16a34a;
  font-weight: 500;
}

/* ==== FIX PACK: ACCORDION + CLEANUP ==== */

/* 1) Скрой панели корректно и дай плавную анимацию высоты */
.faq__panel[hidden] { display: none !important; }
.faq__panel { overflow: hidden; }
.faq__panel.animating { transition: height .28s ease; }

/* 2) Чуть компактнее заголовки FAQ на мобиле */
@media (max-width: 520px){
  .faq__btn span{ font-size: 16px; }
  .faq__panel{ font-size: 15px; }
}

/* 3) Унифицируем сетку benefits (3→2→1 колонки) без дублей */
.benefits{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
@media (max-width: 1024px){
  .benefits{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .benefits{ grid-template-columns: 1fr; }
}

/* 4) Сетка services: 2→1 колонки */
.ice-services__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px){
  .ice-services__grid{ grid-template-columns: 1fr; }
}

/* 5) Сетка problems: 2→1 колонки */
.problems__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}
@media (max-width: 900px){
  .problems__grid{ grid-template-columns: 1fr; }
}

/* 6) На всякий — чуть уменьшим крупные заголовки разделов (визуально ближе к макету) */
.why-ice__title,
.ice-services__title,
.problems__title,
.process-title,
.testimonials-title,
.faq__title{
  letter-spacing: -.01em;
}

/* ==== фиксированная шапка ==== */
.site-header,
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* чтобы контент не уезжал под шапку */
body {
  padding-top: 80px; /* если твоя шапка выше/ниже — подбери значение вручную */
}
.phone-btn {
  background-color: #2563eb;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.phone-btn:hover {
  background-color: #1e40af;
}

/* Чтобы кнопка стояла справа от меню */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 16px 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #f1f5f9;
}

/* Чтобы контент не прятался под шапкой */
body {
  padding-top: 80px;
}

