@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #0d1f2d;
  --accent: #0f9b8e;
  --accent-hover: #0b7d72;
  --light: #f4f7fa;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #475569;
  --radius: 12px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}
section {
  overflow: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-left: 24px !important;
    padding-right: 24px!important;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  background: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.nav-notice {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-left: auto;
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
  padding: 8px 12px;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

.burger {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  display: none;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,45,0.85) 0%, rgba(13,31,45,0.4) 100%);
  z-index: -1;
}

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

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
}

.split-layout.reverse {
  direction: ltr;
}

.split-layout.reverse .split-text {
  order: 0;
}

.split-text h2 {
  margin-bottom: 1.2rem;
}

.split-text p {
  font-size: 1.05rem;
}

.split-image img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.intro, .installation {
  background: var(--white);
}

.monitor {
  background: var(--light);
}

.showcase {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.showcase-bg .hero-bg-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,31,45,0.75);
  z-index: 0;
}

.showcase-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.showcase-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.benefits {
  padding: 64px 0;
  background: var(--white);
}

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

.card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.3s;
}

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

.card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.app-preview {
  background: var(--light);
}

.split-scroll {
  width: 100%;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.scroll-container img {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: 200px;
  height: 433px;
  border-radius: var(--radius);
  object-fit: cover;
}

.scroll-arrows {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.contact-form {
  padding: 64px 0;
  background: linear-gradient(135deg, #e0f2f1, #f4f7fa);
}

.form-wrapper {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-wrapper p {
  text-align: center;
  margin-bottom: 2rem;
}

.form-row {
  margin-bottom: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-checks {
  margin: 24px 0;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
}

.check-label input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo span {
  color: var(--white);
}

.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 500px;
}

.footer-heading {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-contact p {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  grid-column: span 2;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

@media (min-width: 992px) {
  .nav-notice {
    display: block;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 16px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .burger {
    display: block;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }

  .split-layout.reverse .split-text {
    order: 0;
  }

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

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

  .footer-bottom {
    grid-column: span 1;
  }
}
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: var(--font-body);
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.chat-toggle:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.chat-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.chat-widget.active .chat-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  background: var(--accent);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.chat-body {
  padding: 16px;
  text-align: center;
}

.chat-body p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text);
}

@media (max-width: 480px) {
  .chat-popup {
    width: calc(100vw - 40px);
    right: -10px;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
  margin: 0;
}

.thanks-main {
  flex: 1;
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 150px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.footer-legal li {
  margin-bottom: 10px;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.legal-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 1.8rem 0 1rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin: 1.4rem 0 0.8rem;
}
.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}