/* =========================================
   StrikeGuard - Fly Page (Full CSS)
========================================= */

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { padding-top: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* Variables */
:root{
  --accent:#e11d48;
  --accentHover:#be123c;

  --ink:#0f172a;
  --text:#ffffff;
  --muted:rgba(255,255,255,.82);
  --mutedInk: rgba(15,23,42,.72);

  --border: rgba(15,23,42,0.10);
  --radius: 16px;
}

/* Container + hidden H1 */
.container{ width: min(1200px, 92%); margin: 0 auto; }

.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  clip-path: inset(50%) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Top Bar */
.top-bar{
  background: #e63946;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  padding: 8px 12px;
  position: relative;
  z-index: 10000;
}
.top-bar__inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.top-bar__item{ color: rgba(255,255,255,.88); }
.top-bar__item strong{ color: #fff; font-weight: 900; }
.top-bar__divider{ opacity: .55; }
.top-bar__call{
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .15s ease, background .15s ease;
}
.top-bar__call:hover{ background: rgba(255,255,255,.16); transform: translateY(-1px); }

@media (max-width: 520px){
  .top-bar__divider{ display:none; }
  .top-bar__inner{ gap:6px; }
}

/* Header */
header{
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 64px;
  padding: 0 14px;
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.logo{ display:flex; align-items:center; min-width:0; }
.logo img{ height:46px; width:auto; max-width:180px; object-fit:contain; display:block; }

/* Hamburger */
.hamburger{
  display:none;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  font-size:22px;
  background:transparent;
  border:none;
  cursor:pointer;
  z-index:7;
  padding:0;
}

/* Overlay */
.overlay{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.4);
  z-index:1;
  opacity:0;
  transition: opacity .3s ease;
}
.overlay.active{ display:block; opacity:1; }

/* Nav */
.main-nav > ul.nav-menu{
  list-style:none;
  display:flex;
  gap:20px;
  justify-content:center;
  align-items:center;
}
.main-nav > ul.nav-menu > li{ position:relative; }

.main-nav > ul.nav-menu > li > a{
  text-decoration:none;
  color:#333;
  font-weight:bold;
  display:block;
  padding:16px 24px;
  transition: color .2s ease;
}
.main-nav > ul.nav-menu > li > a:hover{ color:#e63946; }
.main-nav a[aria-current="page"]{ color:#e63946; }

/* Dropdown */
.main-nav .has-dropdown{ position:relative; }
.main-nav .services-summary{
  display:block;
  padding:16px 24px;
  color:#333;
  font-weight:bold;
  cursor:pointer;
  user-select:none;
}
.main-nav .services-summary::-webkit-details-marker{ display:none; }
.main-nav .services-summary::marker { content:""; }

.main-nav .services-details > ul.dropdown{
  display:none;
  list-style:none;
  margin:0;
  padding:8px 0;
}
.main-nav .services-details[open] > ul.dropdown{ display:block !important; }

@media (min-width: 769px){
  .main-nav .services-details > ul.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    border-radius:8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index:9999;
  }
  .main-nav .has-dropdown:hover .services-details > ul.dropdown{ display:block; }
  .main-nav .dropdown li a{
    display:block;
    padding:10px 16px;
    text-decoration:none;
    color:#333;
    font-weight:600;
  }
  .main-nav .dropdown li a:hover{ background: rgba(0,0,0,0.06); }
}

/* Mobile drawer */
@media (max-width: 768px){
  header{ display:block; padding:0 12px; }
  .logo{
    position:absolute;
    left:12px;
    top:50%;
    transform: translateY(-50%);
    z-index:6;
  }
  .logo img{ height:76px; max-width:150px; }
  .hamburger{
    position:absolute;
    right:12px;
    top:50%;
    transform: translateY(-50%);
    z-index:7;
    display:grid;
  }

  .main-nav > ul.nav-menu{
    flex-direction:column;
    background:#333;
    position:fixed;
    top:64px;
    right:0;
    width:220px;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    z-index:2;
    padding: 8px 0;
    gap:0;
  }
  .main-nav > ul.nav-menu.active{ transform: translateX(0); }

  .main-nav > ul.nav-menu > li > a{ color:#fff; padding:12px 14px; }
  .main-nav .services-summary{ color:#fff; padding:12px 14px; width:100%; }

  .main-nav .services-details > ul.dropdown{
    position:static;
    width:100%;
    background:transparent;
    box-shadow:none;
    padding: 6px 0 0;
  }
  .main-nav .dropdown li a{ color:#fff; padding:10px 14px; font-weight:600; }
}

@media (min-width: 769px){
  header{
    display:grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "logo nav";
    align-items:center;
    gap:20px;
  }
  .logo{ grid-area:logo; position:static; transform:none; }
  .main-nav{ grid-area:nav; justify-self:center; }
  .hamburger{ display:none; }
  .main-nav > ul.nav-menu{ position:static; transform:none; background:transparent; padding:0; width:auto; }
}

/* HERO */
.sg-hero-img{
  position:relative;
  width:100%;
  min-height:72vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}
.sg-hero-img__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

/* Fly hero image */
.sg-hero-img__bg--fly{
  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.45) 45%,
      rgba(0,0,0,.15) 100%
    ),
    url("fly.png");
}

.sg-hero-img__content{
  position:relative;
  z-index:1;
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 0;
}
.sg-hero-img__inner{ width: min(760px, 100%); }

.sg-hero-img__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  margin-bottom:16px;
  backdrop-filter: blur(10px);
}
.sg-hero-img__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(225,29,72,.18);
}

.sg-hero-img__title{
  margin:0 0 12px;
  color: var(--text);
  font-weight:850;
  line-height:1.05;
  letter-spacing:-0.02em;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}
.sg-hero-img__sub{
  margin:0 0 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height:1.6;
  max-width:70ch;
}
.sg-hero-img__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

/* Buttons */
.sg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius:12px;
  font-weight:750;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.sg-btn:active{ transform: translateY(1px); }

.sg-btn--primary{ background: var(--accent); color:#fff; }
.sg-btn--primary:hover{ background: var(--accentHover); transform: translateY(-1px); }
.sg-btn--primary::before{ content:"☎"; margin-right:10px; font-weight:900; }

.sg-btn--ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.sg-btn--ghost:hover{ background: rgba(255,255,255,.16); transform: translateY(-1px); }

.sg-hero-img__trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
@media (max-width: 720px){
  .sg-hero-img__trust{ grid-template-columns: 1fr; }
}
.sg-trust{
  border-radius:16px;
  padding:14px 14px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.sg-trust strong{
  display:block;
  color:#fff;
  font-size:1.08rem;
  margin-bottom:4px;
}
.sg-trust span{
  display:block;
  color: rgba(255,255,255,.78);
  font-size:.95rem;
}

/* Urgent Bar */
.urgent-bar{
  background: #0f172a;
  color: rgba(255,255,255,.88);
  padding: 10px 0;
}
.urgent-bar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.urgent-bar p{ margin:0; font-weight:700; }
.urgent-bar__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  background: var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
}
.urgent-bar__btn::before{ content:"☎"; font-weight:900; }

/* Fly sections */
.fly-section{ padding:70px 0; background:#fff; }
.fly-section--alt{
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fly-title{
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink);
  text-align:center;
  margin-bottom:.8rem;
}
.fly-lead{
  font-size: 1.06rem;
  max-width: 860px;
  margin: 0 auto 2rem;
  color: var(--mutedInk);
  line-height: 1.65;
  text-align:center;
}

.fly-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  max-width:1200px;
  margin:0 auto;
  padding: 0 20px;
}
.fly-grid--two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 1024px){
  .fly-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fly-grid--two{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .fly-grid{ grid-template-columns: 1fr; }
}

.fly-card{
  background: linear-gradient(135deg, #ffffff, #f7f9ff);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.08);
  padding:16px 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fly-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.10);
  border-color: rgba(225,29,72,0.30);
}
.fly-card h3{
  margin:0 0 8px;
  color: var(--ink);
  font-weight:900;
  letter-spacing:.01em;
  text-transform: uppercase;
  font-size:1.05rem;
}
.fly-card p{
  margin:0 0 10px;
  color: var(--mutedInk);
  line-height:1.6;
  font-size:.98rem;
}
.fly-list{
  margin:0;
  padding-left:18px;
  color: var(--mutedInk);
  line-height:1.65;
  font-size:.95rem;
}

.fly-cta{
  max-width:1200px;
  margin:22px auto 0;
  padding:18px 20px;
  border-radius:18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.fly-cta__text h3{ margin:0 0 4px; font-weight:900; color: var(--ink); }
.fly-cta__text p{ margin:0; color: var(--mutedInk); }

.fly-note{
  max-width: 900px;
  margin: 18px auto 0;
  padding: 0 20px;
  color: var(--mutedInk);
  line-height:1.7;
  text-align:center;
}

/* Related callout */
.fly-related{
  margin-top: 18px;
  padding: 0 20px;
}
.fly-related__inner{
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: linear-gradient(135deg, #ffffff, #fbfbfe);
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.06);
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.fly-related__inner h3{
  margin:0 0 6px;
  font-weight:900;
  color: var(--ink);
}
.fly-related__inner p{
  margin:0;
  color: var(--mutedInk);
  line-height:1.65;
  max-width: 78ch;
}
.fly-related__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Steps */
.fly-steps{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display:grid;
  gap:12px;
}
.fly-step{
  display:grid;
  grid-template-columns: 46px 1fr;
  gap:12px;
  align-items:start;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:#fff;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.06);
}
.fly-step__num{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  color: var(--ink);
  background: rgba(225,29,72,0.10);
  border: 1px solid rgba(225,29,72,0.20);
}
.fly-step h3{
  margin:0 0 4px;
  font-weight:900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing:.01em;
  font-size:1.02rem;
}
.fly-step p{ margin:0; color: var(--mutedInk); line-height:1.6; }

/* FAQ system (same as homepage) */
.home-faq{
  padding:64px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.home-faq-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.home-faq h2{
  margin:0 0 8px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight:900;
  letter-spacing:-0.02em;
  color: var(--ink);
}
.home-faq-head p{
  margin:0;
  color: var(--mutedInk);
  line-height:1.7;
  max-width:78ch;
}
.home-faq-head a{
  color:inherit;
  font-weight:900;
  text-decoration:none;
  border-bottom: 1px dotted rgba(15,23,42,0.35);
}
.home-faq-head a:hover{ border-bottom-color: rgba(225,29,72,0.75); }
.home-faq-head__actions{
  display:inline-flex;
  gap:10px;
  flex-wrap:wrap;
}
.home-faq-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
}
@media (max-width: 860px){
  .home-faq-head{ align-items:flex-start; flex-direction:column; }
  .home-faq-grid{ grid-template-columns: 1fr; }
}
.home-faq-item{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius:16px;
  padding:14px 14px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.home-faq-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.08);
}
.home-faq-item[open]{
  border-color: rgba(225,29,72,0.35);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.10);
}
.home-faq-item summary{
  cursor:pointer;
  font-weight:900;
  color: var(--ink);
  line-height:1.35;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.home-faq-item summary::-webkit-details-marker{ display:none; }
.home-faq-item summary::marker{ content:""; }
.home-faq-item summary::after{
  content:"+";
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:900;
  color: var(--ink);
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.10);
  flex: 0 0 34px;
}
.home-faq-item[open] summary::after{
  content:"–";
  background: rgba(225,29,72,0.10);
  border-color: rgba(225,29,72,0.20);
}
.home-faq-item p{
  margin:10px 0 0;
  color: var(--mutedInk);
  line-height:1.7;
  font-size: 15.5px;
}
.home-faq-item a{
  color:inherit;
  font-weight:900;
  text-decoration:none;
  border-bottom: 1px dotted rgba(15,23,42,0.35);
}
.home-faq-item a:hover{ border-bottom-color: rgba(225,29,72,0.75); }

/* Buttons */
.faq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 14px;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  border: 1px solid rgba(15,23,42,0.12);
  transition: transform .15s ease, background .2s ease;
  white-space:nowrap;
}
.faq-btn.primary{
  background: var(--accent);
  color:#fff;
  border-color: transparent;
}
.faq-btn.primary:hover{ background: var(--accentHover); transform: translateY(-1px); }
.faq-btn.primary::before{ content:"☎"; margin-right:8px; font-weight:900; }

.faq-btn.secondary{
  background:#fff;
  color: var(--ink);
}
.faq-btn.secondary:hover{ background: rgba(15,23,42,0.04); transform: translateY(-1px); }

/* Footer */
.site-footer{
  background: #e63946;
  color:#fff;
  padding:40px 20px 20px;
  font-size:15px;
}
.footer-container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}
.footer-col h3, .footer-col h4{ margin-bottom:12px; color: black; }
.footer-col p, .footer-col a{ color:#ccc; line-height:1.5; }
.footer-col ul{ list-style:none; padding:0; }
.footer-col ul li{ margin-bottom:8px; }
.footer-col ul li a{ text-decoration:none; transition: color .2s ease; }
.footer-col ul li a:hover{ color: var(--accent); }

.footer-bottom{
  text-align:center;
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:15px;
  font-size:14px;
  color:#aaa;
}
@media (max-width:768px){
  .footer-container{ flex-direction:column; text-align:center; }
  .footer-col{ margin-bottom:20px; }
}

.call-sticky--premium{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;

  background: radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%),
              #0b1220; /* premium dark */
  color: #ffffff;

  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 18px 45px rgba(2,6,23,0.35),
    0 2px 0 rgba(255,255,255,0.08) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  z-index: 9999;
}

.call-sticky--premium:hover{
  transform: translateY(-2px);
  box-shadow:
    0 26px 65px rgba(2,6,23,0.45),
    0 2px 0 rgba(255,255,255,0.10) inset;
}

.call-sticky--premium:active{
  transform: translateY(0px) scale(0.98);
}

.call-sticky--premium svg{
  display: block;
}

.call-sticky__tip{
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  background: rgba(11,18,32,0.75);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 35px rgba(2,6,23,0.35);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.call-sticky--premium:hover .call-sticky__tip{
  opacity: 1;
  transform: translateY(50%) translateX(-2px);
}
