/* =============================================================================
   CitedCounsel Child Theme — style.css
   Parent theme: GeneratePress (generatepress)
   Version: 1.2.0
   Description: Brand overrides for the CitedCounsel law firm LLMSEO agency site.
   Built on top of GeneratePress with a GeneratePress Sites starter template.
   DO NOT EDIT — all brand changes are made here, not in parent theme files.
   ============================================================================= */

/*
Theme Name: CitedCounsel Child
Theme URI:
Description: Child theme for CitedCounsel — Law Firm LLMSEO Agency
Author: CitedCounsel
Template: generatepress
Version: 1.2.0
Changelog: v1.2.0 — Migrated from Kadence to GeneratePress. Updated Template
declaration, enqueue handles, nav selectors. All other CSS unchanged.
v1.1.0 — Updated hero to two-column light layout; added proof line,
email capture forms, video slot, problem cards, FAQ section, lead
magnet mini-form, tier outcome statements.
*/


/* =============================================================================
   1. BRAND TOKENS
   All colours and typography variables are defined here.
   Change values in this section only — they cascade to everything below.
   ============================================================================= */

:root {
	/* Primary brand colours */
	--cc-navy:        #0F1729;   /* hero backgrounds, dark accents */
	--cc-navy-mid:    #1A2B4A;   /* secondary dark surfaces */
	--cc-blue:        #1A6FB5;   /* primary CTA, links, highlights */
	--cc-blue-hover:  #155A97;   /* button hover state */
	--cc-blue-light:  #E8F1FB;   /* info backgrounds, badges */

	/* Accent */
	--cc-gold:        #C49A3C;   /* case value figures, secondary accents */
	--cc-gold-light:  #FDF3E0;   /* gold badge backgrounds */

	/* Neutrals */
	--cc-white:       #FFFFFF;
	--cc-off-white:   #F8F6F1;   /* page background */
	--cc-border:      rgba(15, 23, 41, 0.12);

	/* Text */
	--cc-text:        #0F1729;   /* primary text */
	--cc-text-mid:    #3D4B63;   /* body copy */
	--cc-text-muted:  #6B7A96;   /* captions, secondary labels */

	/* Typography */
	--cc-font-head:   'DM Serif Display', 'Georgia', serif;
	--cc-font-body:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
	--cc-font-mono:   'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

	/* Spacing */
	--cc-radius:      6px;
	--cc-radius-lg:   10px;
}


/* =============================================================================
   2. GOOGLE FONTS IMPORT
   DM Serif Display (headings) + DM Sans (body) — both from Google Fonts.
   These load only on page render — no performance impact vs system fonts.
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');


/* =============================================================================
   3. GLOBAL OVERRIDES
   ============================================================================= */

body {
	font-family: var(--cc-font-body);
	color: var(--cc-text-mid);
	background-color: var(--cc-off-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--cc-font-head);
	color: var(--cc-text);
	font-weight: 400;   /* DM Serif Display looks best at regular weight */
	letter-spacing: -0.02em;
	line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
	font-family: var(--cc-font-body);
	line-height: 1.7;
	color: var(--cc-text-mid);
}

a {
	color: var(--cc-blue);
	text-decoration: none;
}

a:hover {
	color: var(--cc-blue-hover);
	text-decoration: underline;
}

strong { font-weight: 500; }

/* Mono for data/numbers in content */
.cc-mono,
.citation-rate,
.case-value {
	font-family: var(--cc-font-mono);
	font-size: 0.9em;
}


/* =============================================================================
   4. HEADER + NAVIGATION
   GeneratePress nav structure:
   #site-header → .site-header-section → .main-navigation → ul.sf-menu → li a
   ============================================================================= */

.site-header,
#site-header {
	background: var(--cc-white);
	border-bottom: 1px solid var(--cc-border);
	box-shadow: none;
}

/* Nav links — GeneratePress uses .main-navigation ul li a */
.main-navigation ul li a,
.main-navigation a {
	font-family: var(--cc-font-body);
	font-size: 14px;
	font-weight: 400;
	color: var(--cc-text-mid);
	letter-spacing: 0;
}

.main-navigation ul li a:hover,
.main-navigation a:hover {
	color: var(--cc-blue);
	text-decoration: none;
}

/* Site logo text */
.site-title,
.site-title a {
	font-family: var(--cc-font-body);
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--cc-text);
	letter-spacing: -0.02em;
}

/* Nav CTA button
   Add CSS class "nav-cta-button" to the menu item via
   Appearance > Menus > [item] > CSS Classes (enable via Screen Options).
   GeneratePress does not require a theme-specific parent selector. */
.nav-cta-button > a,
.main-navigation .menu-item.nav-cta-button > a {
	background: var(--cc-blue) !important;
	color: #fff !important;
	padding: 8px 16px !important;
	border-radius: var(--cc-radius) !important;
	font-weight: 500 !important;
	font-size: 13px !important;
	transition: background 0.15s ease;
}

.nav-cta-button > a:hover,
.main-navigation .menu-item.nav-cta-button > a:hover {
	background: var(--cc-blue-hover) !important;
	text-decoration: none !important;
}


/* =============================================================================
   5. HERO SECTION
   Two-column layout: left = badge + headline + sub + proof + CTAs + video slot
                      right = audit preview panel
   Background: white/off-white (light), NOT dark navy.
   The dark navy is reserved for the footer only.
   ============================================================================= */

.hero-section,
.site-hero,
.wp-block-cover.hero-block {
	background: var(--cc-white);
	padding: 52px 0 44px;
	border-bottom: 1px solid var(--cc-border);
}

/* Two-column grid */
.hero-inner,
.hero-section .wp-block-columns,
.site-hero .hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 28px;
}

.hero-section h1,
.site-hero h1 {
	font-family: var(--cc-font-head);
	font-size: clamp(1.875rem, 3.5vw, 2.75rem);
	font-weight: 400;
	color: var(--cc-text);
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}

/* The "Your competitors are the answer" emphasis */
.hero-section h1 strong,
.site-hero h1 strong,
.hero-emphasis {
	color: var(--cc-blue);
	font-weight: 500;
}

.hero-section .hero-subtitle,
.site-hero p.hero-sub {
	font-size: 1rem;
	color: var(--cc-text-mid);
	line-height: 1.65;
	margin-bottom: 0;
}

/* Hero badge — light border pill (replaces old dark/glassmorphism version) */
.hero-badge,
.site-hero .badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid var(--cc-border);
	color: var(--cc-text-muted);
	font-family: var(--cc-font-body);
	font-size: 11px;
	font-weight: 400;
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}

.hero-badge .badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cc-blue);
	flex-shrink: 0;
}

/* Proof line — evidence bar above the CTAs */
.hero-proof-line,
.proof-line {
	font-size: 12px;
	color: var(--cc-text-muted);
	background: var(--cc-off-white);
	border-radius: var(--cc-radius);
	border-left: 3px solid var(--cc-blue);
	padding: 10px 14px;
	margin: 16px 0 22px;
	line-height: 1.55;
	max-width: 500px;
}

.hero-proof-line strong,
.proof-line strong {
	color: var(--cc-text);
	font-weight: 500;
}

/* Audit preview panel — right column of hero, light surface */
.audit-preview-panel,
.hero-preview {
	background: var(--cc-off-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	overflow: hidden;
}

.audit-preview-panel .preview-header,
.hero-preview .preview-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	border-bottom: 1px solid var(--cc-border);
}

.preview-header .preview-label {
	font-size: 10px;
	color: var(--cc-text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.preview-header .preview-meta {
	font-size: 10px;
	color: var(--cc-text-muted);
}

.preview-query-row {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-bottom: 1px solid var(--cc-border);
	font-size: 12px;
}

.preview-query-row:last-child { border-bottom: none; }

.preview-query-text { color: var(--cc-text); }

.preview-competitor {
	font-size: 10px;
	color: var(--cc-text-muted);
}

/* Citation badges on preview rows */
.badge-not-cited {
	background: #FEE2E2;
	color: #B91C1C;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 500;
	white-space: nowrap;
}

.badge-cited {
	background: #DCFCE7;
	color: #166534;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 500;
	white-space: nowrap;
}

.badge-value {
	font-family: var(--cc-font-mono);
	color: var(--cc-gold);
	font-size: 10px;
	white-space: nowrap;
}


/* =============================================================================
   6. BUTTONS
   ============================================================================= */

.wp-block-button__link,
.button,
button[type="submit"],
input[type="submit"],
.wc-block-components-button,
.single_add_to_cart_button {
	background: var(--cc-blue) !important;
	color: #fff !important;
	font-family: var(--cc-font-body) !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	padding: 12px 24px !important;
	border-radius: var(--cc-radius) !important;
	border: none !important;
	cursor: pointer !important;
	transition: background 0.15s ease, transform 0.1s ease !important;
	letter-spacing: 0 !important;
}

.wp-block-button__link:hover,
.button:hover,
button[type="submit"]:hover {
	background: var(--cc-blue-hover) !important;
	transform: translateY(-1px);
	text-decoration: none !important;
	color: #fff !important;
}

/* Outline / secondary button variant */
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: var(--cc-blue) !important;
	border: 1.5px solid var(--cc-blue) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--cc-blue-light) !important;
}

/* Large hero CTA */
.hero-cta .wp-block-button__link,
.hero-cta .button {
	font-size: 15px !important;
	padding: 14px 28px !important;
}


/* =============================================================================
   7. STATS / METRICS ROW
   ============================================================================= */

.stats-row,
.metrics-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	border-top: 1px solid var(--cc-border);
	border-bottom: 1px solid var(--cc-border);
	background: var(--cc-white);
}

.stat-item {
	padding: 24px 20px;
	border-right: 1px solid var(--cc-border);
	text-align: left;
}

.stat-item:last-child { border-right: none; }

.stat-value {
	font-family: var(--cc-font-mono);
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--cc-text);
	line-height: 1;
	margin-bottom: 4px;
}

.stat-value.gold { color: var(--cc-gold); }

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


/* =============================================================================
   8. CONTENT SECTIONS
   ============================================================================= */

/* Section label (small caps above section heading) */
.section-label,
.eyebrow {
	font-family: var(--cc-font-body);
	font-size: 11px;
	font-weight: 500;
	color: var(--cc-blue);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

/* Step cards (how it works) */
.step-card {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 24px;
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--cc-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	font-family: var(--cc-font-mono);
}

/* Pricing / tier cards */
.pricing-card,
.tier-card {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 24px;
	transition: border-color 0.15s ease;
}

.pricing-card:hover {
	border-color: rgba(26, 111, 181, 0.3);
}

.pricing-card.featured,
.tier-card.featured {
	border: 2px solid var(--cc-blue);
}

.pricing-card .price,
.tier-price {
	font-family: var(--cc-font-mono);
	font-size: 2rem;
	font-weight: 500;
	color: var(--cc-blue);
	line-height: 1;
	margin-bottom: 4px;
}

/* Feature list in tier cards */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
}

.feature-list li {
	font-size: 13px;
	color: var(--cc-text-mid);
	padding: 4px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.feature-list li::before {
	content: "✓";
	color: var(--cc-blue);
	font-weight: 500;
	flex-shrink: 0;
	margin-top: 1px;
}


/* =============================================================================
   9. BLOG / ARTICLE LISTING
   ============================================================================= */

.entry-title a {
	font-family: var(--cc-font-head);
	color: var(--cc-text);
	font-size: 1.3rem;
	font-weight: 400;
}

.entry-title a:hover {
	color: var(--cc-blue);
	text-decoration: none;
}

.entry-meta {
	font-size: 12px;
	color: var(--cc-text-muted);
	font-family: var(--cc-font-body);
}

/* Article category badges */
.post-category,
.article-category {
	display: inline-block;
	background: var(--cc-blue-light);
	color: var(--cc-blue);
	font-size: 11px;
	font-weight: 500;
	padding: 3px 9px;
	border-radius: 100px;
	margin-bottom: 8px;
	letter-spacing: 0.02em;
}


/* =============================================================================
   10. SINGLE ARTICLE
   ============================================================================= */

.entry-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--cc-text-mid);
	max-width: 720px;
}

.entry-content h2 {
	font-family: var(--cc-font-head);
	font-size: 1.6rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.entry-content h3 {
	font-family: var(--cc-font-head);
	font-size: 1.2rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

/* FAQ block — used on every article */
.wp-block-yoast-faq-block,
.rank-math-faq-block {
	background: var(--cc-off-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 24px;
	margin: 2rem 0;
}

.rank-math-faq-block .rank-math-question {
	font-family: var(--cc-font-body);
	font-weight: 500;
	color: var(--cc-text);
	font-size: 1rem;
	margin-bottom: 6px;
}

.rank-math-faq-block .rank-math-answer {
	color: var(--cc-text-mid);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Inline callout boxes */
.wp-block-pullquote,
.callout-box {
	background: var(--cc-blue-light);
	border-left: 3px solid var(--cc-blue);
	padding: 16px 20px;
	border-radius: 0 var(--cc-radius) var(--cc-radius) 0;
	margin: 1.5rem 0;
}

.wp-block-pullquote p,
.callout-box p {
	color: var(--cc-text);
	font-size: 0.9375rem;
}

/* Author box */
.author-box {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 20px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin: 2rem 0;
}

.author-box .author-name {
	font-weight: 500;
	color: var(--cc-text);
	font-size: 14px;
}

.author-box .author-bio {
	color: var(--cc-text-muted);
	font-size: 13px;
	margin: 0;
}

/* Disclaimer block (required on all law firm content) */
.legal-disclaimer {
	border-top: 1px solid var(--cc-border);
	padding-top: 16px;
	margin-top: 2rem;
	font-size: 12px;
	color: var(--cc-text-muted);
	line-height: 1.6;
}


/* =============================================================================
   11. WOOCOMMERCE ($197 AUDIT PRODUCT PAGE)
   ============================================================================= */

.woocommerce .product .entry-summary {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 28px;
}

.woocommerce .product .price {
	font-family: var(--cc-font-mono);
	font-size: 2.25rem;
	color: var(--cc-blue) !important;
	font-weight: 500;
}

.woocommerce .product .single_add_to_cart_button {
	width: 100%;
	font-size: 15px !important;
	padding: 14px 24px !important;
	margin-top: 16px;
}

/* Checkout */
.woocommerce-checkout #payment {
	background: var(--cc-off-white);
	border-radius: var(--cc-radius-lg);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	padding: 10px 14px;
	font-family: var(--cc-font-body);
	font-size: 14px;
}

.woocommerce form .form-row input.input-text:focus {
	border-color: var(--cc-blue);
	outline: none;
	box-shadow: 0 0 0 3px rgba(26, 111, 181, 0.1);
}


/* =============================================================================
   12. FOOTER
   ============================================================================= */

.site-footer {
	background: var(--cc-navy);
	color: rgba(255,255,255,0.7);
	border-top: none;
}

.site-footer a {
	color: rgba(255,255,255,0.65);
}

.site-footer a:hover {
	color: #fff;
	text-decoration: none;
}

.site-footer .site-title,
.footer-logo {
	color: #fff;
}

.footer-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,0.4);
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.1);
}


/* =============================================================================
   13. UTILITIES
   ============================================================================= */

/* Full-width section with off-white background */
.section-offwhite {
	background: var(--cc-off-white);
	padding: 60px 0;
}

/* Gold accent text */
.text-gold { color: var(--cc-gold) !important; }
.text-blue { color: var(--cc-blue) !important; }

/* Data values in body copy */
.data-value {
	font-family: var(--cc-font-mono);
	font-size: 0.9em;
	color: var(--cc-blue);
	background: var(--cc-blue-light);
	padding: 1px 6px;
	border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.5rem; }
	.stats-row { grid-template-columns: repeat(2, 1fr); }
	.pricing-card, .tier-card { margin-bottom: 12px; }
}


/* =============================================================================
   14. EMAIL CAPTURE FORMS
   Two instances: (A) inline hero form below primary CTA,
                  (B) mini form at the bottom of the $197 product card.
   Both follow the same input + button pattern.
   ============================================================================= */

/* (A) Hero inline form */
.cc-email-form,
.hero-email-form {
	display: flex;
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	overflow: hidden;
	max-width: 420px;
	margin-bottom: 8px;
	background: var(--cc-white);
}

.cc-email-form input[type="email"],
.hero-email-form input[type="email"] {
	flex: 1;
	border: none;
	background: transparent;
	padding: 10px 14px;
	font-family: var(--cc-font-body);
	font-size: 13px;
	color: var(--cc-text);
	outline: none;
	min-width: 0;
}

.cc-email-form input[type="email"]::placeholder,
.hero-email-form input[type="email"]::placeholder {
	color: var(--cc-text-muted);
}

.cc-email-form input[type="email"]:focus,
.hero-email-form input[type="email"]:focus {
	box-shadow: inset 0 0 0 2px var(--cc-blue);
}

.cc-email-form button,
.hero-email-form button {
	background: var(--cc-off-white) !important;
	border: none !important;
	border-left: 1px solid var(--cc-border) !important;
	padding: 10px 14px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	color: var(--cc-blue) !important;
	cursor: pointer !important;
	white-space: nowrap;
	transition: background 0.15s ease !important;
	border-radius: 0 !important;
	transform: none !important;
}

.cc-email-form button:hover,
.hero-email-form button:hover {
	background: var(--cc-blue-light) !important;
	transform: none !important;
}

.cc-form-note,
.hero-form-note {
	font-size: 11px;
	color: var(--cc-text-muted);
	margin-bottom: 20px;
}

/* (B) Product card mini form */
.product-free-form-wrapper {
	border-top: 1px solid var(--cc-border);
	padding-top: 14px;
	margin-top: 12px;
}

.product-free-form-wrapper p {
	font-size: 11px;
	color: var(--cc-text-muted);
	margin-bottom: 8px;
}

.product-free-form {
	display: flex;
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	overflow: hidden;
	background: var(--cc-white);
}

.product-free-form input[type="email"] {
	flex: 1;
	border: none;
	background: transparent;
	padding: 8px 11px;
	font-family: var(--cc-font-body);
	font-size: 12px;
	color: var(--cc-text);
	outline: none;
	min-width: 0;
}

.product-free-form input[type="email"]::placeholder {
	color: var(--cc-text-muted);
}

.product-free-form button {
	background: var(--cc-off-white) !important;
	border: none !important;
	border-left: 1px solid var(--cc-border) !important;
	padding: 8px 12px !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	color: var(--cc-blue) !important;
	cursor: pointer !important;
	border-radius: 0 !important;
	transform: none !important;
}

.product-free-form button:hover {
	background: var(--cc-blue-light) !important;
	transform: none !important;
}


/* =============================================================================
   15. VIDEO PLACEHOLDER SLOT
   Reserved space in the hero left column.
   Replace with an actual <iframe> or <video> embed when the recording exists.
   To swap in: delete the .video-placeholder div and insert the embed directly.
   ============================================================================= */

.video-placeholder {
	background: var(--cc-off-white);
	border: 1px dashed var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 24px 20px;
	text-align: center;
	margin-top: 4px;
}

.video-placeholder .play-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	font-size: 14px;
	color: var(--cc-blue);
}

.video-placeholder .video-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--cc-text);
	margin-bottom: 5px;
}

.video-placeholder .video-sub {
	font-size: 11px;
	color: var(--cc-text-muted);
	line-height: 1.5;
}

/* When the real video replaces the placeholder */
.video-embed-wrapper {
	border-radius: var(--cc-radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin-top: 4px;
}

.video-embed-wrapper iframe,
.video-embed-wrapper video {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}


/* =============================================================================
   16. PROBLEM AWARENESS SECTION
   Three scenario cards, each with a mono-styled query label.
   Background: off-white to visually separate from white hero above.
   ============================================================================= */

.problem-section {
	background: var(--cc-off-white);
	padding: 52px 0;
	border-top: 1px solid var(--cc-border);
	border-bottom: 1px solid var(--cc-border);
}

.problem-section .section-label {
	margin-bottom: 10px;
}

.problem-section h2 {
	margin-bottom: 28px;
}

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

.problem-card {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	padding: 20px;
}

/* The "query in mono" label at the top of each card */
.problem-card .query-label {
	font-family: var(--cc-font-mono);
	font-size: 11px;
	color: var(--cc-blue);
	background: var(--cc-off-white);
	border-radius: 4px;
	padding: 6px 10px;
	margin-bottom: 12px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.problem-card p {
	font-size: 13px;
	color: var(--cc-text-mid);
	line-height: 1.6;
	margin: 0;
}

.problem-card p strong {
	color: var(--cc-text);
	font-weight: 500;
}


/* =============================================================================
   17. FAQ SECTION
   Three objection-handling questions, each with a "Q" badge prefix.
   Positioned between the tier cards and the final CTA.
   Background: off-white to create visual rhythm with problem section.
   ============================================================================= */

.faq-section {
	background: var(--cc-off-white);
	padding: 52px 0;
	border-top: 1px solid var(--cc-border);
	border-bottom: 1px solid var(--cc-border);
}

.faq-section .section-label {
	margin-bottom: 10px;
}

.faq-section h2 {
	margin-bottom: 28px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 720px;
}

.faq-item {
	border-bottom: 1px solid var(--cc-border);
	padding: 22px 0;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	font-family: var(--cc-font-body);
	font-size: 15px;
	font-weight: 500;
	color: var(--cc-text);
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.35;
}

/* The "Q" badge */
.faq-question::before {
	content: "Q";
	font-family: var(--cc-font-mono);
	font-size: 10px;
	font-weight: 500;
	color: #fff;
	background: var(--cc-blue);
	padding: 3px 6px;
	border-radius: 4px;
	flex-shrink: 0;
	margin-top: 2px;
	line-height: 1.2;
}

.faq-answer {
	font-size: 14px;
	color: var(--cc-text-mid);
	line-height: 1.7;
	padding-left: 34px;   /* aligns with question text after the Q badge */
}

.faq-answer strong {
	color: var(--cc-text);
	font-weight: 500;
}


/* =============================================================================
   18. TIER CARD OUTCOME STATEMENTS
   Italic blue line beneath each tier name, above the price.
   Turns price lists into promises.
   ============================================================================= */

.tier-card .tier-outcome,
.pricing-card .tier-outcome {
	font-size: 12px;
	color: var(--cc-blue);
	font-style: italic;
	margin-bottom: 10px;
	line-height: 1.4;
	font-family: var(--cc-font-body);
}


/* =============================================================================
   RESPONSIVE UPDATES — all new components
   ============================================================================= */

@media (max-width: 900px) {
	.hero-inner,
	.hero-section .wp-block-columns,
	.site-hero .hero-grid {
		grid-template-columns: 1fr;
	}

	.audit-preview-panel,
	.hero-preview {
		margin-top: 24px;
	}

	.problem-cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.5rem; }

	.stats-row,
	.metrics-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-card,
	.tier-card {
		margin-bottom: 12px;
	}

	.cc-email-form,
	.hero-email-form {
		max-width: 100%;
	}

	.faq-answer {
		padding-left: 0;
	}

	.faq-question {
		flex-direction: row;
	}
}
