
:root{
  --bg:#05070b;
  --panel:#0e121b;
  --panel2:#151b26;
  --text:#f6f8ff;
  --muted:#aab6c9;
  --blue:#2f8cff;
  --cyan:#63e6ff;
  --purple:#8b5cff;
  --line:rgba(255,255,255,.11);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:-20%;
  background:
    radial-gradient(circle at 20% 15%,rgba(47,140,255,.28),transparent 28%),
    radial-gradient(circle at 80% 8%,rgba(99,230,255,.18),transparent 24%),
    radial-gradient(circle at 55% 95%,rgba(139,92,255,.14),transparent 30%);
  animation:bgMove 16s ease-in-out infinite alternate;
  z-index:-2;
}
@keyframes bgMove{
  from{transform:translate3d(-2%,0,0) scale(1)}
  to{transform:translate3d(2%,2%,0) scale(1.08)}
}
a{color:inherit;text-decoration:none}
.container{width:min(1160px,92%);margin:auto}
.nav{
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(5,7,11,.78);
  border-bottom:1px solid var(--line);
}
.nav-inner{min-height:72px;display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;gap:11px;align-items:center;font-weight:900}
.logo-mark{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;color:#00162c;font-weight:900;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  box-shadow:0 0 30px rgba(47,140,255,.5);
}
.nav-links{display:flex;gap:22px;align-items:center;color:var(--muted);font-size:15px}
.nav-links a:hover{color:#fff}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:13px 19px;border-radius:999px;background:white;color:#07111f;font-weight:800;
  border:1px solid rgba(255,255,255,.2);
}
.btn.secondary{background:rgba(255,255,255,.07);color:white;border:1px solid var(--line)}
.hero{padding:96px 0 74px;position:relative}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:44px;align-items:center}
.badge{
  display:inline-flex;padding:8px 13px;border:1px solid var(--line);border-radius:999px;
  color:var(--muted);background:rgba(255,255,255,.06);font-size:14px;
}
h1{font-size:clamp(42px,7vw,78px);line-height:.94;margin:18px 0}
.lead,.hero p{color:var(--muted);font-size:19px;line-height:1.7}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.visual{
  min-height:480px;border:1px solid var(--line);border-radius:38px;position:relative;overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.035));
  box-shadow:0 30px 90px rgba(0,0,0,.38);
}
.orbit{
  position:absolute;inset:35px;border:1px solid rgba(255,255,255,.12);border-radius:50%;
  animation:spin 18s linear infinite;
}
.orbit.two{inset:80px;animation-duration:12s;animation-direction:reverse}
@keyframes spin{to{transform:rotate(360deg)}}
.phone{
  position:absolute;width:205px;height:390px;border-radius:40px;right:74px;top:47px;
  border:10px solid #1e2430;background:linear-gradient(160deg,#222a38,#080a10 75%);
  box-shadow:0 50px 90px rgba(0,0,0,.60);
  animation:floatPhone 4.8s ease-in-out infinite;
}
.phone:before{
  content:"";position:absolute;top:12px;left:50%;transform:translateX(-50%);
  width:72px;height:8px;border-radius:12px;background:#050609
}
.phone:after{
  content:"";position:absolute;inset:45px 16px 18px;border-radius:26px;
  background:linear-gradient(145deg,rgba(47,140,255,.75),rgba(99,230,255,.2),rgba(255,255,255,.03));
}
@keyframes floatPhone{
  0%,100%{transform:translateY(0) rotate(-2deg)}
  50%{transform:translateY(-18px) rotate(2deg)}
}
.mini-card{
  position:absolute;left:30px;bottom:28px;width:260px;
  background:rgba(0,0,0,.42);border:1px solid var(--line);border-radius:22px;padding:18px;
  backdrop-filter:blur(12px);animation:slideUp 1s ease both;
}
.mini-card strong{display:block;font-size:28px}
.glow-dot{
  position:absolute;width:82px;height:82px;border-radius:50%;background:rgba(99,230,255,.35);filter:blur(8px);
  left:60px;top:95px;animation:pulse 3s ease-in-out infinite;
}
@keyframes pulse{50%{transform:scale(1.35);opacity:.45}}
@keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
.section{padding:74px 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:25px;margin-bottom:30px}
.section-head h2{font-size:clamp(30px,4vw,48px);margin:0}
.section-head p{color:var(--muted);line-height:1.7;max-width:560px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border:1px solid var(--line);border-radius:28px;padding:27px;
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
  animation:fadeIn .8s ease both;
}
.card:hover{transform:translateY(-8px);border-color:rgba(99,230,255,.35);box-shadow:0 30px 80px rgba(47,140,255,.12)}
.card h3{font-size:22px;margin-top:0}
.card p,.card li{color:var(--muted);line-height:1.72}
.icon{
  width:55px;height:55px;border-radius:18px;display:grid;place-items:center;font-size:25px;margin-bottom:18px;
  background:rgba(47,140,255,.16);border:1px solid rgba(47,140,255,.26)
}
@keyframes fadeIn{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:none}}
.brand-strip{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
}
.brand{
  padding:28px;border-radius:24px;background:rgba(255,255,255,.06);border:1px solid var(--line);text-align:center;
  font-size:22px;font-weight:800;letter-spacing:.2px;animation:brandPulse 5s ease-in-out infinite;
}
.brand:nth-child(2){animation-delay:.5s}.brand:nth-child(3){animation-delay:1s}.brand:nth-child(4){animation-delay:1.5s}
@keyframes brandPulse{50%{box-shadow:0 0 32px rgba(47,140,255,.12)}}
.band{
  background:linear-gradient(135deg,rgba(47,140,255,.25),rgba(99,230,255,.08));
  border:1px solid var(--line);border-radius:36px;padding:44px;display:flex;justify-content:space-between;align-items:center;gap:28px;
}
.page-hero{padding:74px 0 38px}
.page-hero h1{font-size:clamp(40px,6vw,66px)}
.table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--line);border-radius:24px;overflow:hidden}
.table th,.table td{padding:18px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.table th{background:rgba(255,255,255,.09)}
.table tr:last-child td{border-bottom:none}
.form input,.form textarea{
  width:100%;padding:15px 16px;border-radius:15px;border:1px solid var(--line);
  background:rgba(255,255,255,.07);color:white;margin-bottom:12px;font:inherit
}
.contact-box a{color:var(--cyan)}
.footer{padding:38px 0;border-top:1px solid var(--line);color:var(--muted)}
.footer-grid{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.small{font-size:14px;color:var(--muted)}
@media(max-width:880px){
  .hero-grid,.grid-3,.grid-2,.brand-strip{grid-template-columns:1fr}
  .nav-links{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;width:100%;padding-bottom:12px}.nav-inner{flex-direction:column;align-items:center;padding-top:12px}.nav-links a{font-size:13px;padding:7px 8px}.nav-links .btn{padding:8px 10px}
  .visual{min-height:400px}
  .phone{right:34px;width:170px;height:320px}
  .band{display:block}
}

.home-title{font-size:clamp(36px,5.4vw,62px)!important;line-height:1.02;}

.device-photo{position:absolute;right:15px;top:18px;width:86%;max-width:430px;height:auto;z-index:2;animation:floatPhone 4.8s ease-in-out infinite;filter:drop-shadow(0 35px 45px rgba(0,0,0,.45));}
.visual .phone{display:none;}
@media(max-width:880px){.device-photo{right:50%;transform:translateX(50%);top:28px;width:96%;max-width:360px;}.visual{min-height:360px}.mini-card{left:18px;right:18px;width:auto}.hero{padding-top:45px}.home-title{font-size:clamp(32px,9vw,46px)!important}.hero p{font-size:16px}.section{padding:50px 0}.section-head{display:block}.section-head h2{font-size:30px}.brand{padding:20px}.table{font-size:14px}.table th,.table td{padding:12px}.grid-2,.grid-3{gap:14px}}
@media(max-width:520px){.nav-links{gap:6px}.nav-links a{font-size:12px}.logo{font-size:15px}.logo-mark{width:34px;height:34px}.visual{min-height:330px}.device-photo{top:36px;width:105%}.mini-card{bottom:15px}.hero-actions .btn{width:100%}}

.iphone-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.iphone-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.035));
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.iphone-card:hover{
  transform:translateY(-8px);
  border-color:rgba(99,230,255,.35);
  box-shadow:0 30px 80px rgba(47,140,255,.13);
}
.iphone-img-wrap{
  min-height:230px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 45%,rgba(47,140,255,.22),transparent 45%),
    linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
}
.iphone-img-wrap img{
  width:72%;
  max-height:230px;
  object-fit:contain;
  filter:drop-shadow(0 24px 30px rgba(0,0,0,.45));
  animation:floatPhone 5.4s ease-in-out infinite;
}
.iphone-info{padding:20px}
.iphone-info h3{margin:0 0 10px;font-size:19px}
.iphone-info p{color:var(--muted);line-height:1.62;margin:0 0 14px;font-size:14.5px}
.tag{
  display:inline-flex;
  font-size:12px;
  color:#d7f7ff;
  border:1px solid rgba(99,230,255,.22);
  background:rgba(99,230,255,.07);
  border-radius:999px;
  padding:7px 10px;
}
.iphone-hero-visual .device-photo{max-width:440px}
@media(max-width:1050px){.iphone-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.iphone-grid{grid-template-columns:repeat(2,1fr)}.iphone-img-wrap{min-height:190px}.iphone-info{padding:16px}}
@media(max-width:520px){.iphone-grid{grid-template-columns:1fr}.iphone-img-wrap{min-height:220px}.iphone-img-wrap img{width:62%}}

/* Different homepage top style */
.home-hero-alt{
  padding:70px 0 50px;
  position:relative;
}
.home-alt-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:center;
}
.home-copy-panel{
  padding:34px;
  border:1px solid var(--line);
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
  box-shadow:0 26px 80px rgba(0,0,0,.25);
}
.home-copy-panel p{
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.home-image-panel{
  min-height:500px;
  position:relative;
  border-radius:36px;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 60% 30%,rgba(99,230,255,.16),transparent 36%),
    linear-gradient(135deg,rgba(47,140,255,.11),rgba(255,255,255,.035));
  box-shadow:0 30px 90px rgba(0,0,0,.32);
}
.home-image-panel img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  animation:slowZoom 8s ease-in-out infinite alternate;
}
@keyframes slowZoom{
  from{transform:scale(1.02)}
  to{transform:scale(1.08)}
}
.home-floating-note{
  position:absolute;
  display:grid;
  gap:4px;
  padding:15px 17px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(5,7,11,.72);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}
.home-floating-note strong{font-size:18px}
.home-floating-note span{font-size:13px;color:var(--muted)}
.top-note{top:26px;left:26px;animation:floatNote 4.5s ease-in-out infinite}
.bottom-note{right:26px;bottom:26px;animation:floatNote 5.2s ease-in-out infinite reverse}
@keyframes floatNote{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* Make navigation usable on phone browsers */
@media(max-width:880px){
  .nav{position:relative}
  .nav-inner{display:block;padding:14px 0}
  .logo{justify-content:center;margin-bottom:12px}
  .nav-links{
    display:flex!important;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    padding:0 4px;
  }
  .nav-links a{
    font-size:13px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
  }
  .nav-links .btn{padding:8px 10px;font-size:13px}
  .home-alt-grid{grid-template-columns:1fr;gap:22px}
  .home-copy-panel{padding:24px;border-radius:26px}
  .home-image-panel{min-height:360px;border-radius:26px}
  .home-title{font-size:clamp(32px,9vw,44px)!important}
  .home-copy-panel p{font-size:16px}
}
@media(max-width:520px){
  .home-hero-alt{padding:32px 0 30px}
  .home-image-panel{min-height:300px}
  .home-floating-note{padding:11px 13px}
  .home-floating-note strong{font-size:15px}
  .home-floating-note span{font-size:11px}
  .top-note{top:14px;left:14px}
  .bottom-note{right:14px;bottom:14px}
  .brand-strip{grid-template-columns:repeat(2,1fr)}
  .section{padding:48px 0}
}


/* Homepage clear redesign v2 */
.home-image-panel{
  background:linear-gradient(135deg,#eef7ff,#dbeafe 45%,#0f172a)!important;
  min-height:520px!important;
}
.home-image-panel img{
  object-fit:cover!important;
  opacity:1!important;
  animation:homeLineupZoom 9s ease-in-out infinite alternate!important;
}
@keyframes homeLineupZoom{
  from{transform:scale(1.00)}
  to{transform:scale(1.045)}
}
.home-copy-panel{
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.04))!important;
}
@media(max-width:880px){
  .home-image-panel{min-height:360px!important}
}
@media(max-width:520px){
  .home-image-panel{min-height:280px!important}
}


/* Clean homepage layout replacement */
.clean-home-hero{
  padding:62px 0 42px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
    radial-gradient(circle at 75% 18%,rgba(47,140,255,.18),transparent 34%);
}
.clean-home-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:44px;
  align-items:center;
}
.clean-home-copy{
  padding:10px 0;
}
.clean-title{
  font-size:clamp(38px,5.2vw,62px)!important;
  line-height:1.02!important;
  letter-spacing:-1.8px;
  margin:18px 0 18px;
}
.clean-lead{
  font-size:20px;
  line-height:1.62;
  color:#e7eefb;
  max-width:580px;
}
.clean-sub{
  color:var(--muted);
  font-size:16.5px;
  line-height:1.7;
  max-width:560px;
}
.clean-phone-display{
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 90px rgba(0,0,0,.32);
  background:#0f172a;
}
.clean-phone-display img{
  display:block;
  width:100%;
  height:auto;
}
.trust-strip{
  padding:8px 0 30px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.trust-grid div{
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  background:rgba(255,255,255,.055);
  padding:18px 20px;
}
.trust-grid strong{
  display:block;
  font-size:18px;
  color:white;
  margin-bottom:5px;
}
.trust-grid span{
  color:var(--muted);
  font-size:14px;
}
.clean-feature{
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.032))!important;
}
.clean-brands .brand{
  background:rgba(255,255,255,.045)!important;
}
.clean-cta{
  background:linear-gradient(135deg,rgba(47,140,255,.18),rgba(99,230,255,.06))!important;
}

@media(max-width:880px){
  .clean-home-hero{padding:36px 0 26px}
  .clean-home-grid{grid-template-columns:1fr;gap:24px}
  .clean-title{font-size:clamp(34px,9vw,46px)!important;letter-spacing:-1px}
  .clean-lead{font-size:17px}
  .trust-grid{grid-template-columns:1fr}
}
@media(max-width:520px){
  .clean-phone-display{border-radius:24px}
  .hero-actions .btn{width:100%;margin-bottom:8px}
}


/* Navigation fixed across all pages */
.nav-links{
  flex-wrap:wrap;
}
@media(max-width:880px){
  .nav-links{
    display:flex!important;
    flex-wrap:wrap!important;
    justify-content:center!important;
    gap:8px!important;
  }
  .nav-links a{
    display:inline-flex!important;
  }
}


/* Consistent clean iPhone page */
.iphone-clean-display{
  background:#0f172a!important;
}
.model-grid-clean{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.model-card-clean{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  transition:transform .25s ease,border-color .25s ease;
}
.model-card-clean:hover{
  transform:translateY(-6px);
  border-color:rgba(99,230,255,.32);
}
.model-img{
  min-height:220px;
  display:grid;
  place-items:center;
  background:radial-gradient(circle at 50% 45%,rgba(47,140,255,.18),transparent 48%);
}
.model-img img{
  width:68%;
  max-height:220px;
  object-fit:contain;
  filter:drop-shadow(0 20px 28px rgba(0,0,0,.4));
}
.model-copy{
  padding:18px;
}
.model-copy h3{
  margin:0 0 9px;
  font-size:18px;
}
.model-copy p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.6;
}
.model-copy span{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  color:#d7f7ff;
  background:rgba(99,230,255,.07);
  border:1px solid rgba(99,230,255,.22);
}
@media(max-width:1050px){.model-grid-clean{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.model-grid-clean{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){
  .model-grid-clean{grid-template-columns:1fr}
  .model-img{min-height:200px}
  .model-img img{width:58%}
}


/* Real iPhone photo replacements */
.real-photo-display{
  background:#0f172a!important;
}
.real-photo-display img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
}
.real-model-img{
  min-height:230px;
  overflow:hidden;
  background:#0f172a!important;
}
.real-model-img img{
  width:100%!important;
  height:230px!important;
  max-height:none!important;
  object-fit:cover!important;
  filter:none!important;
  display:block!important;
  border-radius:0!important;
}
.model-card-clean:hover .real-model-img img{
  transform:scale(1.04);
}
.real-model-img img{
  transition:transform .35s ease;
}
@media(max-width:880px){
  .real-photo-display img{min-height:320px}
}
@media(max-width:520px){
  .real-photo-display img{min-height:260px}
  .real-model-img{min-height:220px}
  .real-model-img img{height:220px!important}
}


/* Apple model lineup safe product cards */
.apple-lineup-grid{
  grid-template-columns:repeat(4,1fr);
}
.apple-line-card{
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03))!important;
}
.apple-model-img{
  min-height:245px!important;
  background:radial-gradient(circle at 50% 45%,rgba(47,140,255,.18),transparent 52%), #0f172a!important;
}
.apple-model-img img{
  width:100%!important;
  height:245px!important;
  object-fit:cover!important;
  filter:none!important;
}
.iphone-clean-display img,
.clean-phone-display img{
  width:100%;
  height:auto;
  display:block;
}
@media(max-width:1050px){.apple-lineup-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.apple-lineup-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.apple-lineup-grid{grid-template-columns:1fr}.apple-model-img img{height:230px!important}}


/* Imported iPhone model image layout */
.imported-hero-display{
  background:#0f172a!important;
  display:grid;
  place-items:center;
  padding:30px;
}
.imported-hero-display img{
  width:100%;
  max-height:520px;
  object-fit:contain;
  display:block;
}
.imported-model-grid{
  grid-template-columns:repeat(5,1fr);
}
.imported-model-card{
  text-align:center;
}
.imported-model-img{
  min-height:190px!important;
  background:radial-gradient(circle at 50% 45%,rgba(47,140,255,.16),transparent 55%), #0f172a!important;
  display:grid!important;
  place-items:center!important;
  padding:18px 12px!important;
}
.imported-model-img img{
  width:auto!important;
  height:155px!important;
  max-height:155px!important;
  object-fit:contain!important;
  filter:drop-shadow(0 18px 24px rgba(0,0,0,.36))!important;
}
.imported-model-card .model-copy h3{
  font-size:17px;
}
.imported-model-card .model-copy p{
  font-size:13.5px;
  min-height:88px;
}
@media(max-width:1150px){.imported-model-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:900px){.imported-model-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:650px){.imported-model-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:440px){.imported-model-grid{grid-template-columns:1fr}.imported-model-card .model-copy p{min-height:0}}


/* Fixed main real iPhone image collage */
.real-iphone-collage{
  position:relative;
  min-height:520px;
  background:
    radial-gradient(circle at 50% 38%,rgba(47,140,255,.26),transparent 48%),
    linear-gradient(135deg,#0b1220,#111827 55%,#020617)!important;
  display:grid;
  place-items:center;
  padding:34px;
  overflow:hidden;
}
.iphone-collage-stage{
  position:relative;
  width:100%;
  max-width:620px;
  height:390px;
}
.hero-phone{
  position:absolute;
  width:auto!important;
  height:255px!important;
  object-fit:contain!important;
  filter:drop-shadow(0 28px 28px rgba(0,0,0,.52))!important;
  animation:heroPhoneFloat 4.8s ease-in-out infinite;
}
.hp1{left:4%;top:72px;transform:rotate(-12deg);z-index:2}
.hp2{left:18%;top:35px;transform:rotate(-6deg);z-index:3}
.hp3{left:36%;top:8px;height:295px!important;z-index:5}
.hp4{left:54%;top:35px;transform:rotate(6deg);z-index:4}
.hp5{left:70%;top:72px;transform:rotate(12deg);z-index:2}
.hp6{left:43%;top:110px;height:230px!important;z-index:1;opacity:.92}
@keyframes heroPhoneFloat{
  0%,100%{margin-top:0}
  50%{margin-top:-12px}
}
.hero-image-caption{
  position:absolute;
  left:28px;
  bottom:28px;
  right:28px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(5,7,11,.72);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
}
.hero-image-caption strong{
  display:block;
  color:#fff;
  font-size:18px;
  margin-bottom:4px;
}
.hero-image-caption span{
  color:var(--muted);
  font-size:14px;
}
@media(max-width:880px){
  .real-iphone-collage{min-height:390px;padding:22px}
  .iphone-collage-stage{height:285px;max-width:460px}
  .hero-phone{height:190px!important}
  .hp3{height:220px!important}
  .hp6{height:170px!important}
  .hero-image-caption{left:18px;right:18px;bottom:18px}
}
@media(max-width:520px){
  .real-iphone-collage{min-height:330px;padding:16px}
  .iphone-collage-stage{height:230px}
  .hero-phone{height:150px!important}
  .hp3{height:175px!important;left:34%}
  .hp6{display:none}
  .hp1{left:0;top:72px}.hp2{left:16%;top:42px}.hp4{left:54%;top:42px}.hp5{left:72%;top:72px}
  .hero-image-caption strong{font-size:15px}
  .hero-image-caption span{font-size:12px}
}


/* Different homepage hero */
.home-mixed-collage{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:34px;
  background:
    radial-gradient(circle at 30% 30%,rgba(99,230,255,.22),transparent 40%),
    radial-gradient(circle at 80% 70%,rgba(47,140,255,.18),transparent 42%),
    linear-gradient(135deg,#0b1220,#111827 60%,#020617);
  display:grid;
  place-items:center;
  padding:34px;
}
.home-stage{
  position:relative;
  width:100%;
  max-width:700px;
  height:400px;
}
.home-device{
  position:absolute;
  object-fit:contain;
  filter:drop-shadow(0 28px 30px rgba(0,0,0,.45));
  animation:homeFloat 5s ease-in-out infinite;
}
.d1{left:4%;top:90px;height:220px;transform:rotate(-14deg)}
.d2{left:20%;top:20px;height:310px;z-index:5}
.d3{left:42%;top:70px;height:250px;z-index:4}
.d4{left:62%;top:10px;height:320px;z-index:6}
.d5{left:78%;top:100px;height:210px;transform:rotate(12deg)}
@keyframes homeFloat{
  0%,100%{margin-top:0}
  50%{margin-top:-10px}
}
.home-overlay-note{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(5,7,11,.74);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
}
.home-overlay-note strong{
  display:block;
  font-size:20px;
  color:#fff;
  margin-bottom:4px;
}
.home-overlay-note span{
  color:#cbd5e1;
  font-size:14px;
}
@media(max-width:880px){
  .home-mixed-collage{min-height:390px}
  .home-stage{height:280px}
  .d1{height:160px}
  .d2{height:230px}
  .d3{height:180px}
  .d4{height:240px}
  .d5{height:150px}
}
@media(max-width:520px){
  .home-mixed-collage{min-height:320px;padding:18px}
  .home-stage{height:210px}
  .d1{height:120px;left:0}
  .d2{height:175px;left:16%}
  .d3{height:135px;left:40%}
  .d4{height:180px;left:58%}
  .d5{display:none}
  .home-overlay-note{
    left:14px;
    right:14px;
    bottom:14px;
    padding:12px 14px;
  }
  .home-overlay-note strong{font-size:15px}
  .home-overlay-note span{font-size:12px}
}


/* Final DreamHost fixed layout with local images */
.clean-home-hero{padding:62px 0 42px}
.clean-home-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:44px;align-items:center}
.clean-title{font-size:clamp(38px,5.2vw,62px)!important;line-height:1.02!important;letter-spacing:-1.5px;margin:18px 0}
.clean-lead{font-size:20px;line-height:1.62;color:#e7eefb;max-width:580px}
.clean-sub{color:var(--muted);font-size:16.5px;line-height:1.7;max-width:560px}
.local-hero-photo{border-radius:34px;overflow:hidden;border:1px solid rgba(255,255,255,.10);box-shadow:0 30px 90px rgba(0,0,0,.32);background:#0f172a}
.local-hero-photo img{width:100%;height:520px;object-fit:cover;display:block}
.iphone-local-hero img{object-position:center center}
.trust-strip{padding:8px 0 30px}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.trust-grid div{border:1px solid rgba(255,255,255,.10);border-radius:20px;background:rgba(255,255,255,.055);padding:18px 20px}
.trust-grid strong{display:block;font-size:18px;color:white;margin-bottom:5px}
.trust-grid span{color:var(--muted);font-size:14px}
.local-model-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.local-model-card{overflow:hidden;border:1px solid rgba(255,255,255,.10);border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03));box-shadow:0 22px 60px rgba(0,0,0,.18)}
.local-model-img{height:250px;background:#0f172a;display:grid;place-items:center;padding:16px}
.local-model-img img{max-width:100%;max-height:220px;object-fit:contain;display:block;filter:drop-shadow(0 18px 24px rgba(0,0,0,.35))}
.local-model-copy{padding:18px}
.local-model-copy h3{margin:0 0 9px;font-size:18px}
.local-model-copy p{margin:0 0 12px;color:var(--muted);font-size:14.5px;line-height:1.6}
.local-model-copy span{display:inline-flex;padding:7px 10px;border-radius:999px;font-size:12px;color:#d7f7ff;background:rgba(99,230,255,.07);border:1px solid rgba(99,230,255,.22)}
.nav-links{flex-wrap:wrap}
@media(max-width:1050px){.local-model-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:880px){
 .nav{position:relative}.nav-inner{display:block;padding:14px 0}.logo{justify-content:center;margin-bottom:12px}
 .nav-links{display:flex!important;flex-wrap:wrap!important;justify-content:center!important;gap:8px!important}
 .nav-links a{display:inline-flex!important;font-size:13px;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08)}
 .clean-home-grid{grid-template-columns:1fr;gap:24px}.clean-title{font-size:clamp(34px,9vw,46px)!important}.clean-lead{font-size:17px}
 .local-hero-photo img{height:360px}.trust-grid{grid-template-columns:1fr}.local-model-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
 .local-hero-photo{border-radius:24px}.local-hero-photo img{height:280px}
 .local-model-grid{grid-template-columns:1fr}.hero-actions .btn{width:100%;margin-bottom:8px}
}


/* Samsung page */
.samsung-hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 35%,rgba(99,230,255,.22),transparent 48%),
    linear-gradient(135deg,#0b1220,#111827 60%,#020617);
  display:grid;
  place-items:center;
  padding:34px;
  box-shadow:0 30px 90px rgba(0,0,0,.32);
}
.samsung-hero-row{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  width:100%;
  padding-bottom:70px;
}
.samsung-hero-row img{
  height:245px;
  max-width:135px;
  object-fit:contain;
  filter:drop-shadow(0 26px 28px rgba(0,0,0,.48));
  animation:homeFloat 5s ease-in-out infinite;
}
.samsung-hero-row img:nth-child(2){height:285px}
.samsung-hero-row img:nth-child(3){height:300px}
.samsung-hero-row img:nth-child(4){height:250px}
.samsung-hero-note{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(5,7,11,.74);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
}
.samsung-hero-note strong{display:block;font-size:20px;color:#fff;margin-bottom:4px}
.samsung-hero-note span{color:#cbd5e1;font-size:14px}
.samsung-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.samsung-card{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03));
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  text-align:center;
}
.samsung-img{
  min-height:205px;
  background:radial-gradient(circle at 50% 45%,rgba(47,140,255,.16),transparent 55%),#0f172a;
  display:grid;
  place-items:center;
  padding:16px 10px;
}
.samsung-img img{
  height:165px;
  max-width:135px;
  object-fit:contain;
  filter:drop-shadow(0 18px 24px rgba(0,0,0,.36));
}
.samsung-copy{padding:18px}
.samsung-copy h3{margin:0 0 9px;font-size:17px}
.samsung-copy p{margin:0 0 12px;color:var(--muted);font-size:13.5px;line-height:1.6;min-height:86px}
.samsung-copy span{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  color:#d7f7ff;
  background:rgba(99,230,255,.07);
  border:1px solid rgba(99,230,255,.22);
}
.nav-links{flex-wrap:wrap}
@media(max-width:1150px){.samsung-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:900px){.samsung-grid{grid-template-columns:repeat(3,1fr)}.samsung-hero-row img{height:200px}.samsung-hero-row img:nth-child(2),.samsung-hero-row img:nth-child(3){height:230px}}
@media(max-width:650px){.samsung-grid{grid-template-columns:repeat(2,1fr)}.samsung-hero{min-height:390px}.samsung-hero-row{gap:8px}.samsung-hero-row img{height:150px}.samsung-hero-row img:nth-child(2),.samsung-hero-row img:nth-child(3){height:175px}}
@media(max-width:440px){.samsung-grid{grid-template-columns:1fr}.samsung-copy p{min-height:0}.samsung-hero-row img:nth-child(4),.samsung-hero-row img:nth-child(5){display:none}}


/* Samsung page same flow/layout as iPhone page */
.samsung-same-hero{
  background:
    radial-gradient(circle at 50% 38%,rgba(47,140,255,.26),transparent 48%),
    linear-gradient(135deg,#0b1220,#111827 55%,#020617)!important;
}
.samsung-stage{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  height:390px;
  width:100%;
  max-width:620px;
}
.samsung-stage .hero-phone{
  position:static!important;
  height:255px!important;
  max-width:120px;
  object-fit:contain!important;
  filter:drop-shadow(0 28px 28px rgba(0,0,0,.52))!important;
  animation:heroPhoneFloat 4.8s ease-in-out infinite;
}
.samsung-stage .hero-phone:nth-child(2),
.samsung-stage .hero-phone:nth-child(3){
  height:300px!important;
}
.samsung-stage .hero-phone:nth-child(4){
  height:270px!important;
}
.samsung-same-img img{
  height:155px!important;
  width:auto!important;
  max-width:135px!important;
  object-fit:contain!important;
}
.samsung-same-card .model-copy p{
  min-height:88px;
}
@media(max-width:880px){
  .samsung-stage{height:285px;gap:10px}
  .samsung-stage .hero-phone{height:185px!important;max-width:90px}
  .samsung-stage .hero-phone:nth-child(2),
  .samsung-stage .hero-phone:nth-child(3){height:220px!important}
  .samsung-stage .hero-phone:nth-child(4){height:200px!important}
}
@media(max-width:520px){
  .samsung-stage{height:230px;gap:6px}
  .samsung-stage .hero-phone{height:145px!important;max-width:70px}
  .samsung-stage .hero-phone:nth-child(2),
  .samsung-stage .hero-phone:nth-child(3){height:175px!important}
  .samsung-stage .hero-phone:nth-child(5),
  .samsung-stage .hero-phone:nth-child(6){display:none}
}


/* Final fixed hero picture layout for DreamHost */
.fixed-hero-picture{
  position:relative;
  min-height:520px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0f172a;
  box-shadow:0 30px 90px rgba(0,0,0,.32);
}
.fixed-hero-picture > img{
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.fixed-hero-overlay{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  padding:18px 22px;
  border-radius:22px;
  background:rgba(5,7,11,.74);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
}
.fixed-hero-overlay strong{
  display:block;
  font-size:21px;
  color:#fff;
  margin-bottom:5px;
}
.fixed-hero-overlay span{
  color:#d1d5db;
  font-size:14px;
}
.samsung-fixed-hero{
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 35%,rgba(99,230,255,.22),transparent 48%),
    linear-gradient(135deg,#0b1220,#111827 60%,#020617);
}
.samsung-fixed-stage{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:22px;
  width:100%;
  padding:40px 20px 100px;
}
.samsung-fixed-stage img{
  height:270px;
  max-width:145px;
  object-fit:contain;
  filter:drop-shadow(0 26px 28px rgba(0,0,0,.48));
}
.samsung-fixed-stage img:nth-child(1){height:310px}
.samsung-fixed-stage img:nth-child(2){height:285px}
.samsung-fixed-stage img:nth-child(3){height:275px}
@media(max-width:880px){
  .fixed-hero-picture{min-height:360px}
  .fixed-hero-picture > img{height:360px}
  .samsung-fixed-stage{gap:12px;padding:30px 12px 90px}
  .samsung-fixed-stage img{height:190px;max-width:95px}
  .samsung-fixed-stage img:nth-child(1){height:230px}
  .samsung-fixed-stage img:nth-child(2){height:210px}
  .samsung-fixed-stage img:nth-child(3){height:200px}
}
@media(max-width:520px){
  .fixed-hero-picture{min-height:280px;border-radius:24px}
  .fixed-hero-picture > img{height:280px}
  .fixed-hero-overlay{
    left:14px;
    right:14px;
    bottom:14px;
    padding:12px 14px;
  }
  .fixed-hero-overlay strong{font-size:15px}
  .fixed-hero-overlay span{font-size:12px}
  .samsung-fixed-stage{height:240px;padding:20px 8px 82px;gap:6px}
  .samsung-fixed-stage img{height:135px;max-width:70px}
  .samsung-fixed-stage img:nth-child(1){height:165px}
  .samsung-fixed-stage img:nth-child(2){height:150px}
  .samsung-fixed-stage img:nth-child(3){height:145px}
  .samsung-fixed-stage img:nth-child(5){display:none}
}


/* Better flowing Samsung hero */
.samsung-flow-hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 30%,rgba(0,153,255,.25),transparent 45%),
    linear-gradient(135deg,#0b1220,#111827 60%,#020617);
}
.samsung-flow-stage{
  position:relative;
  width:100%;
  max-width:680px;
  height:420px;
  margin:auto;
}
.samsung-flow-stage img{
  position:absolute;
  bottom:55px;
  object-fit:contain;
  filter:drop-shadow(0 30px 28px rgba(0,0,0,.45));
  animation:samsungFloat 5s ease-in-out infinite;
}
.sf1{
  left:0;
  height:250px;
  transform:rotate(-14deg);
}
.sf2{
  left:120px;
  height:320px;
  z-index:4;
}
.sf3{
  left:270px;
  height:295px;
  z-index:5;
}
.sf4{
  left:430px;
  height:260px;
  transform:rotate(10deg);
}
.sf5{
  right:0;
  height:235px;
  transform:rotate(16deg);
}
@keyframes samsungFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
@media(max-width:900px){
  .samsung-flow-hero{min-height:390px}
  .samsung-flow-stage{
    max-width:480px;
    height:300px;
  }
  .sf1{height:160px;left:0}
  .sf2{height:220px;left:80px}
  .sf3{height:205px;left:190px}
  .sf4{height:170px;left:300px}
  .sf5{height:150px;right:0}
}
@media(max-width:520px){
  .samsung-flow-hero{
    min-height:300px;
    border-radius:24px;
  }
  .samsung-flow-stage{
    max-width:320px;
    height:220px;
  }
  .samsung-flow-stage img{
    bottom:65px;
  }
  .sf1{height:105px;left:0}
  .sf2{height:145px;left:48px}
  .sf3{height:138px;left:118px}
  .sf4{height:110px;left:196px}
  .sf5{display:none}
}


/* Fixed navigation: Samsung link visible on every page */
.nav-links{
  flex-wrap:wrap;
}
@media(max-width:880px){
  .nav{
    position:relative;
  }
  .nav-inner{
    display:block;
    padding:14px 0;
  }
  .logo{
    justify-content:center;
    margin-bottom:12px;
  }
  .nav-links{
    display:flex!important;
    flex-wrap:wrap!important;
    justify-content:center!important;
    gap:8px!important;
  }
  .nav-links a{
    display:inline-flex!important;
    font-size:13px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
  }
}


/* Samsung mobile browser fix */
@media(max-width:880px){
  .samsung-flow-hero,
  .samsung-fixed-hero,
  .samsung-same-hero{
    min-height:380px!important;
    border-radius:24px!important;
    padding:18px!important;
  }

  .samsung-flow-stage,
  .samsung-fixed-stage,
  .samsung-stage{
    width:100%!important;
    max-width:420px!important;
    height:260px!important;
    margin:0 auto!important;
    display:flex!important;
    align-items:flex-end!important;
    justify-content:center!important;
    gap:8px!important;
  }

  .samsung-flow-stage img,
  .samsung-fixed-stage img,
  .samsung-stage img{
    position:static!important;
    height:175px!important;
    max-width:76px!important;
    object-fit:contain!important;
    transform:none!important;
    filter:drop-shadow(0 16px 18px rgba(0,0,0,.45))!important;
  }

  .samsung-flow-stage img:nth-child(1),
  .samsung-fixed-stage img:nth-child(1),
  .samsung-stage img:nth-child(1){
    height:205px!important;
  }

  .samsung-flow-stage img:nth-child(2),
  .samsung-fixed-stage img:nth-child(2),
  .samsung-stage img:nth-child(2){
    height:190px!important;
  }

  .samsung-flow-stage img:nth-child(5),
  .samsung-fixed-stage img:nth-child(5),
  .samsung-stage img:nth-child(5){
    display:none!important;
  }

  .samsung-hero-note,
  .fixed-hero-overlay,
  .hero-image-caption{
    left:14px!important;
    right:14px!important;
    bottom:14px!important;
    padding:12px 14px!important;
    border-radius:16px!important;
  }

  .samsung-hero-note strong,
  .fixed-hero-overlay strong,
  .hero-image-caption strong{
    font-size:15px!important;
  }

  .samsung-hero-note span,
  .fixed-hero-overlay span,
  .hero-image-caption span{
    font-size:12px!important;
  }

  .samsung-grid,
  .imported-model-grid,
  .model-grid-clean{
    grid-template-columns:repeat(2,1fr)!important;
    gap:14px!important;
  }

  .samsung-img,
  .imported-model-img{
    min-height:170px!important;
    padding:12px!important;
  }

  .samsung-img img,
  .imported-model-img img,
  .samsung-same-img img{
    height:135px!important;
    max-width:110px!important;
    object-fit:contain!important;
  }

  .samsung-copy,
  .model-copy{
    padding:14px!important;
  }

  .samsung-copy h3,
  .model-copy h3{
    font-size:15px!important;
  }

  .samsung-copy p,
  .model-copy p{
    font-size:12.5px!important;
    min-height:0!important;
  }
}

@media(max-width:480px){
  .samsung-grid,
  .imported-model-grid,
  .model-grid-clean{
    grid-template-columns:1fr!important;
  }

  .samsung-flow-hero,
  .samsung-fixed-hero,
  .samsung-same-hero{
    min-height:330px!important;
  }

  .samsung-flow-stage,
  .samsung-fixed-stage,
  .samsung-stage{
    height:220px!important;
    gap:5px!important;
  }

  .samsung-flow-stage img,
  .samsung-fixed-stage img,
  .samsung-stage img{
    height:135px!important;
    max-width:58px!important;
  }

  .samsung-flow-stage img:nth-child(1),
  .samsung-fixed-stage img:nth-child(1),
  .samsung-stage img:nth-child(1){
    height:160px!important;
  }

  .samsung-flow-stage img:nth-child(4),
  .samsung-fixed-stage img:nth-child(4),
  .samsung-stage img:nth-child(4),
  .samsung-flow-stage img:nth-child(5),
  .samsung-fixed-stage img:nth-child(5),
  .samsung-stage img:nth-child(5){
    display:none!important;
  }
}



/* Hover Wireless rebrand theme */
:root{
  --bg:#04070d!important;
  --panel:#0b1220!important;
  --panel2:#111827!important;
  --text:#f8fafc!important;
  --muted:#aab6c9!important;
  --blue:#1978ff!important;
  --cyan:#63e6ff!important;
  --line:rgba(255,255,255,.12)!important;
}
body{
  background:
    radial-gradient(circle at 18% 0%,rgba(25,120,255,.24),transparent 34%),
    radial-gradient(circle at 85% 8%,rgba(99,230,255,.12),transparent 28%),
    #04070d!important;
}
.logo{
  gap:12px!important;
}
.logo img{
  width:48px!important;
  height:48px!important;
  object-fit:contain!important;
  display:block!important;
}
.logo .logo-text{
  font-weight:900!important;
  letter-spacing:.2px!important;
}
.logo-mark{
  background:linear-gradient(135deg,#1978ff,#63e6ff)!important;
}
.btn{
  background:linear-gradient(135deg,#ffffff,#e7f1ff)!important;
  color:#06111f!important;
}
.btn.secondary{
  background:rgba(255,255,255,.07)!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.14)!important;
}
.badge{
  border-color:rgba(99,230,255,.22)!important;
  background:rgba(25,120,255,.09)!important;
  color:#cfeeff!important;
}
.card,
.hero-card,
.band{
  border-color:rgba(255,255,255,.12)!important;
  box-shadow:0 24px 70px rgba(0,0,0,.24)!important;
}
.icon{
  background:rgba(25,120,255,.18)!important;
  border:1px solid rgba(99,230,255,.20)!important;
}
.hero-caption,
.home-flow-caption,
.homepage-hero-caption-fixed{
  background:linear-gradient(135deg,#04070d,#0b1220)!important;
}
.footer{
  background:#04070d!important;
}
@media(max-width:880px){
  .logo img{
    width:44px!important;
    height:44px!important;
  }
}


/* Hover Wireless previous dark style, new layout with real pictures */
body{
  background:
    radial-gradient(circle at 15% 0%,rgba(47,140,255,.22),transparent 30%),
    radial-gradient(circle at 88% 4%,rgba(99,230,255,.13),transparent 27%),
    #05070b!important;
  color:#f8fafc!important;
}
.nav{
  background:rgba(5,7,11,.86)!important;
  border-bottom:1px solid rgba(255,255,255,.11)!important;
}
.split-hero{
  padding:76px 0 48px;
}
.split-hero-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:42px;
  align-items:center;
}
.split-copy{
  padding:18px 0;
}
.split-copy h1{
  font-size:clamp(42px,6.5vw,78px)!important;
  line-height:.95!important;
  letter-spacing:-2px!important;
  margin:18px 0!important;
}
.split-copy .lead{
  color:#dce7f5!important;
  font-size:20px!important;
  line-height:1.68!important;
}
.split-copy .sub{
  color:#9fb0c4!important;
  font-size:16.5px!important;
  line-height:1.7!important;
}
.split-device-showcase{
  position:relative;
  min-height:520px;
  border-radius:38px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 50% 35%,rgba(47,140,255,.28),transparent 48%),
    linear-gradient(135deg,#0b1220,#111827 60%,#020617);
  box-shadow:0 34px 100px rgba(0,0,0,.36);
  display:grid;
  place-items:center;
  padding:34px;
}
.device-strip{
  width:100%;
  min-height:360px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:20px;
  padding-bottom:86px;
}
.device-strip img{
  height:245px;
  max-width:135px;
  object-fit:contain;
  filter:drop-shadow(0 28px 28px rgba(0,0,0,.48));
  animation:hwFloat 5s ease-in-out infinite;
}
.device-strip img:nth-child(2),
.device-strip img:nth-child(4){
  height:300px;
}
.device-strip img:nth-child(3){
  height:330px;
}
.device-strip img:nth-child(5){
  height:265px;
}
@keyframes hwFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.showcase-label{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(5,7,11,.78);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
}
.showcase-label strong{
  display:block;
  font-size:21px;
  color:#ffffff;
  margin-bottom:5px;
}
.showcase-label span{
  color:#d1d5db;
  font-size:14px;
}
.dark-trust{
  padding:10px 0 28px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.trust-grid div{
  background:rgba(255,255,255,.055)!important;
  border:1px solid rgba(255,255,255,.11)!important;
  border-radius:20px!important;
  padding:18px 20px!important;
}
.trust-grid strong{
  display:block;
  color:#fff;
  font-size:18px;
  margin-bottom:5px;
}
.trust-grid span{
  color:#aab6c9;
  font-size:14px;
}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035))!important;
  border:1px solid rgba(255,255,255,.12)!important;
}
.model-img,
.imported-model-img,
.samsung-img{
  background:radial-gradient(circle at 50% 45%,rgba(47,140,255,.18),transparent 55%),#0f172a!important;
}
@media(max-width:960px){
  .split-hero-grid{grid-template-columns:1fr}
  .split-device-showcase{min-height:410px}
  .device-strip{min-height:290px;gap:10px}
  .device-strip img{height:185px;max-width:90px}
  .device-strip img:nth-child(2),
  .device-strip img:nth-child(4){height:220px}
  .device-strip img:nth-child(3){height:235px}
  .trust-grid{grid-template-columns:1fr}
}
@media(max-width:520px){
  .split-hero{padding:38px 0 28px}
  .split-copy h1{font-size:38px!important}
  .split-device-showcase{min-height:330px;border-radius:24px;padding:18px}
  .device-strip{min-height:225px;gap:6px;padding-bottom:76px}
  .device-strip img{height:130px;max-width:60px}
  .device-strip img:nth-child(2),
  .device-strip img:nth-child(4){height:155px}
  .device-strip img:nth-child(3){height:165px}
  .device-strip img:nth-child(n+5){display:none}
  .showcase-label{left:14px;right:14px;bottom:14px;padding:12px 14px}
  .showcase-label strong{font-size:15px}
  .showcase-label span{font-size:12px}
}



/* Hover Wireless distinct color refresh - graphite, emerald, electric blue */
:root{
  --hw-bg:#060b12!important;
  --hw-panel:#101820!important;
  --hw-card:#14202b!important;
  --hw-emerald:#19d3a2!important;
  --hw-blue:#2f7cff!important;
  --hw-gold:#f6c762!important;
  --hw-text:#f8fbff!important;
  --hw-muted:#a8b5c4!important;
}

body{
  background:
    radial-gradient(circle at 12% 0%,rgba(25,211,162,.18),transparent 30%),
    radial-gradient(circle at 88% 8%,rgba(47,124,255,.16),transparent 28%),
    linear-gradient(180deg,#060b12,#101820 55%,#060b12)!important;
  color:var(--hw-text)!important;
}

.nav{
  background:rgba(6,11,18,.90)!important;
  border-bottom:1px solid rgba(25,211,162,.18)!important;
}

.logo-mark{
  background:linear-gradient(135deg,var(--hw-emerald),var(--hw-blue))!important;
  color:#061018!important;
}

.logo span,
.logo .logo-text{
  color:#ffffff!important;
}

.nav-links a{
  color:#b7c4d2!important;
}

.nav-links a:hover{
  color:#ffffff!important;
  background:rgba(25,211,162,.10)!important;
}

.btn{
  background:linear-gradient(135deg,var(--hw-emerald),var(--hw-blue))!important;
  color:#051018!important;
  box-shadow:0 16px 40px rgba(25,211,162,.18)!important;
}

.btn.secondary{
  background:rgba(255,255,255,.06)!important;
  color:#ffffff!important;
  border:1px solid rgba(25,211,162,.22)!important;
  box-shadow:none!important;
}

.badge{
  color:#d9fff5!important;
  background:rgba(25,211,162,.10)!important;
  border:1px solid rgba(25,211,162,.25)!important;
}

.split-device-showcase,
.hero-card,
.fixed-hero-picture,
.home-flow-image-card{
  background:
    radial-gradient(circle at 50% 35%,rgba(25,211,162,.18),transparent 48%),
    linear-gradient(135deg,#101820,#14202b 60%,#060b12)!important;
  border:1px solid rgba(25,211,162,.18)!important;
  box-shadow:0 34px 100px rgba(0,0,0,.38)!important;
}

.showcase-label,
.hero-caption,
.home-flow-caption,
.fixed-hero-overlay{
  background:rgba(6,11,18,.82)!important;
  border:1px solid rgba(25,211,162,.18)!important;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.028))!important;
  border:1px solid rgba(25,211,162,.14)!important;
  box-shadow:0 22px 60px rgba(0,0,0,.24)!important;
}

.card:hover{
  border-color:rgba(25,211,162,.34)!important;
  transform:translateY(-5px)!important;
}

.icon{
  background:linear-gradient(135deg,rgba(25,211,162,.18),rgba(47,124,255,.12))!important;
  border:1px solid rgba(25,211,162,.22)!important;
}

.model-img,
.imported-model-img,
.samsung-img{
  background:
    radial-gradient(circle at 50% 42%,rgba(25,211,162,.14),transparent 52%),
    #101820!important;
}

.tag{
  background:rgba(25,211,162,.10)!important;
  color:#d9fff5!important;
  border:1px solid rgba(25,211,162,.22)!important;
}

.band{
  background:linear-gradient(135deg,rgba(25,211,162,.22),rgba(47,124,255,.16))!important;
  border:1px solid rgba(25,211,162,.20)!important;
}

.footer{
  background:#060b12!important;
  border-top:1px solid rgba(25,211,162,.14)!important;
}



/* Hover Wireless soft light redesign */
:root{
  --soft-bg:#f7fbff!important;
  --soft-cream:#fbf7ef!important;
  --soft-mint:#eafaf5!important;
  --soft-blue:#eaf4ff!important;
  --soft-ink:#223044!important;
  --soft-muted:#66788f!important;
  --soft-accent:#2b8cff!important;
  --soft-green:#20b486!important;
  --soft-line:#d9e7f3!important;
}

body{
  background:
    linear-gradient(180deg,#f7fbff 0%,#fbf7ef 48%,#f5fbf8 100%)!important;
  color:var(--soft-ink)!important;
}

.nav{
  background:rgba(255,255,255,.90)!important;
  border-bottom:1px solid var(--soft-line)!important;
  box-shadow:0 8px 28px rgba(34,48,68,.06)!important;
}

.logo span,
.logo .logo-text{
  color:var(--soft-ink)!important;
}

.logo-mark{
  background:linear-gradient(135deg,#bde7ff,#c9f4e7)!important;
  color:#1f4b63!important;
}

.nav-links a{
  color:#607286!important;
  font-weight:500!important;
}

.nav-links a:hover{
  color:#1f4b63!important;
  background:#edf7ff!important;
}

.btn{
  background:#223044!important;
  color:#ffffff!important;
  box-shadow:0 10px 26px rgba(34,48,68,.12)!important;
  font-weight:600!important;
  border-radius:14px!important;
}

.btn.secondary{
  background:#ffffff!important;
  color:#223044!important;
  border:1px solid var(--soft-line)!important;
  box-shadow:none!important;
}

.soft-home-hero{
  padding:70px 0 44px;
}

.soft-home-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:center;
}

.soft-kicker{
  display:inline-flex;
  color:#2b8cff;
  background:#eaf4ff;
  border:1px solid #d4eaff;
  padding:8px 13px;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
}

.soft-home-copy h1{
  font-size:clamp(38px,5vw,62px)!important;
  line-height:1.08!important;
  letter-spacing:-1px!important;
  margin:20px 0 18px!important;
  font-weight:400!important;
  color:#223044!important;
}

.soft-lead{
  font-size:20px;
  line-height:1.7;
  color:#465a70;
  max-width:620px;
}

.soft-sub{
  color:#718295;
  font-size:16.5px;
  line-height:1.7;
}

.soft-device-panel{
  min-height:500px;
  border-radius:42px;
  background:
    radial-gradient(circle at 70% 20%,#dff3ff,transparent 42%),
    linear-gradient(135deg,#ffffff,#eef8ff 52%,#f4fbf7);
  border:1px solid #d9e7f3;
  box-shadow:0 28px 80px rgba(34,48,68,.12);
  display:grid;
  place-items:center;
  padding:34px;
  position:relative;
  overflow:hidden;
}

.soft-device-strip{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:38px;
  width:100%;
}

.soft-device-strip img{
  height:255px;
  max-width:145px;
  object-fit:contain;
  filter:drop-shadow(0 22px 24px rgba(34,48,68,.18));
}

.soft-device-strip img:nth-child(2){
  height:315px;
}

.soft-panel-caption{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  padding:16px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.82);
  border:1px solid #d9e7f3;
  color:#465a70;
  text-align:center;
}

.soft-info-row{
  padding:8px 0 26px;
}

.soft-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.soft-info-grid div{
  background:rgba(255,255,255,.78);
  border:1px solid #d9e7f3;
  border-radius:24px;
  padding:22px;
  box-shadow:0 16px 42px rgba(34,48,68,.07);
}

.soft-info-grid span{
  color:#2b8cff;
  font-size:13px;
}

.soft-info-grid strong{
  display:block;
  color:#223044;
  margin:8px 0 6px;
  font-weight:500;
  font-size:18px;
}

.soft-info-grid p{
  color:#718295;
  margin:0;
}

.section-head h2,
.soft-cta h2{
  color:#223044!important;
  font-weight:400!important;
}

.section-head p,
.card p,
.card li{
  color:#66788f!important;
}

.card,
.soft-card{
  background:rgba(255,255,255,.82)!important;
  border:1px solid #d9e7f3!important;
  box-shadow:0 18px 48px rgba(34,48,68,.07)!important;
}

.card h3{
  color:#223044!important;
  font-weight:500!important;
}

.icon{
  background:#eaf4ff!important;
  color:#2b8cff!important;
  border:1px solid #d4eaff!important;
}

.model-img,
.imported-model-img,
.samsung-img{
  background:linear-gradient(135deg,#f7fbff,#edf8f3)!important;
}

.showcase-label,
.hero-caption,
.fixed-hero-overlay{
  background:rgba(255,255,255,.88)!important;
  color:#223044!important;
  border:1px solid #d9e7f3!important;
}

.showcase-label strong,
.hero-caption strong,
.fixed-hero-overlay strong{
  color:#223044!important;
  font-weight:500!important;
}

.showcase-label span,
.hero-caption span,
.fixed-hero-overlay span{
  color:#66788f!important;
}

.split-device-showcase,
.hero-card,
.fixed-hero-picture{
  background:linear-gradient(135deg,#ffffff,#eef8ff 52%,#f4fbf7)!important;
  border:1px solid #d9e7f3!important;
  box-shadow:0 28px 80px rgba(34,48,68,.12)!important;
}

.soft-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  background:#ffffff;
  border:1px solid #d9e7f3;
  border-radius:34px;
  padding:40px;
  box-shadow:0 20px 60px rgba(34,48,68,.08);
}

.footer{
  background:#223044!important;
  color:#e8f3ff!important;
}

.footer .small{
  color:#c6d6e6!important;
}

@media(max-width:900px){
  .soft-home-wrap,
  .soft-info-grid{
    grid-template-columns:1fr;
  }
  .soft-device-panel{
    min-height:380px;
  }
  .soft-device-strip img{
    height:190px;
  }
  .soft-device-strip img:nth-child(2){
    height:235px;
  }
}

@media(max-width:520px){
  .soft-home-hero{
    padding:38px 0 28px;
  }
  .soft-home-copy h1{
    font-size:36px!important;
  }
  .soft-device-panel{
    min-height:300px;
    border-radius:26px;
    padding:18px;
  }
  .soft-device-strip{
    gap:12px;
  }
  .soft-device-strip img{
    height:135px;
  }
  .soft-device-strip img:nth-child(2){
    height:165px;
  }
  .soft-panel-caption{
    left:14px;
    right:14px;
    bottom:14px;
    padding:12px;
    font-size:12px;
  }
  .soft-cta{
    display:block;
    padding:24px;
  }
}



/* Readability improvement */
body{
    color:#1f2937 !important;
}

.soft-home-copy h1{
    color:#111827 !important;
    font-weight:600 !important;
    letter-spacing:-0.5px !important;
}

.soft-lead{
    color:#374151 !important;
    font-weight:500 !important;
}

.soft-sub{
    color:#4b5563 !important;
    font-weight:500 !important;
}

.section-head h2,
.soft-cta h2,
.card h3,
h2,
h3{
    color:#111827 !important;
    font-weight:600 !important;
}

.section-head p,
.card p,
.card li,
.showcase-label span,
.hero-caption span,
.soft-info-grid p{
    color:#4b5563 !important;
}

.soft-info-grid strong{
    color:#111827 !important;
    font-weight:600 !important;
}

.nav-links a{
    color:#1f2937 !important;
    font-weight:600 !important;
}

.logo,
.logo span,
.logo-text{
    color:#111827 !important;
    font-weight:700 !important;
}

.showcase-label,
.hero-caption,
.soft-panel-caption{
    background:rgba(255,255,255,.96) !important;
    color:#111827 !important;
}

.showcase-label strong,
.hero-caption strong{
    color:#111827 !important;
    font-weight:700 !important;
}

.btn{
    font-weight:700 !important;
}

.footer{
    background:#1f2937 !important;
}

.footer,
.footer strong{
    color:#ffffff !important;
}

.footer .small{
    color:#d1d5db !important;
}


/* Force visible text on iPhone and Samsung pages */
body.iphone-page,
body.samsung-page{
    color:#1f2937 !important;
}

body.iphone-page h1,
body.iphone-page h2,
body.iphone-page h3,
body.iphone-page strong,
body.samsung-page h1,
body.samsung-page h2,
body.samsung-page h3,
body.samsung-page strong{
    color:#111827 !important;
}

body.iphone-page p,
body.iphone-page span,
body.iphone-page li,
body.samsung-page p,
body.samsung-page span,
body.samsung-page li{
    color:#374151 !important;
}

body.iphone-page .badge,
body.samsung-page .badge{
    color:#1f2937 !important;
    background:#e5f3ff !important;
}

body.iphone-page .tag,
body.samsung-page .tag{
    color:#1f2937 !important;
    background:#e8fff5 !important;
}

body.iphone-page .showcase-label,
body.iphone-page .hero-caption,
body.samsung-page .showcase-label,
body.samsung-page .hero-caption{
    background:#ffffff !important;
}

body.iphone-page .showcase-label span,
body.iphone-page .hero-caption span,
body.samsung-page .showcase-label span,
body.samsung-page .hero-caption span{
    color:#374151 !important;
}


/* User requested softer grey intro text on iPhone and Samsung pages */
body.iphone-page .lead,
body.samsung-page .lead{
    color:#4B5563 !important;
    font-weight:500 !important;
}
