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

:root{
  --bg:#f8fafc;
  --card:#ffffff;
  --card-light:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --blue:#0b8fef;
  --blue-dark:#075fa8;
  --red:#ff1e2d;
  --border:#e2e8f0;
  --white:#ffffff;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

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

img{
  max-width:100%;
}

.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

/* ===== BETA BAR ===== */

.beta-bar{
  background:linear-gradient(90deg,#ff1e2d,#0b8fef);
  color:white;
  text-align:center;
  padding:12px 16px;
  font-size:15px;
  font-weight:800;
  line-height:1.5;
}

.beta-bar a{
  color:white;
  text-decoration:underline;
  margin-left:10px;
  font-weight:900;
}

.beta-bar a:hover{
  opacity:0.85;
}

/* ===== HEADER ===== */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.94);
  border-bottom:1px solid var(--border);
}

.nav{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:26px;
  font-weight:800;
}

.brand img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.brand span span{
  color:var(--blue);
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.menu a{
  color:var(--muted);
  font-weight:700;
  transition:0.2s;
  padding:8px 12px;
  border-radius:10px;
}

.menu a:hover,
.menu a.active{
  color:var(--text);
  background:#eff6ff;
}

/* ===== HERO ===== */

.hero{
  padding:100px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(11,143,239,0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,30,45,0.10), transparent 35%),
    linear-gradient(180deg,#ffffff,#f8fafc);
}

.page-hero{
  padding-bottom:50px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
  margin-bottom:24px;
  box-shadow:0 8px 20px rgba(15,23,42,0.06);
}

.hero h1{
  font-size:clamp(42px,7vw,74px);
  line-height:1.05;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.hero p{
  color:var(--muted);
  font-size:20px;
  max-width:720px;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:16px 24px;
  border-radius:16px;
  font-weight:800;
  transition:0.2s;
  border:none;
  cursor:pointer;
  font-family:inherit;
  font-size:16px;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-red{
  background:var(--red);
  color:white;
  box-shadow:0 16px 40px rgba(255,45,61,0.25);
}

.btn-blue{
  background:var(--blue);
  color:white;
  box-shadow:0 16px 40px rgba(11,143,239,0.22);
}

.btn-dark{
  background:#111827;
  color:white;
  border:1px solid #111827;
}

.support-line{
  margin-top:14px;
}

.support-line p{
  margin-bottom:8px;
  color:var(--muted);
  font-size:15px;
}

.support-line a{
  color:var(--blue);
  font-weight:700;
}

.phone-preview{
  display:flex;
  justify-content:center;
}

.phone-screen{
  width:340px;
  min-height:620px;
  border-radius:38px;
  background:linear-gradient(180deg,#ffffff,#eff6ff);
  border:1px solid var(--border);
  padding:28px;
  box-shadow:0 30px 80px rgba(15,23,42,0.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.phone-top{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.sos-button{
  width:210px;
  height:210px;
  border-radius:50%;
  background:var(--red);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:40px auto;
  font-size:58px;
  font-weight:900;
  box-shadow:0 25px 50px rgba(255,45,61,0.35);
}

.phone-info{
  display:grid;
  gap:12px;
}

.phone-info span,
.phone-info strong{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}

/* ===== GENERAL SECTIONS ===== */

.section{
  padding:90px 0;
}

.section h2{
  font-size:clamp(34px,5vw,56px);
  margin-bottom:20px;
  line-height:1.1;
  letter-spacing:-1px;
}

.section-lead{
  color:var(--muted);
  font-size:19px;
  max-width:850px;
  margin-bottom:40px;
}

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

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  transition:0.2s;
  box-shadow:0 16px 40px rgba(15,23,42,0.06);
}

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

.icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:rgba(11,143,239,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:18px;
}

.card h3{
  font-size:24px;
  margin-bottom:12px;
}

.card p{
  color:var(--muted);
}

.section-dark{
  background:#ffffff;
}

/* ===== SCREENSHOTS CAROUSEL ===== */

.screenshots-section{
  padding-top:72px;
  padding-bottom:76px;
  background:
    radial-gradient(circle at top right, rgba(11,143,239,0.10), transparent 30%),
    linear-gradient(180deg,#f8fafc,#ffffff);
  border-top:1px solid rgba(226,232,240,0.65);
}

.screenshots-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}

.screenshots-header h2{
  margin-bottom:14px;
}

.screenshots-carousel{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:14px 4px 28px;
  scrollbar-width:thin;
  scrollbar-color:rgba(11,143,239,0.45) rgba(226,232,240,0.8);
}

.screenshots-carousel::-webkit-scrollbar{
  height:10px;
}

.screenshots-carousel::-webkit-scrollbar-track{
  background:#e2e8f0;
  border-radius:999px;
}

.screenshots-carousel::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg,var(--blue),var(--blue-dark));
  border-radius:999px;
}

.screenshot-card{
  flex:0 0 255px;
  scroll-snap-align:start;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:18px;
  box-shadow:0 22px 50px rgba(15,23,42,0.10);
  transition:0.2s;
}

.screenshot-card:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 70px rgba(15,23,42,0.14);
}

.screenshot-card img{
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:contain;
  object-position:center;
  border-radius:22px;
  border:1px solid #dbe4ee;
  background:#f8fafc;
  display:block;
}

.screenshot-card h3{
  font-size:20px;
  margin:18px 0 8px;
  letter-spacing:-0.2px;
}

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

.carousel-note{
  color:var(--muted);
  font-size:14px;
  text-align:center;
  margin-top:2px;
}

/* ===== TABLE ===== */

.table-wrap{
  overflow-x:auto;
  margin-top:30px;
}

.compare-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(15,23,42,0.06);
}

.compare-table th{
  background:#eff6ff;
  padding:18px;
  text-align:left;
  border:1px solid var(--border);
}

.compare-table td{
  padding:18px;
  border:1px solid var(--border);
  color:var(--muted);
}

.compare-table tr:nth-child(even){
  background:#f8fafc;
}

.center{
  text-align:center;
  margin-top:40px;
}

.cta-section{
  padding-top:40px;
}

.cta-box{
  background:linear-gradient(135deg,#ffffff,#eff6ff);
  border:1px solid var(--border);
  border-radius:34px;
  padding:50px;
  text-align:center;
  box-shadow:0 22px 50px rgba(15,23,42,0.08);
}

.cta-box p{
  color:var(--muted);
  max-width:780px;
  margin:20px auto 30px;
  font-size:19px;
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* ===== CONTACT ===== */

.contact-hero{
  padding:90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(11,143,239,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,30,45,0.08), transparent 35%),
    linear-gradient(180deg,#ffffff,#f8fafc);
}

.contact-top-actions{
  display:flex;
  gap:16px;
  margin-bottom:60px;
  flex-wrap:wrap;
}

.contact-title-block{
  max-width:850px;
  margin-bottom:50px;
}

.contact-title-block h1{
  font-size:clamp(42px,7vw,72px);
  line-height:1.05;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.contact-title-block p{
  font-size:20px;
  color:var(--muted);
  line-height:1.7;
}

.premium-form-card{
  display:grid;
  grid-template-columns:360px 1fr;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(15,23,42,0.10);
}

.form-info-panel{
  background:linear-gradient(180deg,#eff6ff,#ffffff);
  padding:40px 34px;
  border-right:1px solid var(--border);
}

.info-icon{
  width:72px;
  height:72px;
  border-radius:20px;
  background:rgba(11,143,239,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin-bottom:24px;
}

.form-info-panel h2{
  font-size:34px;
  line-height:1.1;
  margin-bottom:18px;
}

.form-info-panel p{
  color:var(--muted);
  margin-bottom:26px;
}

.info-list{
  display:grid;
  gap:20px;
  margin-bottom:34px;
}

.info-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.info-row span{
  font-size:24px;
}

.info-row strong{
  display:block;
  margin-bottom:6px;
}

.info-row p{
  margin:0;
  font-size:15px;
}

.contact-email-text{
  font-size:18px;
  font-weight:800;
  color:var(--blue);
  word-break:break-word;
}

.form-area{
  padding:42px;
}

.form-area h2{
  font-size:40px;
  margin-bottom:14px;
  line-height:1.1;
  letter-spacing:-1px;
}

.form-area p{
  color:var(--muted);
  margin-bottom:30px;
  font-size:17px;
}

.contact-form{
  display:grid;
  gap:22px;
}

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

.field{
  display:grid;
  gap:10px;
}

.field label{
  font-weight:700;
  font-size:15px;
  color:var(--text);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  border:none;
  background:#f8fafc;
  border:1px solid #dbe4ee;
  border-radius:18px;
  padding:18px;
  font-size:16px;
  color:var(--text);
  font-family:inherit;
  transition:0.2s;
}

.contact-form textarea{
  resize:vertical;
  min-height:170px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:var(--blue);
  background:#ffffff;
  box-shadow:0 0 0 5px rgba(11,143,239,0.10);
}

.form-submit{
  width:100%;
  margin-top:6px;
  min-height:60px;
  border-radius:18px;
  font-size:17px;
}

.form-note{
  margin-top:6px !important;
  font-size:14px !important;
  color:var(--muted);
  text-align:center;
}

/* ===== FAQ ===== */

.faq-section{
  padding-top:20px;
}

.faq-header{
  margin-bottom:34px;
}

.faq-header h2{
  font-size:56px;
  margin-bottom:12px;
  letter-spacing:-1px;
}

.faq-header p{
  color:var(--muted);
  font-size:18px;
}

.faq-list{
  display:grid;
  gap:24px;
}

.faq-item{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:32px;
  box-shadow:0 18px 40px rgba(15,23,42,0.05);
}

.faq-item h3{
  font-size:24px;
  margin-bottom:14px;
}

.faq-item p{
  color:var(--muted);
  line-height:1.8;
}

/* ===== TEXT / PRIVACY ===== */

.text-page{
  max-width:950px;
}

.text-page h2{
  margin-top:34px;
}

.text-page h2:first-child{
  margin-top:0;
}

.text-page p{
  margin-bottom:22px;
  font-size:18px;
  color:var(--muted);
}

.privacy-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:32px;
  padding:42px;
  box-shadow:0 22px 50px rgba(15,23,42,0.08);
  max-width:980px;
  margin:auto;
}

.privacy-card p{
  color:var(--muted);
  font-size:18px;
  margin-bottom:18px;
}

.privacy-update{
  background:#eff6ff;
  border:1px solid var(--border);
  padding:14px 18px;
  border-radius:16px;
  color:var(--text) !important;
  display:inline-block;
}

.privacy-block{
  margin-top:34px;
}

.privacy-block h2{
  font-size:30px;
  margin-bottom:14px;
  letter-spacing:-0.5px;
}

.privacy-list{
  margin:20px 0 30px;
  padding-left:20px;
}

.privacy-list li{
  margin-bottom:12px;
  color:var(--muted);
}

.privacy-list li::marker{
  color:var(--red);
}

.privacy-contact-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  margin-top:18px;
}

.privacy-contact-box p{
  margin-bottom:8px;
}

/* ===== FOOTER ===== */

.site-footer{
  padding:60px 0;
  border-top:1px solid var(--border);
  background:#ffffff;
}

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

.footer-grid strong{
  display:block;
  margin-bottom:14px;
  font-size:18px;
}

.footer-grid p,
.footer-grid a{
  color:var(--muted);
  display:block;
  margin-bottom:10px;
}

.footer-grid a:hover{
  color:var(--text);
}

.made{
  margin-top:20px;
  font-weight:700;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1050px){
  .premium-form-card{
    grid-template-columns:1fr;
  }

  .form-info-panel{
    border-right:none;
    border-bottom:1px solid var(--border);
  }
}

@media(max-width:950px){
  .hero-grid{
    grid-template-columns:1fr;
  }

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

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

  .hero{
    padding-top:70px;
  }

  .hero h1{
    font-size:52px;
  }

  .phone-screen{
    width:100%;
    max-width:340px;
    min-height:560px;
  }

  .menu{
    gap:12px;
  }

  .screenshots-carousel{
    gap:18px;
  }

  .screenshot-card{
    flex-basis:235px;
  }

  .screenshot-card img{
    height:480px;
  }
}

@media(max-width:760px){
  .contact-top-actions{
    flex-direction:column;
  }

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

  .form-area{
    padding:30px 22px;
  }

  .form-info-panel{
    padding:30px 22px;
  }

  .form-area h2{
    font-size:34px;
  }

  .contact-title-block h1{
    font-size:48px;
  }

  .faq-header h2{
    font-size:44px;
  }

  .screenshots-header{
    display:block;
  }

  .screenshot-card{
    flex-basis:82%;
  }

  .screenshot-card img{
    height:520px;
  }
}

@media(max-width:640px){
  .beta-bar{
    font-size:13px;
    padding:10px 12px;
  }

  .beta-bar a{
    display:block;
    margin-left:0;
    margin-top:4px;
  }

  .nav{
    flex-direction:column;
    padding:18px 0;
  }

  .menu{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
  }

  .menu a{
    padding:7px 9px;
    font-size:14px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .btn{
    width:100%;
  }

  .cta-actions{
    flex-direction:column;
  }

  .cta-box{
    padding:32px 24px;
  }

  .section{
    padding:70px 0;
  }

  .screenshots-section{
    padding-top:54px;
  }

  .screenshot-card{
    flex-basis:88%;
    padding:14px;
  }

  .screenshot-card img{
    height:500px;
  }

  .privacy-card{
    padding:28px 22px;
  }
}
