/* ====== HEADER (sticky) ====== */
:root{
  --hdr-bg:#ffffff;
  --hdr-border:#e9eef5;
  --ink:#0f172a;
  --blue:#2563eb;
}

.site-header{
  position: sticky;   /* всегда видна при прокрутке */
  top: 0;
  z-index: 1000;
  background: var(--hdr-bg);
  border-bottom: 1px solid var(--hdr-border);
}

.container.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto auto; /* бренд | меню | кнопка */
  align-items: center;
  gap: 18px;
}

/* Бренд слева */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-badge{
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue);
  color:#fff; font-weight:700;
}
.brand-name{
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

/* Меню по центру */
.main-nav{ justify-self: center; }
.nav{
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav a{
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.nav a:hover{ color: var(--blue); }
.nav a.active{ color: var(--blue); }

/* Кнопка телефона справа */
.phone-btn{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37,99,235,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.phone-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37,99,235,.24);
  background:#1f4fd1;
}
.phone-emoji{ line-height: 0; }

/* Адаптив */
@media (max-width: 920px){
  .container.header-inner{
    grid-template-columns: 1fr auto auto; /* оставляем ту же сетку */
    padding: 12px 16px;
  }
  .nav{ gap: 18px; }
}
@media (max-width: 640px){
  /* На очень узких — слегка уплотняем меню */
  .brand-name{ font-size: 14px; }
  .nav{ gap: 14px; }
  .phone-btn{ padding: 9px 14px; border-radius: 9px; }
}


/* --------- HERO SECTION --------- */
.hero {
  position: relative;
  background: url("../img/freezer-tech.jpg") center center/cover no-repeat;
  height: 70vh; /* было 100vh */
  min-height: 500px; /* чтобы не была слишком низкая на маленьких экранах */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero a.cta {
  background-color: #007bff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.hero a.cta:hover {
  background-color: #0056d2;
}

/* ---------- WHY SECTION ---------- */
.why-section {
  background: #f8fafc;
  padding: 80px 20px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

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

.why-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.why-section .subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.6;
}

.why-section .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.why-section .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.why-section .icon {
  font-size: 28px;
  background-color: #007bff;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.why-section h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-section p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-section .footer-text {
  font-size: 1rem;
  color: #334155;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- SERVICES SECTION (2 cards) ---------- */
.services-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
}

.services-section .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-image img {
  width: 100%;
  height: 220px;            /* визуально как на скрине */
  object-fit: cover;
  display: block;
}

.service-card .card-body {
  padding: 22px 22px 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.service-card p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.55;
  font-size: 0.98rem;
}

/* список-галочки в две колонки */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.features li {
  position: relative;
  padding-left: 22px;
  color: #0f172a;
  font-weight: 500;
  font-size: 0.97rem;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d4ed8;          /* синий чек */
  font-weight: 700;
}

/* адаптив */
@media (max-width: 900px) {
  .services-section .cards {
    grid-template-columns: 1fr;
  }
  .service-card .card-image img {
    height: 200px;
  }
}
/* ---------- PROBLEMS SECTION ---------- */
.problems-section {
  background: #eef6ff;           /* лёгкий голубой, как на скрине */
  padding: 72px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.problems-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.problems-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);  /* 5 в ряд на десктопе */
  gap: 18px;
}

.problem-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.10);
}

.problem-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9f1ff;
  color: #1d4ed8;                /* синий акцент */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.problem-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.problem-card p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Адаптив: 4/3/2 столбца */
@media (max-width: 1200px) {
  .problem-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------- PROCESS SECTION ---------- */
.process-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.process-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: #1d4ed8;
  color: #ffffff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(29, 78, 216, 0.35);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #f1f5f9;
}

/* Адаптив для мобильных */
@media (max-width: 1000px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding: 24px 18px;
  }
}


/* ---------- ADDITIONAL APPLIANCES SECTION ---------- */
.additional-section {
  background: linear-gradient(to bottom, #eef6ff 0%, #ffffff 55%);
  padding: 80px 20px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.additional-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.additional-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.additional-section .subtitle {
  max-width: 880px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* Пилюльные карточки */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  justify-items: center;
}

.pill-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  padding: 16px 20px;
  width: 210px;              /* визуально как на скрине */
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.10);
}

.pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9f1ff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex: 0 0 44px;
}

.pill-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.98rem;
}

/* Адаптив */
@media (max-width: 1200px) {
  .pill-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 950px) {
  .pill-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .pill-card { width: 100%; }
}
@media (max-width: 420px) {
  .pill-grid { grid-template-columns: 1fr; }
}


/* ---------- TESTIMONIALS ---------- */
.testimonials-section{
  background:#fff;
  padding:80px 20px;
  font-family:Arial, Helvetica, sans-serif;
}
.testimonials-section .container{max-width:1200px;margin:0 auto;}
.testimonials-section h2{
  text-align:center;
  font-size:2rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:28px;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.testimonial-card{
  background:linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
  border-radius:16px;
  box-shadow:0 12px 26px rgba(15,23,42,.10);
  padding:24px;
}

.stars{
  color:#f5b301;           /* золото */
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.testimonial-card blockquote{
  margin:0 0 18px 0;
  color:#0f172a;
  font-style:italic;
  line-height:1.6;
}

.person{
  display:flex;
  align-items:center;
  gap:12px;
}

.avatar{
  width:40px;height:40px;border-radius:50%;
  background:#e9f1ff;color:#1d4ed8;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
}

.who strong{display:block;color:#0f172a;}
.who span{display:block;color:#64748b;font-size:.9rem;}

/* адаптив */
@media (max-width:900px){
  .testimonials-grid{grid-template-columns:1fr;}
}

/* ---------- FAQ (Accordion) ---------- */
.faq-section{
  background:#eef6ff;
  padding:80px 20px;
  font-family:Arial, Helvetica, sans-serif;
}
.faq-section .container{max-width:1200px;margin:0 auto;}
.faq-section h2{
  text-align:center;
  font-size:2rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:28px;
}

.faq-list{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

.faq-item{
  background:#fff;
  border-radius:12px;
  box-shadow:0 12px 24px rgba(15,23,42,.08);
  overflow:hidden;
}

/* Заголовок */
.faq-item > summary{
  list-style:none;
  cursor:pointer;
  padding:18px 56px 18px 20px;
  font-weight:700;
  color:#0f172a;
  position:relative;
  outline:none;
  user-select:none;
}

/* Стрелка */
.faq-item > summary::after{
  content:"▾";
  position:absolute;
  right:16px;
  top:18px;
  font-size:18px;
  color:#64748b;
  transition:transform .2s ease;
}
.faq-item[open] > summary::after{
  transform:rotate(-180deg);
}

/* Тело ответа */
.faq-item .answer{
  padding:0 20px 18px 20px;
  color:#475569;
  line-height:1.6;
  border-top:1px solid #e6eef8;
  font-size:0.98rem;
}

/* Ховер/фокус */
.faq-item > summary:hover{background:#f7fbff;}
.faq-item > summary:focus{box-shadow:0 0 0 3px rgba(29,78,216,.2) inset;border-radius:12px;}

/* ---------- 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;
}

/* ==== фиксированная шапка ==== */
.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;
}

/* ======= базовые переменные высоты хедера ======= */
:root { --hdr-h: 72px; }                 /* десктопная высота */
body { padding-top: var(--hdr-h); }      /* чтобы контент не уезжал под шапку */

/* ======= шапка/меню (десктоп) ======= */
.site-header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background:#fff; border-bottom:1px solid #e9eef5;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.container.header-inner{
  max-width:1200px; margin:0 auto;
  padding:14px 20px;
  display:grid; grid-template-columns:1fr auto auto;  /* бренд | меню | кнопка */
  align-items:center; gap:18px;
}
.main-nav{ justify-self:center; }
.nav{ display:flex; gap:28px; list-style:none; margin:0; padding:0; }
.nav a{ text-decoration:none; font-weight:600; color:#0f172a; }
.nav a:hover,.nav a.active{ color:#2563eb; }

.phone-btn{
  justify-self:end;
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:10px;
  background:#2563eb; color:#fff; font-weight:700; text-decoration:none;
  box-shadow:0 10px 24px rgba(37,99,235,.18);
}

/* ======= мобильная перестройка: меню столбиком ======= */
@media (max-width: 680px){
  :root { --hdr-h: 116px; }              /* больше отступа под увеличившуюся шапку */

  .container.header-inner{
    grid-template-columns: 1fr;          /* одна колонка */
    justify-items: center;
    padding:10px 14px;
    row-gap: 10px;
  }

  .brand-name{ font-size:14px; line-height:1.15; }

  .nav{
    flex-direction:column;               /* пункты меню вертикально */
    align-items:center;
    gap:10px;                            /* уменьшили «высоту» блока */
  }
  .nav a{ font-size:16px; }

  .phone-btn{
    width: 200px;                        /* аккуратная кнопка */
    justify-content:center;
    padding:9px 14px; border-radius:9px;
  }
}

/* геро-блок: на мобиле кнопка не вываливается */
@media (max-width: 680px){
  .hero { height: 64vh; min-height: 420px; }
  .hero-content{ padding: 12px 14px; }
  .hero h1{ font-size: 2rem; line-height: 1.2; }
  .hero h2{ font-size: 1.1rem; }
  .hero p{ font-size: 1rem; }
  .hero a.cta{ display:inline-block; max-width: 92%; }
}

/* контактный блок – не вылезает за края экрана */
.contact-grid{
  grid-template-columns: 1fr;            /* одна колонка на узких */
  gap: 22px;
  max-width: 640px;                      /* комфортная ширина на мобиле */
}
form input, form select, form textarea{ max-width:100%; }

/* футер – одна колонка и безопасные отступы */
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; gap: 20px; text-align:center; }
}
/* === Исправляем "обрезание" формы на мобильных === */
@media (max-width: 768px) {
  .contact-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #repairForm {
    width: 100%;
    padding: 0 4px; /* маленький внутренний отступ, чтобы поля не упирались */
  }

  #repairForm input,
  #repairForm select,
  #repairForm textarea,
  #repairForm button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Добавляем немного воздуха между краем экрана и кнопкой */
  #repairForm button {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
