/* === BASIC RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* === GOLD-PREMIUM COLOUR VARIABLES === */
:root {
  /* BASE */
  --bg-page:   #FAFAF8;   /* clean page background */
  --bg-card:   #FFFFFF;
  --bg-header: #F7F3EB;   /* soft light gold tint */

  /* TEXT */
  --text-main:   #2A2A28; /* softened charcoal */
  --text-sub:    #6C757D;

  /* BRAND GOLD */
  --gold:       #BA9757;
  --gold-soft:  #D6B989;
  --gold-tint:  #FFF7E8;

  /* LOGO GRADIENT */
  --logo-g1: #3C3B39;
  --logo-g2: #BA9757;

  /* TICK */
  --tick-gold: #BA9757;
}

/* === BASE STYLES === */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Montserrat', serif;
  color: var(--text-main);
}

p { color: var(--text-main); }

/* === GLOBAL BODY TEXT SIZE (safe — does NOT affect header) === */
section p,
section li,
section ul,
section ol,
section span,
section a:not(.btn-primary):not(.btn-outline),
footer p {
  font-size: 1.05rem;   /* consistent body size */
  line-height: 1.7;
  color: var(--text-sub);
}


/* === LAYOUT HELPERS === */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* === HEADER === */
.site-header.clearai-header {
  background: var(--bg-header);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: auto;
}

/* === LOGO TEXT (KEEPING THIS EXACT) === */
.logo-text {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, var(--logo-g1), var(--logo-g2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.9rem;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === TICKBOX ICON (SVG) === */
.tickbox-icon rect { stroke: var(--gold); }
.tickbox-icon path { stroke: var(--gold); }

/* === NAVIGATION === */
.main-nav ul {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 3px;
  transition: 0.3s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* === BUTTONS === */

/* WHITE OUTLINE — FREE QUICK CHECK */
.btn-outline {
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--text-main);
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
}
.btn-outline:hover {
  background: var(--gold-tint);
}

/* GOLD BUTTON — BUY THE PACK */
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background: var(--gold-soft);
}
/* ===========================================
   BUTTON SYSTEM — UPDATED + NEW BUTTON TYPES
   =========================================== */

/* 1) SOFT-GOLD BUTTON — Start Free Quick Check */
.btn-soft {
  background: var(--gold-tint);      /* soft creamy gold */
  color: var(--gold);                /* gold text */
  border: 2px solid var(--gold-soft);
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-soft:hover {
  background: var(--gold-soft);      /* warm gold hover */
  color: #fff;
  border-color: var(--gold);
}

/* 2) GOLD CTA BUTTON — Buy the Pack (Hero) */
.btn-hero-buy {
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-hero-buy:hover {
  background: var(--gold-soft);
}

/* Keep your original buttons unchanged */

/* ============================================
   PREMIUM BUTTON SET — CLEARAI GOLD SYSTEM
   ============================================ */

/* Base button reset */
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.2px;
}

/* -------------------------------
   1) GOLD BUTTON (Buy the Pack)
   ------------------------------- */
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #2A2A28; /* dark text for contrast */
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(186,151,87,0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow: 0 6px 18px rgba(186,151,87,0.38);
}

/* -------------------------------
   2) OUTLINE BUTTON (Quick Check)
   ------------------------------- */
.btn-outline {
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-outline:hover {
  background: var(--gold-tint);
  transform: translateY(-2px);
}

/* Ensure spacing between hero buttons */
.hero-buttons a {
  margin-right: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* =========================
   HERO — CLEAN WHITE SECTION
   ========================= */

/* Clean white background — no tint */
.hero {
  background: var(--bg-page); /* removes tint */
  padding: 4rem 0;
}


/* Hero container uses the normal spacing */
.hero .container {
  padding: 3rem 0;
}

/* Simple block layout (text above image on narrow) */
.hero-inner {
  display: block;
}

/* Text full width */
.hero-text {
  width: 100%;
}

/* Headline */
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* HERO TEXT — match global body text */
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-sub);
}

/* Button group spacing */
.hero-buttons {
  margin: 1.5rem 0 2rem 0;
}

/* Image styling */
.hero-image img {
  max-width: 460px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  margin-top: 2rem; /* ensures spacing under buttons */
}


/* === SECTION STYLES === */
section { padding: 4rem 0; }

h2 { font-size: 2rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--gold); }

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid #E1E4E8;
  border-radius: 10px;
  padding: 1.6rem;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

/* ================================
   NEWSLETTER SECTION — CLEARAI STYLE
   ================================ */

.newsletter {
  background: #ffffff; /* clean white */
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.newsletter img {
  max-width: 360px;
  margin-bottom: 1rem;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.newsletter p {
  max-width: 620px;
  margin: 0.5rem auto 1.5rem auto;
  color: var(--text-sub);
}

/* Newsletter form layout */
.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.newsletter input[type="text"],
.newsletter input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 260px;
  font-size: 1rem;
  background: #fff;
  color: var(--text-main);
}

.newsletter input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 4px rgba(186,151,87,0.25);
}

/* Subscribe button */
.newsletter button {
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.25s ease;
}

.newsletter button:hover {
  background: var(--gold-soft);
}

.newsletter .small {
  margin-top: 1.2rem;
  color: var(--text-sub);
  font-size: 0.85rem;
}


/* === COMING SOON === */
.coming-soon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.coming-soon .card {
  opacity: 0.65;
  filter: grayscale(30%);
  pointer-events: none;
}

/* === STEPS === */
.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
}

.step {
  flex: 1 1 280px;
  text-align: center;
  max-width: 340px;
}

.step span {
  background: var(--gold);
  color: #fff;
  width: 46px;
  height: 46px;
  display: inline-block;
  line-height: 46px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--white);
  border: 1px solid #E1E4E8;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}
.price-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
}
/* === FOOTER (now matches header background) === */
.site-footer {
  background: var(--bg-header);   /* <-- changed from bg-card */
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  padding: 1.5rem 0;
}

.site-footer .small {
  color: var(--text-sub);
  font-size: 0.85rem;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .main-nav ul { flex-direction: column; gap: 1rem; }
  /* hero-inner is block now; just keep spacing sensible */
  .hero-inner { text-align: left; }
  .steps { flex-direction: column; }
}

/* ===========================
   QUICK CHECK — VERTICAL STACK
   =========================== */

/* Turn the content block into a vertical layout */
.quickcheck-content {
  display: block;
  margin-top: 2rem;
}

/* Text block goes first, full width */
.qc-text {
  width: 100%;
  max-width: 750px;
}

/* Spacing for the button */
.qc-text .btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
}

/* Image block full width underneath the text */
.qc-graphic {
  margin-top: 2rem;
  text-align: center;   /* centers the image neatly */
}

.qc-graphic img {
  max-width: 460px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* Responsive stays natural */
@media (max-width: 768px) {
  .qc-graphic img {
    max-width: 320px;
  }
}

/* === FINAL OVERRIDE: Gold CTA button === */
.hero-buttons .btn-gold,
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #2A2A28 !important; 
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 4px 12px rgba(186,151,87,0.28);
}

.hero-buttons .btn-gold:hover,
.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow: 0 6px 18px rgba(186,151,87,0.38);
  color: #2A2A28 !important;
}
/* ================================
   PREMIUM CARD DESIGN — CLEARAI
   ================================ */

/* Force 5 cards to 1 row on desktop */
.cards-premium {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

/* Card base */
.cards-premium .card {
  background: #ffffff;
  border: 1px solid #E6E2D9;        /* soft pale-gold neutral */
  border-radius: 10px;
  padding: 1.2rem 1.4rem 1.6rem;
  text-align: left;
  transition: 0.25s ease;
  position: relative;
}

/* Subtle top header bar */
.cards-premium .card-top {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 8px 8px 0 0;
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* Typography */
.cards-premium .card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

.cards-premium .card p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* Hover effect — subtle lift + gold outline */
.cards-premium .card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Tablet fallback: 2 or 3 per row depending on width */
@media (max-width: 1020px) {
  .cards-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 640px) {
  .cards-premium {
    grid-template-columns: 1fr;
  }
}



/* === Soft gold background applied ONLY to selected sections === */

/* What's Inside */
#inside {
  background: linear-gradient(135deg, #FAFAF8 0%, #F7F3EB 100%);
}

/* Why You Need It */
#why {
  background: linear-gradient(135deg, #FAFAF8 0%, #F7F3EB 100%);
}

/* Get the Pack */
#getpack {
  background: linear-gradient(135deg, #FAFAF8 0%, #F7F3EB 100%);
}
