/* =========================================================
   GetTempCover GLOBAL CSS
   Premium White + Bright Green Theme
   Use on every page.
   Keep homepage-only styling inside index.css.
========================================================= */

:root{
  --ink:#101828;
  --ink-soft:#344054;

  --green:#00e676;
  --green-2:#35ff8d;
  --green-dark:#00a85a;
  --green-deep:#042f1b;
  --green-soft:#effff5;
  --green-soft-2:#f7fffa;
  --green-line:#b8f7d1;
  --lime:#b9ff66;

  /* Compatibility aliases for older page CSS */
  --blue:#00e676;
  --blue-2:#35ff8d;

  --bg:#fbfffd;
  --muted:#667085;
  --text:#101828;
  --white:#ffffff;
  --line:#e5e7eb;
  --card:#ffffff;
  --shadow:0 24px 70px rgba(16,24,40,.10);
  --green-shadow:0 18px 45px rgba(0,230,118,.22);
  --radius:24px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

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

img{
  max-width:100%;
  display:block;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

.container{
  width:min(1180px, calc(100% - 40px));
  margin:auto;
}

/* Loading */

.loading-wrap{
  position:fixed;
  inset:0;
  z-index:9999;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,230,118,.28), transparent 34%),
    linear-gradient(135deg, #031f12, var(--green-deep));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:.5s ease;
}

.loading-wrap.fade-out{
  opacity:0;
  pointer-events:none;
}

.loading-logo{
  width:88px;
  height:88px;
  border-radius:28px;
  background:linear-gradient(135deg, var(--green-dark), var(--green));
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:32px;
  margin-bottom:18px;
  box-shadow:0 20px 60px rgba(0,230,118,.34);
}

.loading-brand-img,
.loading-logo-img{
  width:min(260px,72vw);
  height:auto;
  margin-bottom:18px;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.22));
}

.loading-text{
  font-size:20px;
  letter-spacing:-.02em;
  margin-bottom:18px;
}

.spinner{
  width:46px;
  height:46px;
  border-radius:999px;
  border:4px solid rgba(255,255,255,.24);
  border-top-color:var(--green);
  animation:spin .8s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg)}
}

.main-content{
  display:none;
}

/* Header shell */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(229,231,235,.9);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:-.04em;
  font-size:22px;
  color:var(--ink);
}

.brand-mark{
  width:44px;
  height:44px;
  border-radius:15px;
  background:linear-gradient(135deg, var(--green-dark), var(--green));
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 35px rgba(0,230,118,.25);
}

.site-logo{
  width:auto;
  height:54px;
  object-fit:contain;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:15px;
  color:#475467;
  font-weight:750;
}

.navlinks a{
  transition:.2s ease;
}

.navlinks a:hover,
.navlinks a.active{
  color:var(--green-dark);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.portal-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:12px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:850;
  color:var(--ink);
  box-shadow:0 10px 30px rgba(16,24,40,.06);
}

.portal-link:hover{
  color:var(--green-dark);
  border-color:var(--green-line);
  box-shadow:0 14px 36px rgba(0,230,118,.14);
}

.hamburger{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  align-items:center;
  justify-content:center;
}

.hamburger:hover{
  color:var(--green-dark);
  border-color:var(--green-line);
}

.mobile-menu{
  display:none;
  padding:0 20px 20px;
}

.mobile-menu.active{
  display:grid;
  gap:12px;
}

.mobile-menu a{
  padding:14px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  font-weight:850;
}

.mobile-menu a:hover{
  border-color:var(--green-line);
  color:var(--green-dark);
  background:var(--green-soft);
}

/* Buttons / inputs */

.btn-primary,
.cta-primary{
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg, var(--green), var(--green-dark));
  color:#fff;
  font-weight:950;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  transition:.22s ease;
  box-shadow:var(--green-shadow);
}

.btn-primary:hover,
.cta-primary:hover{
  transform:translateY(-2px);
  filter:saturate(1.08);
}

input,
select,
textarea{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--text);
}

input:focus,
select:focus,
textarea:focus{
  outline:3px solid rgba(0,230,118,.16);
  border-color:var(--green-dark);
}

/* FAQ */

.faq-wrap{
  max-width:850px;
  margin:auto;
}

details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px 24px;
  margin-bottom:14px;
  box-shadow:0 12px 34px rgba(16,24,40,.04);
}

details:hover{
  border-color:var(--green-line);
}

summary{
  cursor:pointer;
  font-weight:950;
  font-size:18px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

summary::-webkit-details-marker{
  display:none;
}

summary::after{
  content:"+";
  color:var(--green-dark);
  font-size:24px;
  line-height:1;
}

details[open] summary::after{
  content:"−";
}

details p{
  color:var(--muted);
  margin-top:12px;
}

/* Shared footer */

.footer{
  background:#031b10;
  color:#d8ffe7;
  padding:70px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:34px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.footer h3{
  color:#fff;
  font-size:26px;
  letter-spacing:-.05em;
  margin-bottom:14px;
}

.footer h4{
  color:#fff;
  margin-bottom:14px;
}

.footer a{
  display:block;
  margin:9px 0;
  color:#b8f7d1;
}

.footer a:hover{
  color:#fff;
}

.secure-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.secure-item{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,230,118,.16);
  color:#d8ffe7;
  font-weight:850;
  font-size:13px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding-top:28px;
  color:#b8f7d1;
  font-size:14px;
}

.social-links{
  display:flex;
  gap:10px;
}

.social-links a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  margin:0;
  color:#fff;
}

.social-links a:hover{
  background:rgba(0,230,118,.22);
  color:#fff;
}

/* Error popup */

.error-popup{
  position:fixed;
  inset:0;
  z-index:10000;
  background:rgba(3,27,16,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.error-popup.show{
  display:flex;
}

.popup-content{
  background:#fff;
  color:var(--text);
  width:min(420px,100%);
  border-radius:28px;
  padding:30px;
  box-shadow:0 35px 100px rgba(3,27,16,.34);
  text-align:center;
}

.popup-content i{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green-soft);
  color:var(--green-dark);
  margin:0 auto 16px;
  font-size:24px;
}

.error-message{
  display:block;
  color:var(--muted);
  margin:10px 0 18px;
}

.close-btn{
  border:0;
  background:linear-gradient(135deg, var(--green), var(--green-dark));
  color:#fff;
  font-weight:900;
  padding:13px 22px;
  border-radius:999px;
}

.close-btn:hover{
  filter:saturate(1.08);
}

/* Animation */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:.65s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Payment stepper mobile fix */

@media (max-width:1040px){
  .payment-progress-wrap{
    overflow:visible !important;
  }

  .payment-stepper{
    display:grid !important;
    grid-template-columns:auto minmax(18px,1fr) auto minmax(18px,1fr) auto minmax(18px,1fr) auto !important;
    align-items:center !important;
    justify-items:center !important;
    gap:6px !important;
    width:100% !important;
    padding:16px 10px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    white-space:nowrap !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .payment-stepper .step{
    display:grid !important;
    grid-template-columns:1fr !important;
    justify-items:center !important;
    align-items:center !important;
    gap:5px !important;
    min-width:48px !important;
    width:auto !important;
  }

  .payment-stepper .step span{
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    min-height:32px !important;
    font-size:14px !important;
    line-height:32px !important;
  }

  .payment-stepper .step small{
    display:block !important;
    font-size:10px !important;
    line-height:1.1 !important;
    text-align:center !important;
    white-space:nowrap !important;
  }

  .payment-stepper .line{
    display:block !important;
    width:100% !important;
    min-width:18px !important;
    max-width:none !important;
    height:3px !important;
    min-height:3px !important;
    margin:0 !important;
    align-self:center !important;
  }
}

@media (max-width:980px){
  .navlinks,
  .portal-link{
    display:none;
  }

  .hamburger{
    display:flex;
  }

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

@media (max-width:640px){
  .container{
    width:min(100% - 26px,1180px);
  }

  .nav{
    min-height:72px;
  }

  .brand span{
    font-size:19px;
  }

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

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* =========================================================
   SHARED GETTEMPCOVER HEADER + FOOTER
   Use this on every page.
   Markup classes:
   header.site-header.clean-header
   nav.container.nav.clean-nav
   footer.clean-footer
========================================================= */

/* Header */

.site-header.clean-header,
.clean-header.site-header{
  position:sticky !important;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96) !important;
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(229,231,235,.92) !important;
  box-shadow:0 10px 35px rgba(16,24,40,.05);
}

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

.clean-brand{
  display:flex;
  align-items:center;
  gap:0;
  min-width:235px;
}

.clean-brand .brand-mark,
.clean-brand span{
  display:none !important;
}

.clean-brand .site-logo,
.site-logo{
  width:235px !important;
  max-width:235px !important;
  height:auto !important;
  display:block !important;
  object-fit:contain;
}

.clean-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  color:#344054;
  font-weight:850;
  font-size:15px;
}

.clean-links a{
  color:#344054 !important;
  opacity:1;
  position:relative;
  padding:36px 0;
}

.clean-links a:hover,
.clean-links a.active{
  color:var(--green-dark, #00a85a) !important;
}

.clean-links a.active::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:42px;
  height:3px;
  background:linear-gradient(90deg, var(--lime, #b9ff66), var(--green, #00e676)) !important;
  border-radius:999px;
}

.clean-portal{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:12px 18px;
  border-radius:999px;
  color:#101828 !important;
  background:#fff !important;
  border:1px solid var(--line, #e5e7eb) !important;
  font-weight:850;
  box-shadow:0 10px 30px rgba(16,24,40,.06) !important;
}

.clean-portal:hover{
  color:var(--green-dark, #00a85a) !important;
  border-color:var(--green-line, #b8f7d1) !important;
  box-shadow:0 16px 40px rgba(0,230,118,.14) !important;
}

.clean-menu-btn{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  color:#101828 !important;
  background:#fff !important;
  border:1px solid var(--line, #e5e7eb) !important;
  align-items:center;
  justify-content:center;
}

.clean-menu-btn:hover{
  color:var(--green-dark, #00a85a) !important;
  border-color:var(--green-line, #b8f7d1) !important;
}

.mobile-menu{
  display:none;
  padding:0 20px 20px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(229,231,235,.92);
}

.mobile-menu.active{
  display:grid !important;
  gap:12px;
}

.mobile-menu a{
  padding:14px 16px;
  background:#fff;
  border:1px solid var(--line, #e5e7eb);
  border-radius:16px;
  font-weight:850;
  color:#344054;
}

.mobile-menu a:hover,
.mobile-menu a.active{
  border-color:var(--green-line, #b8f7d1);
  color:var(--green-dark, #00a85a);
  background:var(--green-soft, #effff5);
}

/* Footer */

.clean-footer{
  background:#031b10 !important;
  color:#d8ffe7;
  padding:76px 0 30px;
}

.clean-footer-grid{
  display:grid;
  grid-template-columns:1.55fr 1fr 1fr 1fr;
  gap:42px;
  padding-bottom:42px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.clean-footer-logo{
  width:230px;
  max-width:100%;
  height:auto;
  display:block;
  margin-bottom:16px;
}

.clean-footer p{
  color:#b8f7d1;
  line-height:1.65;
  max-width:430px;
}

.clean-footer h4{
  color:#fff;
  margin:0 0 16px;
}

.clean-footer a{
  display:block;
  color:#b8f7d1;
  margin:10px 0;
  font-weight:700;
}

.clean-footer a:hover{
  color:#fff;
}

.clean-footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:20px;
}

.clean-footer-badges span{
  background:rgba(0,230,118,.16);
  color:#d8ffe7;
  padding:9px 11px;
  border-radius:999px;
  font-size:13px;
  font-weight:850;
}

.clean-footer-bottom{
  padding-top:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:#b8f7d1;
  font-size:14px;
}

/* Shared header/footer responsive */

@media(max-width:1080px){
  .clean-nav{
    min-height:78px;
  }

  .clean-brand .site-logo,
  .site-logo{
    width:205px !important;
    max-width:205px !important;
  }

  .clean-links.navlinks,
  .navlinks.clean-links{
    display:none !important;
  }

  .clean-menu-btn.hamburger,
  .hamburger.clean-menu-btn{
    display:flex !important;
  }

  .clean-portal.portal-link,
  .portal-link.clean-portal{
    display:none !important;
  }

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

@media(max-width:680px){
  .clean-brand .site-logo,
  .site-logo{
    width:180px !important;
    max-width:180px !important;
  }

  .clean-footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .clean-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
