/* =========================================
   Owner Protection — Global Stylesheet
   ========================================= */

:root {
  --navy: #1a2332;
  --charcoal: #2c3e50;
  --mid-gray: #5a6472;
  --light-gray: #f4f6f8;
  --border: #dde2e8;
  --gold: #c9a84c;
  --gold-light: #f0d88a;
  --gold-pale: #fdf8ec;
  --white: #ffffff;
  --red-flag: #c0392b;
  --green: #27ae60;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(26,35,50,0.08);
  --shadow-md: 0 4px 24px rgba(26,35,50,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--light {
  background: var(--light-gray);
}

.section--navy {
  background: var(--navy);
  color: #c8d0db;
}
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--gold-pale {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
}

/* ---- Navigation ---- */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav__logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  color: #c8d0db;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav__links a.nav__cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 18px;
}
.nav__links a.nav__cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--lg {
  padding: 17px 36px;
  font-size: 1rem;
}

/* ---- Hero ---- */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero__sub {
  color: #a8b4c2;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Section Headings ---- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p {
  color: var(--mid-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title__line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.card--accent {
  border-top: 3px solid var(--gold);
}

/* ---- Checklist ---- */
.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 1px;
}

/* ---- Grid helpers ---- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Who it's for pills ---- */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.audience-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.audience-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Disclaimer box ---- */
.disclaimer {
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.6;
}
.disclaimer strong { color: var(--charcoal); }

/* ---- Form ---- */
.form-grid {
  display: grid;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

label .required {
  color: var(--red-flag);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6472' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-radio-group label,
.form-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 0.95rem;
}

.form-radio-group input[type="radio"],
.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}

.form-radio-group input[type="radio"] {
  border-radius: 50%;
}

.form-radio-group input[type="radio"]:checked,
.form-checkbox-group input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.form-radio-group input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  top: 3px;
  left: 3px;
  transform: rotate(-45deg);
}

.file-input-wrapper {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--light-gray);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.file-input-wrapper:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
}

.file-label-text {
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.875rem;
  pointer-events: none;
}

.file-label-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hint {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

.agreement-box {
  background: var(--light-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.agreement-box label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
  cursor: pointer;
}

.form-submit-area {
  text-align: center;
  padding-top: 8px;
}

.form-submit-area .btn {
  min-width: 240px;
  font-size: 1rem;
}

.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ---- Price box ---- */
.price-block {
  background: var(--navy);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.price-block__label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.price-block__regular {
  font-size: 1.5rem;
  color: #7a8899;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-block__beta {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.price-block__note {
  font-size: 0.9rem;
  color: #a8b4c2;
  max-width: 320px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* ---- Timeline / steps ---- */
.steps {
  display: flex;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step:last-child::before { display: none; }

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}

.step h4 { margin-bottom: 6px; font-size: 0.95rem; }
.step p { font-size: 0.85rem; color: var(--mid-gray); }

/* ---- Turnaround badge ---- */
.turnaround-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

/* ---- Thank you page ---- */
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.5rem;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: #a8b4c2;
  max-width: 580px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: #7a8899;
  padding: 48px 0 32px;
  border-top: 3px solid var(--gold);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer__brand h3 span { color: var(--gold); }

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #7a8899;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col ul a {
  color: #7a8899;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__col ul a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a { color: #7a8899; }
.footer__bottom a:hover { color: var(--gold); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--mid-gray);
}
.breadcrumb a { color: var(--mid-gray); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ---- Alert strip ---- */
.alert-strip {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .step::before { display: none; }
  .step { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .step__num { flex-shrink: 0; margin: 0; }
  .step-content { text-align: left; }
}

@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero { padding: 64px 0 56px; }
  .page-hero { padding: 48px 0 40px; }
  .nav__links { display: none; flex-direction: column; gap: 4px; width: 100%; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__inner { flex-wrap: wrap; height: auto; padding: 16px 0; }
  .nav__links { padding-bottom: 12px; }
  .nav__links a { padding: 10px 14px; }
  .price-block { padding: 28px 24px; }
  .price-block__beta { font-size: 2.5rem; }
}
