/*
Theme Name: Urgent Website
Theme URI: https://urgentwebsite.in
Author: Urgent Website
Author URI: https://urgentwebsite.in
Description: Deployed in 7 days. A brutalist, minimal WordPress theme for the fastest web development service in India. Built for speed, designed for impact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urgentwebsite
Tags: blog, portfolio, grid-layout, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --bg: #FAFAF7;
  --bg-alt: #F4F4F0;
  --text: #0A0A0A;
  --text-body: #1A1A1A;
  --text-dim: #737373;
  --text-light: #A3A3A3;
  --border: #E5E5E0;
  --border-dark: #D4D4D0;
  --accent: #FF3D00;
  --accent-soft: rgba(255, 61, 0, 0.06);
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-read { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--accent); z-index: 9999;
  transition: width 0.1s ease-out; width: 0;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(250, 250, 247, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--border); padding: 14px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
}
.logo-dot {
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.nav-menu { display: flex; gap: 36px; }
.nav-menu a {
  font-size: 13px; color: var(--text-dim); font-weight: 450;
  transition: color 0.2s; position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  font-size: 13px; font-weight: 500;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn .btn-arrow {
  font-size: 11px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-accent {
  background: var(--accent); color: white;
  box-shadow: 0 1px 2px rgba(255, 61, 0, 0.22);
}
.btn-accent:hover {
  background: #E83600; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 61, 0, 0.28);
}
.btn-accent:hover .btn-arrow { transform: translateX(3px); }
.btn-accent:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(255, 61, 0, 0.22); }
.btn-outline { border-color: var(--border-dark); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--text); background: var(--text); color: var(--bg); }
.btn-ghost { color: var(--text); padding: 0 0 4px; border-bottom: 1px solid var(--text); border-radius: 0; }
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }

.menu-toggle {
  display: none; font-size: 18px; color: var(--text);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.menu-toggle:hover { background: var(--bg-alt); }

/* Mobile menu */
.mobile-menu {
  position: fixed; left: 0; right: 0;
  top: 64px; /* fallback; updated dynamically by JS */
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0 24px;
  z-index: 999;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease,
              visibility 0.3s;
  box-shadow: 0 24px 48px -24px rgba(10, 10, 10, 0.18);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu > a:not(.btn) {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  transition: background 0.2s, color 0.2s, padding-left 0.2s ease;
}
.mobile-menu > a:not(.btn):hover { color: var(--accent); background: var(--accent-soft); padding-left: 38px; }
.mobile-menu > a:not(.btn)::after {
  content: '\f054'; font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900; font-size: 10px; color: var(--text-light);
  transition: transform 0.2s, color 0.2s;
}
.mobile-menu > a:not(.btn):hover::after { transform: translateX(4px); color: var(--accent); }
.mobile-menu .btn { margin: 20px 32px 0; width: calc(100% - 64px); }

/* Page Hero (shared by blog & contact) */
.page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--border); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-end; }
.page-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.page-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 500; line-height: 0.9; letter-spacing: -0.04em; }
.page-hero h1 .serif { color: var(--accent); }
.page-hero-meta { font-size: 17px; color: var(--text-dim); max-width: 400px; padding-bottom: 12px; }
.page-hero-meta strong { color: var(--text); font-weight: 500; }

/* Reveal Animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ============ HOMEPAGE: HERO ============ */
.hero { padding: 160px 0 100px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.hero-label .live-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: dot-pulse 1.5s infinite; }
.hero-label .divider { width: 24px; height: 1px; background: var(--border-dark); }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}
.hero h1 .serif { font-size: 1.05em; }
.hero h1 .line { display: block; }
.hero h1 .accent-text { color: var(--accent); }

.hero .lead { font-size: 17px; color: var(--text-dim); max-width: 460px; margin-bottom: 40px; line-height: 1.65; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }

.timer-block {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.timer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.timer-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.5;
}
.timer-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid var(--border-dark); color: var(--text-dim); background: var(--white);
}
.timer-pill .pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-light); }
.timer-pill-running { color: var(--accent); border-color: rgba(255, 61, 0, 0.35); background: var(--accent-soft); }
.timer-pill-running .pill-dot { background: var(--accent); animation: dot-pulse 1.5s infinite; }
.timer-pill-done { color: #16A34A; border-color: rgba(22, 163, 74, 0.3); background: rgba(22, 163, 74, 0.06); }
.timer-pill-done .pill-dot { background: #16A34A; }
.timer-body { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.timer-display {
  font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 500;
  color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.timer-display .seconds { color: var(--accent); }
.timer-display.is-open {
  font-size: 13px; font-weight: 500; color: var(--text-dim);
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.5;
}
.timer-display.is-done { color: #16A34A; }
.queue-progress {
  flex: 1 1 160px; min-width: 120px; height: 6px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 999px; overflow: hidden; display: block;
}
.queue-progress-bar {
  display: block; height: 100%; width: 0%;
  background: var(--accent); border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.timer-project {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.timer-project .pn { color: var(--text); font-weight: 600; }
.timer-queue-meta {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.timer-queue-meta .timer-queue-count { font-size: 18px; font-weight: 600; color: var(--accent); }

/* Hero Visual — Minimal Wireframe */
.hero-visual { position: relative; perspective: 1200px; }
.wireframe {
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.wf-frame { border: 1px solid var(--border-dark); border-radius: 10px; overflow: hidden; background: var(--white); }
.wf-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.wf-dot { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--border-dark); }
.wf-url {
  margin-left: 10px; flex: 1; font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--text-light); border: 1px solid var(--border); padding: 3px 10px; border-radius: 4px;
}
.wf-body { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.wf-nav { display: flex; justify-content: space-between; align-items: center; }
.wf-logo { width: 48px; height: 10px; background: var(--text); border-radius: 2px; }
.wf-navlinks { display: flex; gap: 8px; }
.wf-navlinks div { width: 20px; height: 4px; background: var(--border-dark); border-radius: 2px; }
.wf-hero { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; align-items: center; }
.wf-h1 { height: 16px; background: var(--text); width: 90%; border-radius: 3px; margin-bottom: 6px; }
.wf-h1.short { width: 60%; }
.wf-line { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 4px; }
.wf-line.w70 { width: 70%; }
.wf-line.w50 { width: 50%; }
.wf-btn { width: 64px; height: 16px; background: var(--accent); border-radius: 3px; margin-top: 6px; }
.wf-visual { height: 70px; border: 1px solid var(--border); border-radius: 6px; background: var(--bg-alt); }
.wf-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wf-feat { height: 50px; border: 1px solid var(--border); border-radius: 6px; }

.wf-badge {
  position: absolute; top: -20px; right: -10px;
  background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.05em;
  transform: rotate(3deg); box-shadow: 0 8px 24px rgba(10, 10, 10, 0.12);
}
.wf-badge .big { font-size: 16px; font-weight: 500; display: block; }
.wf-badge .accent { color: var(--accent); }

/* ============ HOMEPAGE: LIVE FEED ============ */
.feed-section {
  padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; background: var(--bg);
}
.feed-track { display: flex; gap: 48px; animation: feed-scroll 40s linear infinite; white-space: nowrap; }
@keyframes feed-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.feed-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-dim); flex-shrink: 0;
}
.feed-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-light); }
.feed-item .dot.live { background: var(--accent); animation: dot-pulse 1s infinite; }
.feed-item .dot.done { background: #16A34A; }
.feed-item .name { color: var(--text); font-weight: 500; }
.feed-item .sep { color: var(--border-dark); }

/* When the live feed is disabled, tighten the hero → first section gap. */
.homepage-feed-off .hero { padding-bottom: 60px; }
.homepage-feed-off .hero + .section { padding-top: 60px; }

/* ============ SECTIONS ============ */
.section { padding: 130px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 72px; max-width: 680px; }
.section-head.center { margin: 0 auto 72px; text-align: center; }
.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.section-head.center .section-label { justify-content: center; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 500; margin-bottom: 20px; letter-spacing: -0.035em;
}
.section-head h2 .serif { font-size: 1.05em; }
.section-head p { font-size: 17px; color: var(--text-dim); line-height: 1.6; }

/* ============ HOMEPAGE: PRICING ============ */
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); }
.price-col { padding: 48px 36px; border-right: 1px solid var(--border); position: relative; transition: background 0.3s; }
.price-col:last-child { border-right: none; }
.price-col:hover { background: var(--white); }
.price-col.featured { background: var(--white); }
.price-col.featured::before {
  content: 'FASTEST'; position: absolute; top: 0; left: 36px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--accent);
  letter-spacing: 0.12em; background: var(--bg); padding: 0 8px; transform: translateY(-50%);
}
/* Limited-offer tooltip for select tiers */
.price-notice {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 7px; cursor: help;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  background: var(--bg); padding: 4px 10px; border: 1px solid var(--accent);
  z-index: 3;
}
.price-notice-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: noticePulse 1.6s ease-in-out infinite; }
@keyframes noticePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }
.price-notice-ico { font-size: 10px; color: var(--text-dim); }
.price-notice-tip {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-4px);
  width: 220px; white-space: normal; text-align: center; font-family: inherit; font-size: 12px; line-height: 1.5; letter-spacing: 0;
  text-transform: none; color: #fff; background: var(--text); padding: 12px 14px;
  opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease; pointer-events: none;
  z-index: 5;
}
.price-notice-tip::before {
  content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--text);
}
.price-notice:hover .price-notice-tip,
.price-notice:focus-visible .price-notice-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.price-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.price-name { font-size: 22px; font-weight: 500; margin-bottom: 20px; letter-spacing: -0.02em; }
.price-name .serif { color: var(--accent); }
.price-amount { font-size: 44px; font-weight: 500; letter-spacing: -0.04em; margin-bottom: 8px; }
.price-amount .currency { font-size: 20px; color: var(--text-dim); vertical-align: top; margin-right: 2px; }
.price-sub { font-size: 13px; color: var(--text-light); margin-bottom: 36px; }
.price-features { margin-bottom: 36px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--text); }
.price-features li .check { color: var(--accent); font-size: 11px; margin-top: 5px; flex-shrink: 0; }
.price-features li .x { color: var(--text-light); }
.price-features li.dim { color: var(--text-light); }
.price-cta { width: 100%; justify-content: center; }

/* ============ HOMEPAGE: PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); }
.process-step { padding: 48px 32px; border-right: 1px solid var(--border); position: relative; transition: background 0.3s; }
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step:hover { background: var(--white); }
.process-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-light); margin-bottom: 24px; }
.process-step h4 { font-size: 20px; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.02em; }
.process-step p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }

/* ============ HOMEPAGE: PAY ON DELIVERY ============ */
.pod { background: var(--bg-alt); text-align: center; position: relative; overflow: hidden; }
.pod-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 30vw;
  color: rgba(10, 10, 10, 0.025); white-space: nowrap; pointer-events: none; line-height: 1;
}
.pod > .container { position: relative; z-index: 1; }
.pod-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border); margin-bottom: 56px; text-align: left;
}
.pod-step {
  padding: 40px 28px; border-right: 1px solid var(--border); position: relative;
  transition: background 0.3s;
}
.pod-step:last-child { border-right: none; }
.pod-step:hover { background: var(--white); }
.pod-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-light);
  letter-spacing: 0.12em; margin-bottom: 24px;
}
.pod-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  color: var(--accent); margin-bottom: 20px;
}
.pod-step h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px; }
.pod-step p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.pod-assurance {
  display: flex; align-items: flex-start; gap: 16px; max-width: 760px; margin: 0 auto;
  padding: 24px 28px; border: 1px solid var(--border); border-radius: 4px; background: var(--white);
  text-align: left;
}
.pod-assurance-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.pod-assurance p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }
@media (max-width: 900px) {
  .pod-flow { grid-template-columns: repeat(2, 1fr); }
  .pod-step:nth-child(2) { border-right: none; }
  .pod-step:nth-child(1), .pod-step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .pod-flow { grid-template-columns: 1fr; }
  .pod-step { border-right: none; border-bottom: 1px solid var(--border); }
  .pod-step:last-child { border-bottom: none; }
}

/* ============ HOMEPAGE: FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.2s; padding:20px }
.faq-item:hover { background: var(--white); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; padding: 10px 0;
  font-size: 18px; font-weight: 500; letter-spacing: -0.015em;
}
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--text-dim);
  transition: all 0.3s; flex-shrink: 0; margin-left: 20px;
}
.faq-item.active .faq-icon { background: var(--accent); border-color: var(--accent); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  color: var(--text-dim); font-size: 15px; line-height: 1.7;
}
.faq-item.active .faq-a { max-height: 320px; padding-bottom: 28px; }

/* ============ HOMEPAGE: FINAL CTA ============ */
.final-cta { padding: 140px 0; text-align: center; border-top: 1px solid var(--border); }
.final-cta h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; margin-bottom: 24px; letter-spacing: -0.035em; }
.final-cta h2 .serif { color: var(--accent); font-size: 1.05em; }
.final-cta p { font-size: 17px; color: var(--text-dim); max-width: 480px; margin: 0 auto 40px; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-dim); max-width: 280px; margin-top: 20px; font-size: 14px; line-height: 1.6; }
.footer h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  color: var(--text-light); letter-spacing: 0.1em; margin-bottom: 20px; font-weight: 500;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: 14px; color: var(--text); transition: color 0.2s; }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 32px;
  border-top: 1px solid var(--border); font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-light);
}

/* ============ FLOATING ELEMENTS ============ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px;
  background: #25D366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px; z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  animation: wa-float 2.8s ease-in-out infinite;
}
/* Expanding pulse ring — continuous */
.float-wa::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
/* Gentle icon nudge */
.float-wa i { animation: wa-wiggle 2.8s ease-in-out infinite; display: inline-block; }
.float-wa:hover {
  background: #1da851;
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}
/* Hover tooltip */
.float-wa::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--text);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.2);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1;
}
.float-wa:hover::after,
.float-wa:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: 0.8; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes wa-wiggle {
  0%, 100% { transform: rotate(0); }
  20%      { transform: rotate(-12deg); }
  40%      { transform: rotate(10deg); }
  60%      { transform: rotate(-6deg); }
  80%      { transform: rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa, .float-wa::before, .float-wa i { animation: none; }
}
.back-top {
  position: fixed; bottom: 28px; left: 28px; width: 44px; height: 44px;
  background: var(--white); border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 14px;
  z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ============ GUARANTEE RIBBON (pinned, homepage) ============ */
.guarantee-ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  background: var(--text);
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
  border-bottom: 1px solid rgba(255, 61, 0, 0.45);
  overflow: hidden;
}
.guarantee-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 61, 0, 0.14), transparent);
  transform: translateX(-100%);
  animation: ribbon-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ribbon-shimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
.guarantee-ribbon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}
.guarantee-ribbon-bolt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  flex: none;
  animation: bolt-pulse 1.8s ease-in-out infinite;
}
@keyframes bolt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(255, 61, 0, 0); }
}
.guarantee-ribbon-text strong { font-weight: 600; color: #fff; }
.guarantee-ribbon-text em {
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.18em;
  letter-spacing: 0;
}
.guarantee-ribbon-link:hover .guarantee-ribbon-text em { color: #ff8a5c; }

/* Ribbon lives at the top of the fixed header (in-flow). Keep it flush to
   the very top by zeroing the header's top padding, then restore proper
   spacing between the ribbon and the nav row via the header-inner. */
body.has-guarantee-ribbon .site-header,
body.has-guarantee-ribbon .site-header.scrolled { padding-top: 0; }
body.has-guarantee-ribbon .header-inner { padding-top: 16px; }

/* Keep fixed header content clear of the (now taller) header on the homepage */
body.has-guarantee-ribbon .hero,
body.has-guarantee-ribbon .page-hero,
body.has-guarantee-ribbon .article-hero { padding-top: 190px; }
body.has-guarantee-ribbon .error-wrap { padding-top: 150px; }

/* ============ GUARANTEE SECTION (the pledge) ============ */
.guarantee {
  background: var(--text);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 61, 0, 0.25);
  border-bottom: 1px solid rgba(255, 61, 0, 0.25);
}
.guarantee-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 20%, rgba(255, 61, 0, 0.18), transparent 42%),
                    radial-gradient(circle at 88% 90%, rgba(255, 61, 0, 0.12), transparent 45%);
  pointer-events: none;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.guarantee-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.guarantee-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 1.5s infinite;
}
.guarantee-head {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 32px;
}
.guarantee-head .serif { display: inline; }
.guarantee-accent {
  color: var(--accent);
  font-size: 1.04em;
}
.guarantee-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #c9c9c2;
  max-width: 540px;
  margin-bottom: 20px;
}
.guarantee-sub::first-letter { color: #fff; }
.guarantee-terms {
  font-size: 13px;
  line-height: 1.7;
  color: #8a8a82;
  border-left: 2px solid rgba(255, 61, 0, 0.5);
  padding-left: 16px;
  max-width: 540px;
  margin-bottom: 40px;
}
.guarantee-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-ghost-dark {
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.btn-ghost-dark:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* The rotating seal — signature visual */
.guarantee-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-seal {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.guarantee-seal::after {
  content: '';
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,0,0.16), transparent 68%);
  filter: blur(8px);
  z-index: -1;
}
.guarantee-seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: seal-rotate 20s linear infinite;
}
@keyframes seal-rotate {
  to { transform: rotate(360deg); }
}
.guarantee-seal-text {
  fill: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}
.guarantee-seal-core {
  position: relative;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 61, 0, 0.4);
  background: radial-gradient(circle at 50% 35%, #1c1c1c, #0a0a0a 78%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.02), 0 24px 60px rgba(0,0,0,0.5);
}
.guarantee-seal-core::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 61, 0, 0.28);
}
.seal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #8a8a82;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.seal-time {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.2rem, 9vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}
.seal-unit {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--accent);
  margin-left: 2px;
  vertical-align: super;
}
.seal-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .guarantee { padding: 84px 0; }
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }
  .guarantee-visual { order: -1; }
  .guarantee-seal { width: min(260px, 70vw); }
}
@media (max-width: 560px) {
  .guarantee-ribbon { font-size: 10.5px; padding: 8px 40px 8px 12px; }
  .guarantee-ribbon-text em { font-size: 1.1em; }
  body.has-guarantee-ribbon .hero,
  body.has-guarantee-ribbon .page-hero,
  body.has-guarantee-ribbon .article-hero { padding-top: 164px; }
  .guarantee-head { font-size: clamp(2rem, 9vw, 3rem); }
  .guarantee-cta { flex-direction: column; align-items: stretch; }
  .guarantee-cta .btn { justify-content: center; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .pricing-row { grid-template-columns: 1fr; border-bottom: 1px solid var(--border); }
  .price-col { border-right: none; border-bottom: 1px solid var(--border); }
  .price-col:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 24px !important; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 130px 0 60px; }
  .nav-menu { display: none; }
  .header-inner .btn { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 90px 0; }
  .guarantee { padding: 100px 0; }
  .homepage-feed-off .hero { padding-bottom: 50px; }
  .homepage-feed-off .hero + .section { padding-top: 50px; }
}
@media (max-width: 640px) {
  .container, .container-read { padding: 0 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .timer-block { gap: 12px; }
  .timer-display { font-size: 26px; }
  .timer-display.is-open { font-size: 11px; }
  .queue-progress { flex-basis: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .wf-badge { right: 0; top: -16px; padding: 8px 12px; }
  .wf-badge .big { font-size: 13px; }
}

/* WordPress core alignment */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: 13px; color: var(--text-light); font-family: 'JetBrains Mono', monospace; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.sticky { display: block; }
.bypostauthor { display: block; }

/* ============ 404 ERROR PAGE ============ */
.error-404-page::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
.error-404-page::after {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 61, 0, 0.04) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.error-wrap {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  padding: 120px 0 60px;
  min-height: 80vh;
}
.error-content { text-align: center; max-width: 760px; position: relative; }

.error-code {
  font-family: 'Inter', sans-serif;
  font-size: clamp(10rem, 30vw, 22rem);
  font-weight: 700; line-height: 0.8; letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
  margin-bottom: 40px; position: relative; display: inline-block;
}
.error-code::after {
  content: '';
  position: absolute; top: 15%; right: -10%;
  width: 24px; height: 24px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
  animation: dot-pulse 1.5s infinite;
}

.error-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border: 1px solid var(--border-dark);
  border-radius: 100px; background: var(--white);
}
.error-label .error-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.error-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 500; line-height: 1;
  margin-bottom: 24px; letter-spacing: -0.035em;
}
.error-title .serif { color: var(--accent); font-size: 1.05em; }

.error-lead { font-size: 17px; color: var(--text-dim); margin-bottom: 48px; line-height: 1.65; max-width: 480px; margin-left: auto; margin-right: auto; }

.error-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; }

.quick-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: left;
}
.link-item {
  padding: 24px; border-right: 1px solid var(--border);
  transition: background 0.3s;
  display: flex; flex-direction: column; gap: 6px;
}
.link-item:last-child { border-right: none; }
.link-item:hover { background: var(--white); }
.link-item:hover .link-arrow { transform: translate(2px, -2px); color: var(--accent); }
.link-item:hover .link-name { color: var(--accent); }
.link-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.link-name { font-size: 16px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.link-arrow { font-size: 12px; color: var(--text-dim); transition: all 0.2s; }

@media (max-width: 768px) {
  .quick-links { grid-template-columns: 1fr 1fr; }
  .link-item:nth-child(2) { border-right: none; }
  .link-item:nth-child(1), .link-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .error-cta { flex-direction: column; }
  .error-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .quick-links { grid-template-columns: 1fr; }
  .link-item { border-right: none; border-bottom: 1px solid var(--border); }
  .link-item:last-child { border-bottom: none; }
}
