/* ============================================
   CONTENTKRAAL — THEME STYLES
   Social Media Agency, Johannesburg, SA
   ============================================ */

:root {
  --bg: #0d0d0d;
  --surface: #181818;
  --surface-2: #222222;
  --accent: #c8ff3a;
  --accent-dim: #a3d430;
  --text: #f0f0f0;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #2a2a2a;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .hero-tag, .section-label, .price-tier, .footer-logo {
  font-family: 'Syne', system-ui, sans-serif;
}

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px 80px;
  min-height: 100vh;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero .lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* Device stack illustration */
.device-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.phone-mockup {
  width: 240px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  border: 1px solid #222;
}

.phone-screen {
  background: var(--surface);
  border-radius: 22px;
  padding: 12px;
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ig-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #555);
}

.ig-username {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.ig-video-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a2a1a, #2a3a2a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  position: relative;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  position: relative;
}

.play-btn::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 12px;
  border-left: 14px solid #0d0d0d;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.ig-reel-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  background: var(--accent);
  color: #0d0d0d;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.ig-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.ig-actions span {
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
}

.ig-likes {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ig-caption {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-card-2 {
  align-self: flex-end;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- SERVICES ---- */
.services {
  padding: 80px;
  background: var(--surface);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.services h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 500px;
}

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--accent-dim);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- PRICING ---- */
.pricing {
  padding: 80px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}

.price-card-featured {
  border-color: var(--accent);
  background: #111;
}

.price-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text);
}

.price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

/* ---- ABOUT ---- */
.about {
  padding: 80px;
  background: var(--surface);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
}

.about-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.about-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
}

.about-stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 80px;
  background: var(--bg);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-statement {
  font-size: 18px !important;
  color: var(--text) !important;
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 8px !important;
}

/* ---- FOOTER ---- */
footer {
  background: var(--surface);
  padding: 60px 80px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 48px;
  }
  .hero h1 { font-size: 40px; }
  .device-stack { display: none; }
  .services, .pricing, .about, .closing, footer { padding: 60px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 24px; }
  .services, .pricing, .about, .closing, footer { padding: 48px 24px; }
  .hero h1 { font-size: 32px; }
  .hero .lede { font-size: 16px; }
  .price-card { padding: 24px; }
}