/* Australia Mining Job — mobile-first landing page styles */

:root {
  --blue-600: #046bd2;
  --blue-700: #0356a8;
  --blue-50: #eaf3fd;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 45px rgba(4, 107, 210, 0.18);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 999px;
}

h1, h2, h3 { color: var(--ink-900); font-weight: 800; line-height: 1.2; margin: 0; }
h1 { font-size: 32px; letter-spacing: -0.02em; }
h2 { font-size: 26px; letter-spacing: -0.01em; }
h3 { font-size: 18px; }
p { margin: 0; }

.lede { font-size: 17px; color: var(--ink-700); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--blue-700);
  border: 1.5px solid var(--slate-200);
}
.btn-ghost:hover { border-color: var(--blue-600); background: var(--blue-50); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--slate-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.header-cta { display: none; }
@media (min-width: 680px) {
  .header-cta { display: inline-flex; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 65%);
  padding: 36px 0 40px;
}
.hero .container { display: flex; flex-direction: column; gap: 28px; }
.hero-copy { text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.hero h1 { font-size: 30px; }
.hero-sub { font-size: 16px; color: var(--ink-700); max-width: 44ch; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center;
  font-size: 13px; color: var(--ink-500); font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-media { display: flex; justify-content: center; }
.book-frame {
  position: relative;
  max-width: 280px;
}
.book-frame img {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.badge-floating {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-floating .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }

.splash-badge {
  position: absolute;
  top: -58px;
  left: -14px;
  z-index: 2;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  max-width: 200px;
  transform: rotate(-6deg);
}
.splash-badge strong {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  color: #fff7ed;
}
.splash-badge span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

@media (min-width: 860px) {
  .hero .container { flex-direction: row-reverse; align-items: center; gap: 48px; }
  .hero-copy { text-align: left; align-items: flex-start; flex: 1.1; }
  .hero-media { flex: 1; }
  .hero h1 { font-size: 42px; }
  .hero-trust { justify-content: flex-start; }
}

/* Sections */
.section { padding: 48px 0; }
.section-tight { padding: 32px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 32px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.section-alt { background: var(--slate-100); }

.intro-text { max-width: 760px; margin: 0 auto; text-align: center; font-size: 16px; color: var(--ink-700); }

/* Modules grid */
.modules { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .modules { grid-template-columns: repeat(2, 1fr); } }

.module-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}
.module-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-body h3 { margin-bottom: 8px; }
.module-body ul { margin: 0; padding-left: 18px; color: var(--ink-700); font-size: 14.5px; display: flex; flex-direction: column; gap: 6px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 52ch; }
.cta-band .btn-primary { box-shadow: 0 10px 24px rgba(0,0,0,0.25); }

/* Problem / solution */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-copy { display: flex; flex-direction: column; gap: 14px; }
.split-copy ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; color: var(--ink-700); }
.split.reverse .split-media { order: -1; }
@media (min-width: 860px) { .split.reverse .split-media { order: 1; } }

.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); }
.checklist li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px; margin-top: 2px;
  border-radius: 50%;
  background: #16a34a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/60% no-repeat;
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 780px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stars { color: var(--orange-500); font-size: 14px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink-700); font-size: 15px; }
.testimonial-person { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testimonial-person img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-person span { font-weight: 700; color: var(--ink-900); font-size: 14px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.faq-question .chev { transition: transform 0.2s ease; flex: none; color: var(--blue-600); }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-answer { padding: 0 18px 18px; color: var(--ink-700); font-size: 14.5px; }
.faq-question::-webkit-details-marker { display: none; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 10px 16px;
  box-shadow: 0 -6px 20px rgba(15,23,42,0.08);
}
@media (min-width: 680px) { .sticky-cta { display: none; } }

/* Footer */
.site-footer { background: var(--ink-900); color: #cbd5e1; padding: 40px 0 90px; }
@media (min-width: 680px) { .site-footer { padding: 40px 0; } }
.footer-top { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.footer-logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
}
.footer-logo-chip img { height: 26px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; font-size: 14px; }
.footer-links a { text-decoration: none; color: #cbd5e1; }
.footer-links a:hover { color: var(--white); }
.footer-note { font-size: 12.5px; color: #94a3b8; text-align: center; margin-top: 20px; max-width: 640px; margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: var(--slate-200); width: 100%; margin: 8px 0; }

/* ─────────────────────────  Checkout page  ───────────────────────── */

.checkout-page-body { background: var(--slate-100); min-height: 100vh; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0 60px;
}
@media (min-width: 960px) {
  .checkout-layout { grid-template-columns: 1fr 1.1fr; gap: 36px; }
}

.order-card, .pay-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.order-card h2, .pay-card h2 { font-size: 20px; margin-bottom: 16px; }

.order-product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 18px;
}
.order-product img { width: 64px; height: 80px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-sm); }
.order-product-copy strong { display: block; color: var(--ink-900); font-size: 15px; }
.order-product-copy span { font-size: 13px; color: var(--ink-500); }

.value-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.value-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-700); }
.value-row.bonus { color: #16a34a; font-weight: 700; }
.value-row-sub { font-size: 12.5px; color: var(--ink-500); margin-top: -4px; }
.value-row.total-value { color: var(--ink-500); text-decoration: line-through; }
.value-row.today {
  border-top: 1px dashed var(--slate-200);
  padding-top: 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
}
.value-row.today span:last-child { color: var(--blue-600); }

.deliverables-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.deliverables-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-700); align-items: flex-start; }
.deliverables-list li::before { content: "✓"; color: #16a34a; font-weight: 800; flex: none; }

.mini-testimonials { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.mini-testimonial { font-size: 13px; color: var(--ink-700); padding-top: 14px; border-top: 1px solid var(--slate-200); }
.mini-testimonial .stars { font-size: 12px; margin-bottom: 4px; }
.mini-testimonial b { display: block; margin-top: 4px; color: var(--ink-900); font-size: 12.5px; }

.pay-card #payment-element { margin-bottom: 18px; }
.pay-card label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-800); margin-bottom: 6px; }
.pay-card input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 18px;
  font-family: inherit;
}
.pay-card input[type="email"]:focus { outline: none; border-color: var(--blue-600); }

#pay-error {
  display: none;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 14px;
}

.pay-secure { display: flex; align-items: center; gap: 6px; justify-content: center; font-size: 12.5px; color: var(--ink-500); margin-top: 12px; }

/* ─────────────────────────  Success page  ───────────────────────── */

.success-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 28px;
  text-align: center;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 28px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.success-card h1 { font-size: 24px; margin-bottom: 10px; }
.success-card .lede { margin-bottom: 26px; }
.download-list { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.download-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.download-card:hover { border-color: var(--blue-600); background: var(--blue-50); }
.download-icon { font-size: 28px; flex: none; }
.download-copy { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.download-copy strong { color: var(--ink-900); font-size: 15px; }
.download-copy span { font-size: 13px; color: var(--ink-500); }
.download-btn { flex: none; background: var(--blue-600); color: var(--white); font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 8px; }
.success-note { margin-top: 22px; font-size: 12.5px; color: var(--ink-500); }

/* ─────────────────────────  Legal pages  ───────────────────────── */

.legal-page { max-width: 780px; margin: 0 auto; }
.legal-page h1 { font-size: 30px; margin-bottom: 18px; }
.legal-intro { font-size: 16px; color: var(--ink-700); margin-bottom: 28px; }

.legal-callout {
  background: var(--blue-50);
  border: 1px solid #cfe4fb;
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 32px;
}
.legal-callout strong { display: block; margin-bottom: 10px; color: var(--ink-900); }
.legal-callout ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; color: var(--ink-700); font-size: 14.5px; }

.legal-content h2 { font-size: 18px; margin-top: 32px; margin-bottom: 10px; }
.legal-content p { margin-bottom: 14px; color: var(--ink-700); font-size: 15px; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; color: var(--ink-700); font-size: 15px; display: flex; flex-direction: column; gap: 8px; }
.legal-content a { color: var(--blue-600); text-decoration: underline; }

/* ─────────────────────────  Contact page  ───────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 780px) {
  .contact-layout { grid-template-columns: 0.8fr 1.2fr; }
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-info-card:hover { border-color: var(--blue-600); box-shadow: var(--shadow-md); }
.contact-icon-badge {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-info-copy strong { color: var(--ink-900); font-size: 13px; }
.contact-info-copy a, .contact-info-copy span { color: var(--ink-700); font-size: 14px; }
.contact-info-copy a { text-decoration: none; word-break: break-word; }
.contact-info-copy a:hover { color: var(--blue-600); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: 19px; margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--ink-500); margin-bottom: 22px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-800); margin: 16px 0 7px; }
.contact-form-row label { margin-top: 0; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 9px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a3aebd; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.12);
}
.contact-form button {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-status { font-size: 13.5px; margin-top: 14px; min-height: 1px; }
.contact-status.success { color: #16a34a; font-weight: 600; }
.contact-status.error { color: #b91c1c; font-weight: 600; }

/* ─────────────────────────  Sneak Peek carousel  ───────────────────────── */

.sneak-section { background: var(--ink-900); }
.sneak-heading { color: var(--white); }
.sneak-lede { color: #cbd5e1; }
.eyebrow-dark {
  background: rgba(59, 130, 246, 0.16);
  color: #7db8ff;
}

.sneak-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.sneak-scroll::-webkit-scrollbar { height: 8px; }
.sneak-scroll::-webkit-scrollbar-thumb { background: #334155; border-radius: 999px; }
.sneak-scroll::-webkit-scrollbar-track { background: transparent; }

.sneak-card {
  position: relative;
  flex: none;
  width: 130px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid #334155;
  background: #1e293b;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.sneak-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45); border-color: var(--blue-600); }
.sneak-card img { display: block; width: 100%; height: auto; user-select: none; pointer-events: none; }
.sneak-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}
.sneak-hint { text-align: center; font-size: 12.5px; color: #94a3b8; margin-top: 4px; }

@media (min-width: 700px) {
  .sneak-card { width: 160px; }
}
