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

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#08213b;
}
html{
  scroll-behavior:smooth;
}
.navbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 60px;
}

.nav-logo{
  height:95px;
  filter:drop-shadow(0 4px 12px rgba(39,183,199,.25));
}
.nav-tagline{
  font-size:.9rem;
  letter-spacing:.18em;
  font-weight:700;
  opacity:.95;
  color:#27b7c7;
  letter-spacing:.16em;
}

nav{
  display:flex;
  gap:32px;
  background:rgba(7,27,47,.25);
  backdrop-filter:blur(10px);
  padding:18px 30px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

nav a{
  text-decoration:none;
  color:white;
  font-weight:600;
}

.navbar{
  align-items:flex-start;
}

.nav-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.nav-tagline{
  color:white;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.18em;
  margin-top:-100px;
  margin-left:72px;
  opacity:.9;
}

.youtube-preview{
  position:relative;
  display:block;
  width:260px;
  max-width:100%;
  margin:0 auto;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(39,183,199,.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 0 8px rgba(255,255,255,.035);
  background:#000;
}

.youtube-preview img{
  width:100%;
  display:block;
}

.youtube-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:66px;
  height:66px;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  padding-left:4px;
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.35);
}

.demo-video-section{
  padding:36px 60px 44px;
  background:#071b2f;
}

.demo-video-card{
  max-width:760px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 230px;
  gap:42px;
  align-items:center;
  color:white;
}

.demo-video-card h2{
  font-size:2.35rem;
  line-height:1.08;
  margin-bottom:14px;
}

.demo-video-card p{
  max-width:440px;
  color:#d7e5ea;
  font-size:1.05rem;
  line-height:1.55;
}

.demo-video-card video{
  width:100%;
  max-width:230px;
  border-radius:28px;
  border:1px solid rgba(39,183,199,.35);
  box-shadow:0 22px 55px rgba(0,0,0,.45);
  object-fit:contain;
}

.pilot-demo-mini{
  display:grid;
  grid-template-columns:1.3fr 0.7fr 220px;
  gap:28px;
  align-items:center;
  margin-bottom:24px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.pilot-demo-mini h2{
  font-size:2.3rem;
  line-height:1.08;
}

.pilot-demo-mini p{
  color:#d7e5ea;
  line-height:1.55;
}

.pilot-demo-mini video{
  width:100%;
  max-width:210px;
  border-radius:26px;
  border:1px solid rgba(39,183,199,.35);
  box-shadow:0 18px 50px rgba(0,0,0,.4);
}
.pilot-subtitle{
  margin-top:12px;
  margin-bottom:28px;

  color:#b9dbe0;
  font-size:1.05rem;
  line-height:1.6;

  max-width:700px;
}
.pilot-card-combined{
  max-width:1180px;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:56px;
  align-items:center;
  padding:52px;
}

.pilot-demo-column{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.pilot-demo-column .section-kicker{
  margin-bottom:12px;
}

.pilot-demo-column p{
  color:#d7e5ea;
  font-size:1rem;
  line-height:1.5;
  margin-bottom:16px;
}

.pilot-demo-column video{
  width:260px;
  max-width:100%;
  border-radius:30px;
  border:1px solid rgba(39,183,199,.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 0 8px rgba(255,255,255,.035);
  background:#000;
}

.pilot-form-column{
  max-width:620px;
}

.pilot-form-column h2{
  font-size:2.8rem;
  line-height:1.02;
  margin-bottom:18px;
}

.pilot-subtitle{
  color:#d7e5ea;
  font-size:1.08rem;
  line-height:1.55;
  margin-bottom:26px;
}

.pilot-intro{
  color:#d7e5ea;
  font-size:1rem;
  line-height:1.65;
  margin-bottom:26px;
}

.pilot-form label{
  margin-top:14px;
}

.pilot-form button{
  margin-top:18px;
}

.pilot-demo-column h2{
  font-size:2.4rem;
}

.pilot-info{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
 margin-top:22px;
}


.hero{
  position:relative;
  height:95vh;

  background-image:url("assets/hero.png");
  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
}

.hero-kicker{
  color:#27b7c7;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.75rem;
  margin-bottom:10px;
  opacity:.8;
}

.hero-subtext{
  max-width:560px;
  color:rgba(255,255,255,.9);
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
  to right,
  rgba(5,20,35,.80),
  rgba(5,20,35,.20)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:620px;
  padding-left:80px;
  padding-top:40px;
  color:white;
}

.hero h1{
  font-size:4rem;
  line-height:1;
}

.hero h2{
  font-size:3rem;
  color:#27b7c7;
  margin-bottom:24px;
}

.tagline{
  font-size:1.6rem;
  font-weight:700;
  margin-bottom:24px;
}

.hero p{
  font-size:1.2rem;
  line-height:1.8;
}

.hero-demo-card{
  position:absolute;
  z-index:3;
  left:46%;
  bottom:90px;
  width:210px;
  border-radius:28px;
  overflow:hidden;
  background:#000;
  box-shadow:
    0 28px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(39,183,199,.28);
}

.hero-demo-card video{
  width:100%;
  display:block;
}
.info-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:14px;

  background:rgba(39,183,199,.12);
  border:1px solid rgba(39,183,199,.30);

  color:#d7e5ea;
  line-height:1.5;
}

.info-note strong{
  color:white;
}

.address-fail-section,
.why-matters-section{
  padding:70px 60px;
  background:#071b2f;
  color:white;
  text-align:center;
}

.address-fail-section{
  padding-top:30px;
}

.address-fail-section h2,
.why-matters-section h2{
  font-size:2.8rem;
  color:white;
  margin-bottom:14px;
}

.address-fail-grid,
.why-grid{
  max-width:1180px;
  margin:44px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.address-card,
.why-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  border-radius:24px;
  padding:26px;
  text-align:left;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.address-card h3,
.why-card h3{
  color:white;
  font-size:1.25rem;
  margin-bottom:12px;
}

.address-card p,
.why-card p{
  color:#d7e5ea;
  line-height:1.55;
}

.use-cases{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;

  padding:20px 60px 60px;
}

.card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  height: auto;
  border-radius:24px;
}


.card img{
  width:100%;
  display:block;
  height:180px;
  object-fit:cover;
}

.card h3{
  padding:20px;
}
.steps{
  padding:70px 60px;
  background:#f7fbfc;
  text-align:center;
}

.section-kicker{
  color:#0b7f8e;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:12px;
}

.steps h2{
  font-size:3rem;
  color:#071b2f;
}

.section-subtitle{
  font-size:1.2rem;
  color:#0b7f8e;
  margin:12px 0 40px;
  font-weight:700;
}

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

.step{
  background:white;
  padding:30px;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.07);
  text-align:left;
}

.step span{
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#0b7f8e;
  color:white;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:18px;
}

.step h3{
  color:#071b2f;
  font-size:1.35rem;
  margin-bottom:12px;
}

.step p{
  line-height:1.6;
  color:#35465c;

}.step-icon{
  font-size:2rem;
  margin-bottom:14px;
}

.step ul{
  list-style:none;
  margin-top:18px;
}

.step li{
  margin-bottom:10px;
  color:#35465c;
  font-size:.95rem;
}

.step li::before{
  content:"✓";
  color:#0b7f8e;
  font-weight:900;
  margin-right:8px;
}

.verified{
  padding:70px 60px;
  background:white;
  text-align:center;
  background: linear-gradient(
    180deg,
    #071b2f 0%,
    #09233f 100%
  );

  color:white;
}

.verified h2{
  font-size:3rem;
  color:white;
}

.verified h3{
  color:white;
}

.verified p{
  color:rgba(255,255,255,.75);
}

.timeline{
  margin:50px auto;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:18px;
  max-width:1200px;
}

.timeline-item{
  width:180px;
}

.timeline-icon{
  width:56px;
  height:56px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#e8f8fa;
  color:#0b7f8e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:900;
}

.verified-check{
  background:#15803d;
  color:white;
}

.timeline-item h3{
  font-size:1rem;
  color:#071b2f;
  margin-bottom:10px;
}

.timeline-item p{
  font-size:.9rem;
  color:#526174;
  line-height:1.5;
}

.timeline-arrow{
  color:#0b7f8e;
  font-size:2rem;
  margin-top:12px;
}

.verified-card{
  max-width:420px;
  margin:40px auto 0;
  border:1px solid #b8e7dd;
  background:#f5fffb;
  border-radius:18px;
  padding:28px;
  text-align:left;
}

.verified-card h3{
  color:#071b2f;
  margin-bottom:18px;
}

.verified-card ul{
  list-style:none;
}

.verified-card li{
  margin-bottom:12px;
  color:#35465c;
}

.verified-card li::before{
  content:"✓";
  color:#15803d;
  font-weight:900;
  margin-right:10px;
}
.dark-steps{
  background:linear-gradient(180deg,#071b2f,#0b2535);
  color:white;
}

.dark-steps h2{
  color:white;
}

.dark-steps .section-subtitle{
  color:#b9dbe0;
}

.dark-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:white;
}

.dark-card h3{
  color:white;
}

.dark-card p{
  color:#d7e5ea;
}

.step-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:16px;
}

.line-icon{
  color:#28c7d7;
  font-size:2rem;
}

.mini-map,
.mini-route,
.mini-card-ui,
.share-box{
  margin-top:22px;
  border-radius:14px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(39,183,199,.25);
}

.mini-map{
  height:115px;
  position:relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(39,183,199,.25), transparent 22%),
    linear-gradient(135deg,#1c3b34,#0b1722);
}

.pin-dot{
  position:absolute;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#27b7c7;
  left:50%;
  top:45%;
  transform:translate(-50%,-50%);
  box-shadow:0 0 0 14px rgba(39,183,199,.18);
}

.mini-card-ui{
  padding:20px;
}

.mini-card-ui strong{
  display:block;
  color:white;
  margin-bottom:8px;
}

.mini-card-ui small{
  color:#d7e5ea;
}

.share-box{
  padding:22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#27b7c7;
  font-weight:800;
}

.mini-route{
  height:115px;
  display:flex;
  align-items:center;
  justify-content:space-around;
}

.mini-route div{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#27b7c7;
  box-shadow:0 0 0 10px rgba(39,183,199,.18);
}
.card p{
  padding:0 20px 24px;
  color:#526174;
  line-height:1.5;

}

.card{
  display:flex;
  flex-direction:column;
  height:auto;
  min-height:0;
}

.card img{
  height:180px;
  object-fit:cover;
}

.card h3{
  padding:18px 20px 8px;
}

.card p{
  padding:0 20px 18px;
  color:#526174;
  line-height:1.5;
  margin-bottom:0;
}

.feature-bar{
  background:#071b2f;
  color:white;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  padding:34px 60px;
}

.feature-bar div{
  padding:20px;
  border-right:1px solid rgba(255,255,255,.15);
}

.feature-bar h3{
  font-size:1.1rem;
  margin-bottom:10px;
}

.feature-bar p{
  color:#c7d6df;
  line-height:1.5;
}
nav{
  background:rgba(7,27,47,.25);
  backdrop-filter:blur(10px);

  padding:18px 30px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,.08);
}
.hero-buttons{
  display:flex;
  gap:16px;
  margin-top:32px;
}

.primary-btn{
  background:#12bfd8;
  color:white;
  padding:16px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  color:white;
  padding:16px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  backdrop-filter:blur(10px);
}

.verified{
  background:linear-gradient(180deg,#071b2f,#09233f);
  color:white;
}

.verified h2,
.verified h3{
  color:white;
}

.verified .section-subtitle{
  color:#27b7c7;
}

.verified-description{
  max-width:680px;
  margin:18px auto 40px;
  color:rgba(255,255,255,.78);
  font-size:1.15rem;
  line-height:1.6;
}

.verified .timeline-item p,
.verified .timeline-item strong{
  color:rgba(255,255,255,.78);
}

.verified-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(39,183,199,.35);
  color:white;
}

.verified-card li,
.verified-card p{
  color:rgba(255,255,255,.82);
}

.comparison{
  padding:80px 8%;
  background:#071b2f;
  text-align:center;
}

.comparison-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.comparison-card{
  padding:40px;
  border-radius:24px;
  text-align:left;

  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(12px);
}

.comparison-card h3{
  color:white;
  margin-bottom:24px;
  font-size:1.6rem;
}

.comparison h2{
  color:#f8fbff;
}

.comparison-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.comparison-card li{
  color:rgba(255,255,255,.85);
  margin-bottom:18px;
  line-height:1.5;
}

.comparison-green{
  border:1px solid rgba(43,212,255,.35);
  box-shadow:0 0 40px rgba(43,212,255,.12);
}

.real-world{
  padding:80px 8%;
  background:#f7fbfc;
  text-align:center;
}

.real-world h2{
  font-size:3rem;
  color:#071b2f;
}

.real-world-grid{
  margin-top:60px;
  display:grid;
  gap:28px;
}

.real-card{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:34px;
  align-items:center;
  background:white;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  text-align:left;
}

.real-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.real-card div{
  padding:32px;
}

.real-card h3{
  color:#071b2f;
  font-size:1.8rem;
  margin-bottom:12px;
}

.real-card p{
  color:#526174;
  line-height:1.7;
  font-size:1.05rem;
}

.phone-steps-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.phone-step{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  padding:28px;
  text-align:left;
  color:white;
  display:flex;
  flex-direction:column;
}

.step-number{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#27b7c7;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:18px;
}

.phone-step h3{
  font-size:1.35rem;
  margin-bottom:10px;
}

.phone-step p{
  color:#d7e5ea;
  line-height:1.5;
  min-height:72px;
}

.phone-mockup{
  margin-top:24px;
  height:300px;
  border-radius:30px;
  background:#050f19;
  border:5px solid #111;
  padding:14px;
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.phone-top{
  width:70px;
  height:8px;
  border-radius:8px;
  background:#222;
  margin:0 auto 12px;
}

.map-screen,
.route-screen{
  height:170px;
  border-radius:18px;
  background:
    radial-gradient(circle at 40% 45%, rgba(39,183,199,.28), transparent 20%),
    linear-gradient(135deg,#17382f,#0b1722);
  position:relative;
}

.map-pin{
  width:26px;
  height:26px;
  background:#27b7c7;
  border-radius:50%;
  position:absolute;
  left:50%;
  top:45%;
  transform:translate(-50%,-50%);
  box-shadow:0 0 0 18px rgba(39,183,199,.18);
}

.phone-panel,
.arrival-panel{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  background:white;
  color:#071b2f;
  border-radius:16px;
  padding:14px;
}

.phone-panel strong,
.arrival-panel strong{
  display:block;
  margin-bottom:4px;
}

.phone-panel small,
.arrival-panel small{
  color:#526174;
}

.form-screen{
  background:white;
  border-radius:18px;
  padding:18px;
  height:230px;
}

.form-line{
  height:14px;
  background:#dbe7ec;
  border-radius:8px;
  margin-bottom:16px;
}

.form-line.wide{
  width:85%;
}

.form-line:not(.wide){
  width:65%;
}

.photo-row{
  display:flex;
  gap:12px;
  margin-top:26px;
}

.photo-row div{
  width:58px;
  height:58px;
  border-radius:10px;
  background:#b7dfe5;
}

.qr-box{
  width:130px;
  height:130px;
  margin:20px auto;
  background:
    linear-gradient(90deg,#111 50%,transparent 50%),
    linear-gradient(#111 50%,transparent 50%);
  background-size:18px 18px;
  background-color:white;
  border-radius:10px;
}

.share-option{
  background:white;
  color:#071b2f;
  padding:10px 14px;
  border-radius:10px;
  margin-bottom:10px;
  font-weight:700;
}

.route-line{
  position:absolute;
  width:140px;
  height:5px;
  background:#27b7c7;
  left:46px;
  top:88px;
  transform:rotate(-20deg);
  border-radius:8px;
}

.route-dot{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#27b7c7;
  position:absolute;
  box-shadow:0 0 0 10px rgba(39,183,199,.18);
}

.route-dot.start{
  left:42px;
  top:110px;
}

.route-dot.end{
  right:48px;
  top:58px;
}

.create-composite{
  position:relative;
  margin-top:24px;
  min-height:360px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.main-phone-img{
  width:78%;
  max-height:360px;
  object-fit:contain;
  filter:drop-shadow(0 22px 35px rgba(0,0,0,.45));
  border-radius:28px;
}

.floating-map-card{
  position:absolute;
  right:-4px;
  bottom:55px;
  width:50%;
  background:rgba(7,27,47,.92);
  border:1px solid rgba(39,183,199,.45);
  border-radius:18px;
  padding:8px;
  box-shadow:0 18px 35px rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
}

.floating-map-card img{
  width:100%;
  height:110px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

.floating-map-card span{
  display:block;
  color:white;
  font-size:.78rem;
  font-weight:800;
  margin-top:8px;
  text-align:center;
}

.phone-image {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.phone-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

.step-image-large {
  width: 100%;
  max-width: 700px;
  height: auto;

  border-radius: 20px;

  display: block;
  margin: 0 auto;
}

.share-secondary {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
}

.share-secondary img {
  width: 100%;
  max-width: 280px;
  height: auto;

  border-radius: 18px;

  transition: transform 0.3s ease;
}

.share-secondary img:hover {
  transform: translateY(-4px);
}

.phone-shot {
  width: 220px;
  height: auto;

  border-radius: 28px;

  display: block;
  margin: 0 auto;
}

.share-step{
  overflow:hidden;
}

.share-layout{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.share-main-img{
  width:100%;
  max-width:260px;
  height:auto;
  border-radius:18px;
  object-fit:contain;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.share-small-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  width:100%;
}

.share-small-row img{
  width:100%;
  height:150px;
  object-fit:cover;
  object-position:top;
  border-radius:16px;
  filter:drop-shadow(0 14px 24px rgba(0,0,0,.3));
}

.phone-step{
  display:flex;
  flex-direction:column;
}

.step2-image{
  max-width:280px !important;
}

.floating-map-card{
  bottom:55px;
}

.share-step{
  overflow:hidden;
}

.share-layout{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.share-main-img{
  width:100%;
  max-width:320px;
  height:auto;
  border-radius:18px;
  object-fit:contain;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.share-small-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  width:100%;
}

.share-small-row img{
  width:100%;
  height:150px;
  object-fit:cover;
  object-position:top;
  border-radius:16px;
  filter:drop-shadow(0 14px 24px rgba(0,0,0,.3));
}

.step-phone{
  width:100%;
  max-width:280px;
  height:auto;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

.floating-map-card{
  width:50%;
  bottom:55px;
}
.phone-step{
  min-height:680px;
}

.step-visual{
  height:340px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  margin-top:24px;
}

.step-phone{
  width:100%;
  max-width:300px;
  max-height:420px;
  object-fit:contain;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

.step1-visual .create-composite{
  margin-top:0;
  min-height:420px;
  width:100%;
}

.step1-visual .main-phone-img{
  width:72%;
  max-height:390px;
}

.step1-visual .floating-map-card{
  width:48%;
  right:2px;
  bottom:88px;
}

.share-layout{
  height:430px;
  justify-content:flex-start;
}

.share-main-img{
  max-width:300px;
}

.share-small-row img{
  height:130px;
}
.verified-showcase{
  margin:50px auto 0;
  max-width:420px;
}

.verified-showcase img{
  width:100%;
  height:auto;
  display:block;
  border-radius:28px;
  filter:drop-shadow(0 28px 55px rgba(0,0,0,.45));
}

.use-cases-section{
  padding:70px 60px 80px;
  background:#f7fbfc;
  text-align:center;
}

.use-cases-section h2{
  font-size:2.6rem;
  color:#071b2f;
}

.use-cases{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  padding:40px 0 0;
}

.use-cases .card{
  height:auto !important;
  min-height:0 !important;
}

.use-cases .card img{
  height:180px !important;
}

.use-cases .card h3{
  padding:18px 20px 8px;
}

.use-cases .card p{
  padding:0 20px 22px;
}
.pilot-access{
  padding:80px 60px;
  background:linear-gradient(180deg,#071b2f,#0b2535);
}

.pilot-card{
  max-width:1180px;
  margin:0 auto;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  padding:34px 42px;
  color:white;
  box-shadow:0 24px 60px rgba(0,0,0,.25);
}

.pilot-card h2{
  font-size:2.6rem;
  line-height:1.05;
  margin-bottom:18px;
}

.pilot-intro{
  color:#d7e5ea;
  font-size:1.15rem;
  line-height:1.6;
  margin-bottom:36px;
}

.pilot-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
}

.pilot-form label{
  display:block;
  color:#d7e5ea;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:18px 0 8px;
}

.pilot-form input{
  width:100%;
  padding:18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:white;
  font-size:1rem;
}

.device-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.device-option{
  display:flex !important;
  align-items:center;
  gap:12px;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  text-transform:none !important;
  letter-spacing:0 !important;
  margin:0 !important;
}

.device-option input{
  width:auto;
}

.device-option span{
  color:white;
  font-size:1.1rem;
  font-weight:800;
}

.pilot-form button{
  width:100%;
  margin-top:18px;
  padding:18px;
  border:0;
  border-radius:14px;
  background:#12bfd8;
  color:white;
  font-weight:900;
  font-size:1.05rem;
  cursor:pointer;
}

.form-note{
  margin-top:22px;
  color:#b9dbe0;
  line-height:1.5;
}

.info-box{
  border-radius:22px;
  padding:22px 24px;
  margin-bottom:22px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(39,183,199,.25);
}

.info-box h3{
  color:white;
  font-size:1.35rem;
  margin-bottom:14px;
}

.info-box h4{
  color:#27b7c7;
  font-size:1.6rem;
  margin-bottom:12px;
}

.info-box p,
.info-box li{
  color:#d7e5ea;
  line-height:1.5;
}

.info-box ul{
  list-style:none;
  margin-top:16px;
}

.info-box li{
  margin-bottom:10px;
}

.info-box li::before{
  content:"✓";
  color:#27b7c7;
  font-weight:900;
  margin-right:10px;
}
.site-footer{
  margin-top:0;
  padding:56px 30px;
  text-align:center;
  background:#071b2f;
  border-top:1px solid rgba(39,183,199,.22);
  color:rgba(255,255,255,.78);
}
.footer-symbol {
  font-size: 42px;
  color: #27b7c7;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(39, 183, 199, 0.35);
}

.footer-logo{
  font-size:2rem;
  font-weight:900;
  color:white;
  margin-bottom:10px;
}

.footer-tagline{
  color:#27b7c7;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.footer-description{
  color:rgba(255,255,255,.72);
  margin-bottom:24px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.footer-links a{
  color:rgba(255,255,255,.8);
  text-decoration:none;
}

.footer-links a:hover{
  color:#27b7c7;
}

.footer-copyright{
  color:rgba(255,255,255,.5);
  font-size:.9rem;
}

@media (max-width:1100px){
  .navbar{
    padding:22px 28px;
  }

  .address-fail-grid,
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

.nav-logo{
  height:320px;
  filter:drop-shadow(0 4px 18px rgba(0,0,0,.35));
}

  nav{
    gap:20px;
    padding:14px 22px;
  }

  .hero-content{
    padding-left:44px;
    max-width:560px;
  }

  .hero h1{
    font-size:3.2rem;
  }

  .hero h2{
    font-size:2.4rem;
  }

  .phone-steps-grid,
  .use-cases,
  .comparison-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:900px){
  .pilot-card-combined{
    grid-template-columns:1fr;
  }

  .pilot-demo-column{
    text-align:center;
  }

  .pilot-demo-column video{
   margin:24px auto 0;
  }
}
@media (max-width: 768px) {
  .hero {
    background-position: 72% center;
  }
}
  .site-footer {
    padding: 50px 24px;
  }

  .footer-logo {
    font-size: 1.7rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }



@media (max-width:700px){
  .navbar{
    padding:18px 22px;
  }

.nav-logo{
  height:70px;
  filter:drop-shadow(0 4px 18px rgba(0,0,0,.35));
}

  nav{
    display:none;
  }

    .nav-tagline{
    font-size:.78rem;
    letter-spacing:.14em;
  }

  .tagline{
    font-size:1.05rem;
  }

  .hero{
    height:auto;
    min-height:760px;
    align-items:flex-end;
    background-position:center;
    background-position: 72% center;
  }

  .hero-content{
    padding:0 24px 48px;
    max-width:100%;
  }

  .hero-demo-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:min(78vw, 280px);
    margin:24px auto 0;
  }

  .hero h1{
    font-size:2.7rem;
  }

  .hero h2{
    font-size:2rem;
  }

  .tagline{
    font-size:1.05rem;
  }

  .hero p{
    font-size:1rem;
    line-height:1.6;
  }

  .hero-buttons{
    flex-direction:column;
    gap:12px;
  }

  .pilot-demo-mini{
    grid-template-columns:1fr;
    text-align:center;
  }

  .pilot-demo-mini video{
    max-width:240px;
    margin:0 auto;
  }

  .primary-btn,
  .secondary-btn{
    text-align:center;
  }

  .steps,
  .verified,
  .comparison,
  .real-world,
  .use-cases-section{
    padding:56px 22px;
  }

  .phone-steps-grid,
  .use-cases,
  .comparison-grid,
  .feature-bar{
    grid-template-columns:1fr !important;
  }

  .phone-step{
    min-height:auto;
  }

  .step-visual{
    height:auto;
    min-height:340px;
  }

  .card{
    width:100%;
    max-width:420px;
    margin:0 auto;
    height:auto !important;
  }

  .card img{
    height:190px !important;
  }

  .use-cases-section h2,
  .verified h2,
  .comparison h2{
    font-size:2.1rem;
  }

  .pilot-access{
    padding:56px 22px;
  }

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

  .pilot-card h2{
    font-size:2.25rem;
  }

  .pilot-grid,
  .device-row{
    grid-template-columns:1fr;
  }

  .pilot-info{

    grid-template-columns:1fr;
  }

.demo-video-section{
  padding:42px 22px;
}

.demo-video-card{
  display:flex;
  flex-direction:column;
  text-align:center;
  gap:24px;
}

.demo-video-card h2{
  font-size:2.1rem;
}

.demo-video-card p{
    max-width:100%;
  }
.demo-video-card video{
  max-width:250px;
}
  .address-fail-section,
  .why-matters-section{
    padding:52px 22px;
  }

  .address-fail-section h2,
  .why-matters-section h2{
    font-size:2rem;
  }

  .address-fail-grid,
  .why-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
}