/* ===== GoDaddy-inspired theme tokens ===== */
:root{
  --bg: #161616;
  --fg: #f7f7f7;
  --muted: #a4a4a4;

  --white: #ffffff;
  --black: #111111;

  --ui: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Old Standard TT", Georgia, "Times New Roman", serif;

  --container: 1160px;
  --radius: 999px;
  --radius-card: 0px;
}

/* ===== Base ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--serif);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color: inherit; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* ===== Layout ===== */
.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section{
  padding: 100px 0;
  background: var(--white);
  color: var(--black);
}

.section-alt{
  background: #f2f2f2;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

/* ===== Header / Nav ===== */
.site-header{
  position: absolute;
  top:0; left:0; right:0;
  z-index: 20;
  background: transparent;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-family: var(--ui);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-name{ font-size: 14px; }

.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.nav a{
  text-decoration: none;
  opacity: .92;
}
.nav a:hover{ opacity: .65; }

/* ===== HERO (full image like your screenshot) ===== */
.hero{
  position: relative;
  min-height: 88vh;
  display:flex;
  align-items:center;
  padding: 140px 0 80px;
  background: var(--bg);
  color: var(--fg);
  overflow:hidden;
}

/* Background image (set via inline style --hero-image) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

/* Overlay: stronger on LEFT so text pops like the example */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.10) 100%
  );
  z-index: 0;
}

.hero-inner{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.hero-copy{
  max-width: 760px;
}

.hero-copy h1{
  margin:0;
  font-family: var(--ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.05;
  font-size: clamp(40px, 5vw, 74px);
  text-shadow: 0 2px 30px rgba(0,0,0,.22);
}

/* New: subtitle line like your screenshot */
.hero-subtitle{
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  opacity: .92;
}

.lead{
  margin: 16px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  max-width: 54ch;
}

.hero-cta{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

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

.badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
}

/* ===== Cards ===== */
.card{
  background: var(--white);
  color: #1b1b1b;
  padding: 22px;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.card h3{
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 26px;
}

.muted{ color: #5a5a5a; }
.small{ font-size: 14px; line-height: 1.6; }

.checklist{
  margin:0;
  padding-left: 18px;
  line-height: 1.9;
}
.checklist li{ margin: 4px 0; }

/* ===== Section headings ===== */
.section h2{
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #1b1b1b;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 56px;
  padding: 10px 40px;
  border-radius: var(--radius);
  border: 2px solid var(--fg);
  background: transparent;
  color: var(--fg);
  text-decoration:none;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1px;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}

.btn:hover{
  background: var(--fg);
  color: #000;
}

.btn-outline{
  border-color: rgba(255,255,255,.7);
  opacity: .95;
}

.btn-ghost{
  border-color: rgba(0,0,0,.2);
  color: #000;
  background: #fff;
}
.btn-ghost:hover{
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn-small{
  min-height: 40px;
  padding: 6px 18px;
  font-size: 12px;
}

.btn-block{
  width: 100%;
}

/* Links inside cards */
.link{
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.link:hover{ opacity:.7; }

/* ===== Pricing bits ===== */
.price-card .pill{
  display:inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #161616;
  color: #fff;
  margin-bottom: 10px;
}

.price{
  font-family: var(--ui);
  font-weight: 700;
  font-size: 42px;
  margin: 10px 0 14px;
}
.per{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
  color: #555;
}

.bullets{
  margin: 0 0 18px;
  padding-left: 18px;
  line-height: 1.8;
}

/* ===== FAQ ===== */
.faq details{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 16px 18px;
  margin: 12px 0;
}
.faq summary{
  cursor:pointer;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Form ===== */
.form label{
  display:block;
  margin: 14px 0;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  color:#1b1b1b;
}

.form input,
.form textarea{
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border: 1px solid rgba(0,0,0,.18);
  font-family: var(--serif);
  font-size: 16px;
}

/* ===== Footer ===== */
.site-footer{
  background: var(--bg);
  color: var(--fg);
  padding: 30px 0;
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a{ text-decoration:none; opacity:.9; }
.site-footer a:hover{ opacity:.65; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nav{ gap: 14px; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 620px){
  .header-inner{ flex-direction: column; gap: 12px; }
  .hero{ padding-top: 160px; }
}
