:root {
  --ink: #121826;
  --ink-soft: #4b5565;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --line: #e5e9f0;
  --red: #df2333;
  --red-dark: #b91424;
  --red-soft: #fff0f2;
  --navy: #111827;
  --navy-light: #202a3b;
  --green: #1f9d68;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(18, 24, 38, 0.1);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section[id],
#contact {
  scroll-margin-top: 118px;
}

body {
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink-soft);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.035em;
}

a {
  color: inherit;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
  color: var(--red);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  padding-right: 0;
  padding-left: 0;
}

.ptb--110,
.ptb--120 {
  padding: 112px 0;
}

.bg-theme {
  background: var(--navy);
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Header */
.header-area {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 24, 38, 0.08);
  backdrop-filter: blur(16px);
}

.header-area.header_fix {
  position: fixed;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 32px rgba(18, 24, 38, 0.1);
  animation: header-in 0.28s ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.company-bar {
  height: 34px;
  background: var(--navy);
  color: #aeb7c7;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.company-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
}

.company-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.company-links a:hover {
  color: #fff;
}

.company-current {
  color: #fff;
  font-weight: 700;
}

.menu-area {
  display: flex;
  align-items: center;
  min-height: 84px;
  margin: 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.logo {
  margin: 0;
}

.logo a,
.logo img {
  display: block;
}

.logo img {
  width: auto;
  height: 58px;
}

.brand-caption {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-caption strong {
  color: var(--ink);
  font-size: 15px;
}

.brand-caption span {
  color: #7c8493;
  font-size: 11px;
}

.main-menu {
  margin-left: auto;
}

.main-menu nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.main-menu nav ul li {
  float: none;
}

.main-menu nav ul li a {
  display: block;
  padding: 11px 10px;
  color: #3d4655;
  font-size: 13px;
  font-weight: 650;
  text-transform: none;
}

.main-menu nav ul li a::before,
.main-menu nav ul li.active a::before {
  display: none;
}

.main-menu nav ul li.active a,
.main-menu nav ul li a:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-left: 14px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Hero */
.slider-area {
  position: relative;
  min-height: 820px;
  padding: 185px 0 90px;
  background:
    radial-gradient(circle at 90% 15%, rgba(223, 35, 51, 0.14), transparent 26%),
    radial-gradient(circle at 5% 90%, rgba(17, 24, 39, 0.08), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #fff 58%, #f5f7fa 100%);
}

.slider-area::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image: linear-gradient(rgba(18,24,38,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(18,24,38,.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 65%);
}

.slider-content.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 72px;
  height: auto;
  min-height: 535px;
  padding: 0;
}

.slider-nner.hero-copy {
  max-width: 710px;
  text-align: left;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid #ffd4d9;
  border-radius: 999px;
  background: rgba(255, 240, 242, 0.82);
}

.slider-nner h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: none;
}

.slider-nner h1 em {
  color: var(--red);
  font-style: normal;
}

.slider-nner p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #596273;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
}

.button-primary {
  background: var(--red);
  box-shadow: 0 12px 30px rgba(223, 35, 51, 0.25);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: #d9dee7;
  background: rgba(255,255,255,.78);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 2px solid #e3e7ee;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.hero-proof span {
  color: #7a8494;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 555px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 36px;
  background: linear-gradient(155deg, var(--navy-light), #0b101a);
  box-shadow: 0 35px 80px rgba(17, 24, 39, 0.25);
}

.hero-image-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(223, 35, 51, 0.32);
  content: "";
  filter: blur(2px);
}

.hero-image-card img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 94%;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0,0,0,.32));
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  color: #687284;
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.hero-badge i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: #e7f8f0;
  color: var(--green);
  font-size: 18px;
}

.hero-badge strong {
  color: var(--ink);
  font-size: 14px;
}

/* Shared section headings */
.section-title {
  max-width: 730px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title h2,
.about-content h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  text-transform: none;
}

.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: #6c7687;
  font-size: 17px;
}

/* Benefits */
.about-area {
  background: var(--surface);
}

.about-area > .container > .row {
  display: flex;
  align-items: center;
}

.about-left-thumb {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 680px;
  padding: 30px 38px 0;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(145deg, #f0f3f7, #e7ebf1);
}

.about-left-thumb::after {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.about-left-thumb img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 630px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 20px rgba(17,24,39,.18));
}

.about-content {
  max-width: 680px;
}

.about-content > p {
  margin-bottom: 30px;
  color: #667183;
  font-size: 17px;
  line-height: 1.75;
}

.about-ft {
  display: grid;
  gap: 12px;
}

.ft-single {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ft-single:hover {
  border-color: #f6c5ca;
  box-shadow: 0 14px 35px rgba(18,24,38,.08);
  transform: translateX(4px);
}

.ft-single .icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  float: none;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 18px;
}

.ft-single .icon::before,
.ft-single .icon::after {
  display: none;
}

.ft-single .ft-info {
  min-width: 0;
  padding: 0;
}

.ft-info h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
}

.ft-info p {
  margin: 0;
  color: #707a8b;
  font-size: 14px;
  line-height: 1.6;
}

/* Construction */
.feature-area {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.feature-area::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(223,35,51,.18);
  content: "";
  filter: blur(30px);
}

.feature-area .section-title {
  position: relative;
  z-index: 1;
}

.feature-area .section-title h2,
.feature-area .section-title p {
  color: #fff;
}

.feature-area .section-title p {
  color: #aeb7c7;
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-mscreen {
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.feature-mscreen img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 16px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.feature-tags span {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #d9dee7;
  font-size: 13px;
}

.feature-tags i {
  margin-right: 7px;
  color: #ff6875;
}

/* Operation carousel */
.screen-slider-area,
.pricing-area,
.testimonial-area {
  background: var(--surface-soft);
}

.screen-slider .owl-item {
  padding: 4px;
}

.screen-slider img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(18,24,38,.13);
}

.owl-dots {
  margin-top: 34px;
}

.owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 999px;
  background: #cfd5de !important;
  transition: width .2s ease, background .2s ease;
}

.owl-dots .owl-dot.active {
  width: 28px;
  background: var(--red) !important;
}

/* Numbers */
.achivement-area {
  padding: 58px 0;
  background: var(--red);
}

.achivement-area .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
}

.achivement-area .row::before,
.achivement-area .row::after {
  display: none;
  content: none;
}

.achivement-area .row > div {
  width: auto;
  padding: 0;
}

.achive-single {
  height: 100%;
  min-height: 190px;
  padding: 24px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: rgba(255,255,255,.1);
}

.achive-single .icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  font-size: 17px;
}

.achive-single h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
}

.achive-temperature h2 {
  font-size: 24px;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.achive-temperature span {
  display: block;
  max-width: 190px;
  margin: 0 auto;
}

.achive-single span {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
}

/* Specification cards */
.pricing-list {
  display: flex;
  flex-wrap: wrap;
}

.pricing-list > div {
  display: flex;
}

.pricing-item {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18,24,38,.06);
}

.pricing-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.prc-head,
.pricing-item:hover .prc-head {
  margin: -28px -28px 22px;
  padding: 22px 28px;
  border-radius: 0;
  background: var(--navy);
}

.prc-head h4,
.pricing-item:hover .prc-head h4 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  text-transform: none;
}

.pricing-item-accent .prc-head {
  background: var(--red);
}

.prc-list {
  margin: 0 0 24px;
  padding: 0;
}

.prc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #6c7687;
  font-size: 14px;
}

.prc-list li::before {
  display: none;
}

.prc-list li strong {
  color: var(--ink);
  font-size: 14px;
}

.spec-image {
  display: block;
  width: 100%;
  max-height: 165px;
  margin-top: 10px;
  border-radius: 14px;
  object-fit: contain;
}

.spec-note {
  margin-top: 28px;
  padding: 16px;
  border-radius: 14px;
  background: #e9f8f1;
  color: #17794f;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
}

.spec-note i {
  margin-right: 7px;
}

.passport-preview {
  display: block;
  height: 260px;
  margin-bottom: 22px;
}

.passport-preview img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 15px rgba(18,24,38,.13));
}

.pricing-item .btn-area a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.pricing-item .btn-area a:hover {
  background: var(--red-dark);
  color: #fff;
}

/* Callback */
.subscribe-area {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--navy);
}

.subscribe-area::after {
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(223,35,51,.25);
  content: "";
  filter: blur(12px);
}

.subscribe-area .container {
  position: relative;
  z-index: 1;
}

.subscribe-area .section-title h2 {
  color: #fff;
}

.subscribe-area .section-title p {
  color: #aeb7c7;
}

.subscribe-area .subscribe_form {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.subscribe_form form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.subscribe_form form > div {
  width: auto;
  padding: 0;
}

.subscribe_form .input,
.subscribe_form .input input {
  margin: 0;
}

.subscribe_form .input input {
  width: 100%;
  height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.subscribe_form .input input::placeholder {
  color: #aeb7c7;
}

.subscribe_form input[type="submit"] {
  height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 13px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.subscribe_form input[type="submit"]:hover {
  background: var(--red-dark);
}

.callback-phone {
  margin-top: 30px;
  color: #aeb7c7;
  font-size: 16px;
  text-align: center;
}

.callback-phone a {
  margin-left: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 750;
}

/* Reviews */
.testimonial-list .owl-stage {
  display: flex;
}

.testimonial-list .owl-item {
  display: flex;
  padding: 0 8px;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(18,24,38,.06);
}

.tauthor-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.author-thumb {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--red-soft);
  border-radius: 50%;
}

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

.author-info {
  padding: 0;
}

.author-info h4 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 17px;
}

.author-info span {
  color: #7a8494;
  font-size: 12px;
}

.review-stasr {
  margin-top: 5px;
  color: #f5b333;
}

.tauthor-text p {
  margin: 0;
  color: #657083;
  font-size: 14px;
  line-height: 1.75;
}

/* Map and contacts */
#map {
  height: 440px;
  overflow: hidden;
  background: #e7eaf0;
}

.contact-area {
  padding: 0 0 100px;
  background: var(--surface-soft);
}

.contact-inner {
  padding: 100px 0 0;
}

.contact-flex-container {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
}

.contact-address,
.contact-form {
  width: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18,24,38,.06);
}

.contact-title {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 22px;
  text-transform: none;
}

.contact-address > p {
  color: #727d8d;
}

.contact-address ul li {
  position: relative;
  min-height: 52px;
  padding: 10px 0 10px 48px;
  color: #4f5a6b;
  font-size: 14px;
}

.contact-address ul li i {
  position: absolute;
  top: 7px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form .input {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 14px;
}

.contact-form .input:focus {
  border-color: var(--red);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(223,35,51,.1);
}

.contact-form textarea.input {
  grid-column: 1 / -1;
  height: 122px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input[type="submit"] {
  grid-column: 1 / -1;
  width: auto;
  min-width: 170px;
  height: 50px;
  margin: 2px 0 0;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 750;
}

.contact-form input[type="submit"]:hover {
  background: var(--red-dark);
}

/* Footer */
.footer-area {
  padding: 36px 0;
  background: var(--navy);
}

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

.footer-inner .fsocial {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.fsocial li a {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  background: rgba(255,255,255,.05);
  color: #fff;
}

.fsocial li a:hover {
  border-color: var(--red);
  background: var(--red);
}

.copy-right {
  margin: 0;
  color: #9ba5b5;
  font-size: 13px;
}

#preloader {
  background: var(--navy);
}

.spinner::before,
.spinner::after {
  border-color: var(--red) transparent transparent;
}

.install-app-button {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.install-app-button:disabled {
  cursor: wait;
  opacity: .7;
}

@media (max-width: 1199px) {
  .container { width: min(960px, calc(100% - 40px)); }
  .brand-caption { display: none; }
  .main-menu nav ul li a { padding-right: 7px; padding-left: 7px; font-size: 12px; }
  .hero-grid { gap: 42px; }
  .hero-badge { right: -12px; }
}

@media (max-width: 991px) {
  section[id], #contact { scroll-margin-top: 76px; }
  .container { width: min(720px, calc(100% - 36px)); }
  .ptb--110, .ptb--120 { padding: 84px 0; }
  .header-area { position: absolute; }
  .menu-area { min-height: 76px; justify-content: space-between; }
  .logo img { height: 52px; }
  .mobile_menu { position: static; width: auto; }
  .slicknav_menu { position: static; padding: 0; background: transparent; }
  .slicknav_btn { margin: 0; padding: 11px 13px; border-radius: 10px; background: var(--navy); }
  .slicknav_nav { position: absolute; top: 76px; right: 18px; left: 18px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .slicknav_nav a { padding: 11px 12px; border-radius: 9px; color: var(--ink); font-size: 14px; }
  .slicknav_nav a:hover { background: var(--red-soft); color: var(--red); }
  .slider-area { min-height: auto; padding: 126px 0 72px; }
  .slider-content.hero-grid { grid-template-columns: 1fr; gap: 52px; min-height: auto; }
  .slider-nner.hero-copy { max-width: 760px; }
  .hero-image-card { height: 540px; max-width: 470px; margin: 0 auto; }
  .hero-badge { right: calc(50% - 260px); }
  .about-area > .container > .row { display: flex; flex-direction: column; }
  .about-left-thumb { min-height: 570px; margin-bottom: 48px; }
  .about-left-thumb img { max-height: 530px; }
  .about-content { max-width: none; }
  .achivement-area .row { grid-template-columns: repeat(2, 1fr); }
  .pricing-list > div { margin-bottom: 24px; }
  .subscribe_form form { grid-template-columns: 1fr 1fr; }
  .subscribe_form form > div:last-child { grid-column: 1 / -1; }
  .subscribe_form input[type="submit"] { width: 100%; }
  .contact-flex-container { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .container { width: calc(100% - 28px); }
  .ptb--110, .ptb--120 { padding: 68px 0; }
  .slider-area { padding-top: 112px; }
  .slider-nner h1 { font-size: clamp(38px, 11vw, 54px); }
  .slider-nner p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { gap: 18px; }
  .hero-proof div { min-width: calc(50% - 12px); }
  .hero-image-card { height: 470px; border-radius: 26px; }
  .hero-badge { right: 0; bottom: 20px; min-width: 190px; }
  .section-title { margin-bottom: 42px; }
  .section-title h2, .about-content h2 { font-size: 34px; }
  .about-left-thumb { min-height: 480px; padding-right: 20px; padding-left: 20px; border-radius: 24px; }
  .about-left-thumb img { max-height: 445px; }
  .feature-mscreen { padding: 10px; border-radius: 20px; }
  .feature-tags { justify-content: flex-start; }
  .achivement-area { padding: 42px 0; }
  .achivement-area .row { grid-template-columns: 1fr 1fr; }
  .achive-single { min-height: 170px; padding: 20px 12px; }
  .achive-single h2 { font-size: 22px; }
  .achive-temperature h2 { font-size: 20px; }
  .pricing-list { display: block; }
  .pricing-list > div { display: block; }
  .pricing-item { min-height: 0; }
  .subscribe-area { padding: 72px 0; }
  .subscribe_form form { grid-template-columns: 1fr; }
  .subscribe_form form > div:last-child { grid-column: auto; }
  .callback-phone { display: flex; flex-direction: column; }
  .callback-phone a { margin: 3px 0 0; }
  #map { height: 360px; }
  .contact-inner { padding-top: 68px; }
  .contact-area { padding-bottom: 68px; }
  .contact-address, .contact-form { padding: 24px; border-radius: 20px; }
  .contact-form form { grid-template-columns: 1fr; }
  .contact-form textarea.input, .contact-form input[type="submit"] { grid-column: auto; }
  .contact-form input[type="submit"] { width: 100%; }
  .footer-inner { flex-direction: column; gap: 18px; }
  .copy-right { text-align: center; }
}

@media (max-width: 480px) {
  .slider-nner h1 { font-size: 38px; }
  .hero-proof div { min-width: 100%; }
  .hero-image-card { height: 410px; }
  .hero-badge { bottom: 14px; }
  .about-left-thumb { min-height: 420px; }
  .about-left-thumb img { max-height: 390px; }
  .ft-single { padding: 17px; gap: 13px; }
  .ft-single .icon { width: 42px; height: 42px; flex-basis: 42px; }
  .section-title h2, .about-content h2 { font-size: 31px; }
  .achivement-area .row { grid-template-columns: 1fr; }
  .achive-single { min-height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
