/* talhaarshad.com — v1 stylesheet. Clean, fast, credible. No framework. */

:root {
  --ink: #14181f;
  --ink-soft: #4a5563;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --accent: #1f6feb;       /* operator blue */
  --accent-dark: #1551b5;
  --good: #137333;
  --warn: #92400e;
  --maxw: 960px;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(20, 24, 31, .04), 0 8px 24px rgba(20, 24, 31, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: 2.6rem; margin: 0 0 .5em; }
h2 { font-size: 1.8rem; margin: 2.2em 0 .6em; }
h3 { font-size: 1.2rem; margin: 1.6em 0 .4em; }
p { margin: 0 0 1em; }

.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }
.center { text-align: center; }

/* ---- Nav ---- */
header.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
header.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-size: 1.05rem; }
.brand:hover { text-decoration: none; }
.brand span { color: var(--accent); }
nav.links a { color: var(--ink-soft); margin-left: 22px; font-size: .95rem; font-weight: 500; }
nav.links a:hover { color: var(--ink); text-decoration: none; }
@media (max-width: 640px) {
  nav.links a { margin-left: 14px; font-size: .85rem; }
  .brand { font-size: .95rem; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 12px 22px; border-radius: var(--radius); font-weight: 600;
  border: 1px solid var(--accent); transition: background .15s, transform .05s;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--accent); }
.btn.ghost:hover { background: var(--bg-soft); }

/* ---- Hero ---- */
.hero { padding: 84px 0 56px; }
.hero h1 { max-width: 16ch; }
.hero .lede { font-size: 1.25rem; color: var(--ink-soft); max-width: 56ch; margin-bottom: 1.6em; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 700; color: var(--accent); margin-bottom: 1em; }

/* ---- Sections ---- */
section { padding: 8px 0; }
.band { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 48px 0; }

/* ---- Offer cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  background: var(--bg); box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card .tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--ink-soft); }
.card h3 { margin-top: .3em; }
.card .price { font-weight: 700; font-size: 1.15rem; margin: .4em 0; }
.card p { font-size: .95rem; color: var(--ink-soft); flex-grow: 1; }
.card a.more { font-weight: 600; margin-top: .6em; }

/* ---- Offer detail page ---- */
.pricebox {
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 20px 24px; background: var(--bg-soft); margin: 24px 0;
}
.pricebox .big { font-size: 1.6rem; font-weight: 700; }
ul.clean { list-style: none; padding-left: 0; }
ul.clean li { padding-left: 26px; position: relative; margin-bottom: .5em; }
ul.clean li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
ul.no li { padding-left: 26px; position: relative; margin-bottom: .4em; list-style: none; color: var(--ink-soft); }
ul.no { padding-left: 0; }
ul.no li::before { content: "×"; position: absolute; left: 4px; color: #b42318; font-weight: 700; }

.callout { background: #eef4ff; border: 1px solid #cfe0ff; border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; font-size: .95rem; }

/* ---- Footer ---- */
footer.site { border-top: 1px solid var(--line); margin-top: 64px; padding: 32px 0; color: var(--ink-soft); font-size: .9rem; }
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---- Misc ---- */
.kicker { display: inline-block; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 16px; }
hr.soft { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.back { font-size: .9rem; font-weight: 600; }
