/* ---------- GLOBAL RESET ---------- */

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

html,
body {
  margin: 0;
  padding: 0;
}

/* ---------- PAGE SHELL ---------- */

body.ssl-home {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
  background: radial-gradient(circle at top, #000000 0%, #09011F 45%, #4D4D4D 100%);
  color: #f8fafc;
}

/* Main content wrapper */
.ssl-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* ---------- HEADER ---------- */

.ssl-header {
  width: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
}

.ssl-header > .ssl-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* If you don't want to change HTML, we can target just .ssl-header like this instead: */
.ssl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
}

.ssl-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ssl-logo img {
  width: auto;
  height: 30px;
  object-fit: cover;
}

.ssl-logo span {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.ssl-nav a {
  margin-left: 1.25rem;
  font-size: 0.85rem;
  text-decoration: none;
  color: #cbd5f5;
  opacity: 0.9;
  font-weight: 400;
}

.ssl-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ---------- HERO ---------- */

.ssl-hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.ssl-hero-logo {
  margin-bottom: 1rem;
}

.ssl-hero-logo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center;
}

.ssl-hero-logo img:hover {
  transform: scale(1.22) translateY(-6px);
}

.ssl-hero h1 {
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Slogan banner image – normal, no negative margin, no viewport hacks */
.ssl-slogan-banner {
  margin-top: 0.75rem;
}

.ssl-slogan-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- INTRO ---------- */

.ssl-intro {
  margin: 2rem 0 3rem;
  font-size: 1rem;
  color: #c9d7ff;
  line-height: 1.6;
  text-align: center;
}

/* ---------- eSSo CONTAINER ---------- */

.ssl-esso {
  margin-bottom: 2.3rem;
}

.ssl-esso-inner {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.ssl-esso-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.ssl-esso-content {
  max-width: 440px;
  text-align: left;
}

.ssl-esso-content p {
  margin-bottom: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.6;
}

.ssl-esso-content .ssl-button-primary {
  display: inline-block;
  margin-top: 0.6rem;
}

/* Button used in eSSo container */
.ssl-button-primary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 0;
  background: #1d4ed8;
  color: #f9fafb;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
}

.ssl-button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 1);
}

/* ---------- WHY SSL ---------- */

.ssl-why {
  margin-top: 2.3rem;
}

.ssl-why h2 {
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.ssl-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.ssl-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 0;
  padding: 1rem 1rem 1.1rem;
  border: none;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}

.ssl-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.ssl-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.92;
}

.ssl-card h3 {
  font-size: 0.92rem;
  color: #e5e7eb;
  font-weight: 500;
  margin: 0;
}

.ssl-card p {
  margin: 0;
}

/* ---------- LILLY BAND (full-width section with centered inner) ---------- */

.ssl-testimonial {
  width: 100%;
  margin-top: 2.5rem;
  background: #38384F;
  border: none;
}

.ssl-testimonial-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
}

.ssl-testimonial h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.ssl-testimonial-body {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.ssl-lily {
  width: 235px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.ssl-testimonial-text {
  flex: 1;
}

.ssl-testimonial-text > p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ssl-testimonial blockquote {
  border-left: 3px solid rgba(148, 163, 184, 0.7);
  margin: 0 0 0.9rem;
  padding-left: 1rem;
}

.ssl-testimonial blockquote p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.ssl-testimonial-meta {
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* ---------- MARS BANNER (full-width) ---------- */

.ssl-mars-banner {
  width: 100%;
  text-align: center;
  padding: 2rem 0 1.2rem;
}

.ssl-mars-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.ssl-mars-banner-note {
  max-width: 960px;
  margin: 0.7rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.5;
}

/* ---------- OFFER BAND (full-width) ---------- */

.ssl-offer {
  width: 100%;
  margin-top: 2.2rem;
  background: #020617;
  border-top: 1px solid #4b5563;
  border-bottom: 1px solid #4b5563;
}

.ssl-offer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem 2rem;
  text-align: center;
}

.ssl-offer p {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
}

.ssl-offer-highlight {
  font-weight: 600;
  font-size: 0.96rem;
  color: #fbbf24;
}

.ssl-countdown-line {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-top: 0.4rem;
}

#ssl-countdown {
  font-family: "SF Pro Text", "Roboto Mono", ui-monospace, system-ui, sans-serif;
  font-weight: 500;
}

/* Main CTA button */
.ssl-button-main {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.9rem 2.4rem;
  border-radius: 0;
  border: 1px solid rgba(252, 211, 77, 0.9);
  background: #020617;
  color: #fefce8;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.ssl-button-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
}

/* ---------- FINE PRINT BAND ---------- */

.ssl-fineprint {
  width: 100%;
  margin-top: 2rem;
  background: #020617;
  border-top: 1px solid #374151;
  font-size: 0.45rem;
  color: #080F30;
  line-height: 1.6;
}

.ssl-fineprint-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
}

.ssl-fineprint p + p {
  margin-top: 0.4rem;
}

/* ---------- FOOTER ---------- */

.ssl-footer {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.5rem 1.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .ssl-main {
    padding: 1.6rem 1rem 2.5rem;
  }

  .ssl-hero-logo img {
    width: 200px;
    height: 200px;
  }

  .ssl-testimonial-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .ssl-lily {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .ssl-offer p {
    font-size: 1.05rem;
  }
}
