* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #05070f, #0c1224);
  color: #fff;
  overflow-x: hidden;
}

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

/* Glass */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ================= HEADER ONLY ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
}

.logo img {
  height: 40px;
}

/* Header Nav Only */
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

header nav a {
  font-weight: 500;
  opacity: 0.85;
  transition: 0.3s;
}

header nav a:hover {
  opacity: 1;
  color: #4fc3f7;
}

/* Hamburger (desktop hidden) */
header .menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #2196f3, #00e5ff);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ================= MAIN UI ================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 60px;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  padding: 50px;
  overflow: hidden;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

section {
  padding: 80px 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.section-title p {
  opacity: 0.7;
}

/* FEATURES GRID (RESTORED) */
.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.feature-card {
  padding: 30px;
  text-align: left;
}

.feature-card i {
  font-size: 32px;
  color: #4fc3f7;
  margin-bottom: 10px;
  display: block;
}

/* Robo */
.robo-box {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px;
  align-items: center;
}

.robo-box img {
  width: 100%;
  max-width: 260px;
  margin: auto;
  display: block;
}

/* Portals */
.portal-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.portal-card {
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
}

.portal-card i {
  font-size: 48px;
  color: #4fc3f7;
  flex-shrink: 0;
}

.portal-content {
  flex: 1;
}

/* Screens */
.shots-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.shots-grid img {
  width: 100%;
  border-radius: 15px;
  background: #111;
}

/* Pricing */
.pricing-box {
  max-width: 700px;
  margin: auto;
  padding: 50px;
  text-align: center;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #4fc3f7;
  margin: 20px 0;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 60px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

footer h4 {
  margin-bottom: 15px;
}

footer a {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
}

footer a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  opacity: 0.6;
  font-size: 14px;
}

/* ============== MOBILE ONLY ============== */

@media (max-width: 900px) {
  /* Prevent horizontal overflow */
  body,
  html {
    overflow-x: hidden;
  }

  .hero {
    padding: 100px 20px 40px;
  }

  .hero-content {
    padding: 25px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  header {
    padding: 15px 25px;
  }

  /* Show hamburger */
  header .menu-toggle {
    display: block;
  }

  /* Mobile header menu only */
  header nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(15, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    display: none;
    flex-direction: column;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  }

  header nav.active {
    display: flex;
  }

  header nav a {
    margin: 10px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 25px;
  }

  .robo-box {
    grid-template-columns: 1fr;
  }
}

.features-mobile {
  display: block;
}

#features {
  display: block;
}

#features .features-mobile {
  display: block;
}

.legal_document {
    padding: 50px;
    font-size: 15px !important;
}

.download-container{
    max-width:1100px;
    margin:auto;
}

.download-box{
    padding:35px;
}

.download-header{
    text-align:start;
    margin-bottom:30px;
}

.download-header h1{
    font-size:40px;
    margin-bottom:10px;
}

.download-header p{
    opacity:.75;
}

.instructions{
    margin-top:30px;
}

.instructions ul{
    list-style:none;
    padding:0;
}

.instructions li{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.instructions li i{
    color:#4fc3f7;
    font-size:20px;
    margin-top:4px;
}

.download-actions{
    margin-top:40px;
    text-align:start;
}

.download-actions .btn-primary{
    font-size:15px;
    padding:14px 18px;
}

.partner-note{
    margin-top:25px;
    opacity:.8;
    text-align:start;
}

.contact-box{
    max-width:1100px;
    margin:auto;
    padding:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.contact-info h2{
    font-size:38px;
    margin-bottom:10px;
}

.contact-info p{
    opacity:.8;
    margin-bottom:25px;
}

.contact-list{
    list-style:none;
    padding:0;
}

.contact-list li{
    display:flex;
    gap:15px;
    margin-bottom:18px;
    align-items:flex-start;
}

.contact-list i{
    font-size:20px;
    color:#4fc3f7;
    margin-top:3px;
}

.contact-list span{
    opacity:.9;
}

.contact-lottie{
    text-align:end;
}

.contact-lottie dotlottie-player{
    width:100%;
    max-width:380px;
}

/* Mobile */

@media (max-width:900px){

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

.contact-box{
    padding:30px;
}

}