
/* =========================
   Reset
========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body { padding-top: 0; }

/* =========================
   Top Bar (Improved)
========================= */
.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);
}

/* Mobile: keep it tidy */
@media (max-width: 520px){
  .top-bar__divider{ display: none; }
  .top-bar__inner{ gap: 6px; }
}


/* =========================
   Header (Base)
========================= */
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: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}

/* Logo (default sizing; mobile overrides make it bigger) */
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo img {
  height: 46px;
  width: auto;
  max-height: none;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/
/* =========================
   Hamburger
========================= */
.hamburger {
  display: none; /* shown on mobile */
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}

/* =========================
   Overlay
========================= */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active { display: block; opacity: 1; }

/* =============================
   MAIN NAV (top-level only)
============================= */
.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; }

/* Top-level links */
.main-nav > ul.nav-menu > li > a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease, background-color 0.2s ease;
  display: block;
  padding: 16px 24px;
}
.main-nav > ul.nav-menu > li > a:hover { color: #e63946; }

/* =============================
   SERVICES DROPDOWN (<details>)
============================= */
.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;
}

/* Remove default arrow marker */
.main-nav .services-summary::-webkit-details-marker { display: none; }
.main-nav .services-summary::marker { content: ""; }

/* Hide dropdown by default */
.main-nav .services-details > ul.dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

/* Show dropdown when open */
.main-nav .services-details[open] > ul.dropdown {
  display: block !important;
}

/* Desktop dropdown panel */
@media (min-width: 769px) {
  .main-nav .services-details { position: relative; }

  .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;
  }

  /* Optional hover open */
  .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 styles
   BIG logo (left), Quote TRUE CENTER (small), Hamburger right
============================= */
@media (max-width: 768px) {

  /* Header stays small */
  header{
    position: sticky;
    top: 0;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: visible;
    padding: 0 12px;

    /* make absolute positioning anchor to header */
    /* sticky elements can be positioning context in practice, but we add this for reliability */
    /* does not break sticky */
    position: sticky;
  }

  /* Ensure header is a positioning context */
  header{ position: sticky; }
  header{ top: 0; }
  header{ z-index: 999; }
  header{ display: block; } /* mobile layout uses absolute children */

  /* Big logo: independent of header height */
  .logo{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
  }
  .logo img{
    height: 76px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
  }

  /* Quote button: TRUE center */
  .quote-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Quote button small */
  .quote-btn .cta-button{
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
    transform: none !important;
    box-shadow: none;
  }

  /* Hamburger right */
  .hamburger{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 7;

    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  /* Nav UL is fixed drawer (works as before) */
  .main-nav > ul.nav-menu {
    flex-direction: column;
    background: #333;
    position: fixed;
    top: 64px;
    right: 0;
    width: 220px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2;
    padding: 8px 0;
    gap: 0;
  }

  .main-nav > ul.nav-menu.active { transform: translateX(0); }

  /* Top-level links inside mobile drawer */
  .main-nav > ul.nav-menu > li > a {
    color: #fff;
    padding: 12px 14px;
    display: block;
  }

  /* Services summary inside mobile drawer */
  .main-nav .services-summary {
    color: #fff;
    padding: 12px 14px;
    width: 100%;
  }

  /* Dropdown stacked inside drawer */
  .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;
    display: block;
    font-weight: 600;
  }
}

/* =============================
   Desktop layout
============================= */
@media (min-width: 769px) {
  header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav quote";
    align-items: center;
    gap: 20px;
    padding: 0 14px;
  }

  .logo { grid-area: logo; position: static; transform: none; }
  .main-nav { grid-area: nav; justify-self: center; }
  .quote-btn { grid-area: quote; justify-self: end; }

  .hamburger { display: none; }

  .logo img{
    height: 46px;
    max-width: 180px;
  }

  .main-nav > ul.nav-menu {
    position: static;
    flex-direction: row;
    transform: none;
    background: transparent;
    padding: 0;
    width: auto;
  }

  .main-nav > ul.nav-menu > li > a,
  .main-nav .services-summary {
    color: #333;
  }
}



/* =========================
   STRIKEGUARD HERO (PRO)
========================= */
:root{
  --accent:#e11d48;
  --accentHover:#be123c;
  --text:#ffffff;
  --muted:rgba(255,255,255,.82);
}

/* HERO WRAPPER */
.sg-hero-img{
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.sg-hero-img__bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.45) 45%,
      rgba(0,0,0,.15) 100%
    ),
    url("hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

/* CONTENT LAYER */
.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(720px, 100%);
}

/* BADGE */
.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: 0.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);
}

/* TYPOGRAPHY */
.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: 62ch;
}

/* BUTTONS */
.sg-hero-img__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.sg-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  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-btn--text{
  border-color: rgba(255,255,255,.28);
}

.sg-btn--text:hover{
  border-color: rgba(255,255,255,.38);
}


/* TRUST ROW */
.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: 0.95rem;
}






/* Quote button */
.slide-text .btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-sizing: border-box;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slide-text .btn:hover {
  background: #d62828;
  transform: scale(1.05);
}

/* Mobile slider overlay fix */
@media (max-width:768px){
  .hero-slider{
    height:60vh;
  }

  .slide-text{
    max-width:92%;
    padding:12px;

    max-height: calc(60vh - 18px);
    overflow-y:auto;
    -webkit-overflow-scrolling: touch;

    display:flex;
    flex-direction:column;
    gap:10px;

    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
  }

  .slide-text h2{
    font-size:1.2rem;
    line-height:1.2;
    margin:0;
  }

  .slide-text p{
    font-size:0.95rem;
    line-height:1.35;
    margin:0;
  }

  .slide-text .btn{
    margin-top:4px;
    padding:10px 14px;
    font-size:14px;
    font-weight:700;

    width:100%;
    max-width:240px;
    align-self:center;
    text-align:center;

    white-space:nowrap;
  }
}

/* Extra small phones */
@media (max-width:420px){
  .slide-text{
    padding:10px;
    gap:8px;
    max-height: calc(60vh - 14px);
  }
  .slide-text h2{ font-size:1.1rem; }
  .slide-text p{ font-size:0.9rem; }
  .slide-text .btn{ padding:9px 12px; }
}



/* =========================
   Trust badges
========================= */
.trust{
  background: linear-gradient(135deg, #f0f8ff, #e6f7f1);
  padding: 3rem 1rem;
}
.trust-inner{ max-width:1200px; margin:0 auto; }
.trust-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2rem;
}
.badge{
  background:#fff;
  border-radius:12px;
  padding:1.5rem;
  text-align:center;
  width:220px;
  box-shadow:0 6px 12px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.badge:hover{
  transform: translateY(-6px);
  box-shadow:0 10px 18px rgba(0,0,0,0.12);
}
.badge img{ width:60px; height:60px; margin-bottom:1rem; }
.badge p{ font-size:1rem; font-weight:700; color:#333; margin:0; }
.badge:nth-child(1){ border-top:4px solid #0077b6; }
.badge:nth-child(2){ border-top:4px solid #2a9d8f; }
.badge:nth-child(3){ border-top:4px solid var(--accent); }
.badge:nth-child(4){ border-top:4px solid #ffb703; }

/* =========================
   Services (Updated)
========================= */

.services{
  padding: 70px 0;
  background: #ffffff;
}

.services h2{
  font-size: 2.4rem;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: .8rem;
}

.services .section-intro{
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0 auto 2.2rem;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
  text-align: center;
}

/* Grid */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .service-grid{ grid-template-columns: 1fr; }
}

/* Card */
.service-card{
  background: linear-gradient(135deg, #ffffff, #f7f9ff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.10);
  border: 1px solid rgba(15,23,42,0.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.14);
  border-color: rgba(225, 29, 72, 0.35);
}

/* Image */
.service-media{
  display: block;
}

.service-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.service-card:hover img{
  transform: scale(1.04);
}

/* Body */
.service-card-body{
  padding: 1.15rem 1.15rem 1.2rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3{
  font-size: 1.2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: .55rem;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.service-card-body p{
  font-size: 0.98rem;
  color: rgba(15,23,42,.72);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Actions */
.service-actions{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #e11d48;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}

.service-cta:hover{
  background: #be123c;
  transform: translateY(-1px);
}

.service-cta::before{
  content: "☎";
  margin-right: 8px;
  font-weight: 900;
}

.service-link{
  text-decoration: none;
  font-weight: 800;
  color: rgba(15,23,42,.78);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  background: #fff;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}

.service-link:hover{
  background: rgba(15,23,42,0.04);
  transform: translateY(-1px);
}
.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, #e11d48);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
}

.urgent-bar__btn::before{
  content:"☎";
  font-weight:900;
}


/* =========================
   Footer + sticky buttons
========================= */
.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);
}




/* Hide SEO H1 everywhere (desktop + mobile) */
.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;
}

/* =========================
   Homepage FAQ (Index)
========================= */
/* =========================
   Homepage FAQ (Improved)
========================= */

.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: #0f172a;
}

.home-faq-head p{
  margin: 0;
  color: rgba(15,23,42,0.72);
  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;
}

/* Grid */
.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;
  }
}

/* Items */
.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);
}

/* Summary row */
.home-faq-item summary{
  cursor: pointer;
  font-weight: 900;
  color: #0f172a;
  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:""; }

/* Plus -> minus toggle */
.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: #0f172a;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.10);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  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);
}

/* Answer text */
.home-faq-item p{
  margin: 10px 0 0;
  color: rgba(15,23,42,0.72);
  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, #e11d48);
  color: #fff;
  border-color: transparent;
}
.faq-btn.primary:hover{
  background: var(--accent-dark, #be123c);
  transform: translateY(-1px);
}
.faq-btn.primary::before{
  content:"☎";
  margin-right: 8px;
  font-weight: 900;
}

.faq-btn.secondary{
  background: #fff;
  color: #0f172a;
}
.faq-btn.secondary:hover{
  background: rgba(15,23,42,0.04);
  transform: translateY(-1px);
}


h1.visually-hidden{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


