/*
Theme Name: BrandForge
Theme URI: https://brandforgeone.com
Description: AI-Powered Growth Agency - Custom WordPress Theme
Version: 1.0
Author: BrandForge
Author URI: https://brandforgeone.com
Text Domain: brandforge
*/

/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Koulen&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --background: #F5F2EB;
  --foreground: #0d0f1c;
  --card: #ffffff;
  --card-foreground: #0d0f1c;
  --primary: #1b2541;
  --primary-foreground: #F5F2EB;
  --muted: #E8E5DB;
  --muted-foreground: #525c73;
  --border: #c8cad4;
  --snow: #ffffff;
  --radius: 0.375rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--background); color: var(--foreground); -webkit-font-smoothing: antialiased; line-height: 1.6; text-align: left; }
h1, h2, h3, h4, h5, h6 { font-family: 'Koulen', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.95; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: var(--primary-foreground); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.875rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); transition: transform 0.2s; min-height: 44px; }
.btn-primary:hover { transform: scale(1.03); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary-lg { font-size: 1rem; padding: 1rem 2rem; min-height: 48px; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(13,15,28,0.2); color: var(--foreground); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1rem; padding: 1rem 2rem; border-radius: var(--radius); transition: all 0.2s; min-height: 48px; }
.btn-outline:hover { background: rgba(13,15,28,0.05); }
.btn-outline-light { border-color: rgba(240,237,223,0.2); color: var(--primary-foreground); }
.btn-outline-light:hover { background: rgba(240,237,223,0.1); }
.btn-white { background: var(--snow); color: var(--primary); font-family: 'DM Sans', sans-serif; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: var(--radius); transition: transform 0.2s; min-height: 48px; }
.btn-white:hover { transform: scale(1.03); }
.btn-snow-sm { background: var(--snow); color: var(--primary); font-weight: 500; font-size: 0.875rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); display: block; text-align: center; transition: all 0.2s; min-height: 44px; }
.btn-snow-sm:hover { opacity: 0.9; }

/* ===== LABEL ===== */
.label { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; }
.label-muted { color: var(--muted-foreground); }
.label-light { color: rgba(240,237,223,0.5); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(245,242,235,0.8); backdrop-filter: blur(4px); transition: all 0.3s; }
.navbar.scrolled { background: rgba(245,242,235,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,202,212,0.5); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 768px) { .navbar-inner { height: 5rem; } }
.navbar-logo { flex-shrink: 0; }
.navbar-logo img { height: 2.5rem; width: auto; object-fit: contain; mix-blend-mode: multiply; background: transparent; }
@media (min-width: 768px) { .navbar-logo img { height: 3rem; } }
.footer-brand-name { margin-bottom: 1rem; }
.footer-brand-name img { height: 3rem; width: auto; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; letter-spacing: 0.05em; color: rgba(13,15,28,0.7); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--foreground); font-weight: 500; }
.nav-links a.btn-primary { color: var(--snow) !important; }
.mobile-toggle { display: flex; align-items: center; justify-content: center; padding: 0.5rem; min-width: 44px; min-height: 44px; background: none; cursor: pointer; border: none; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-menu { overflow: hidden; max-height: 0; opacity: 0; transition: all 0.3s ease-in-out; }
.mobile-menu.open { max-height: 400px; opacity: 1; }
.mobile-menu-inner { background: var(--background); border-top: 1px solid rgba(200,202,212,0.5); padding: 0.5rem 1rem 1.5rem; }
.mobile-menu-inner a { display: block; padding: 0.75rem 0; font-size: 1rem; color: rgba(13,15,28,0.8); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden; text-align: left !important; }
.hero-bg { position: absolute; inset: 0; opacity: 0.06; }
.hero-bg svg { position: absolute; right: 0; top: 0; width: 70%; height: 100%; }
.hero-content { position: relative; z-index: 10; max-width: 56rem; text-align: left !important; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: 0.9; margin-bottom: 1.5rem; text-align: left !important; }
.hero h1 .rotating-word { color: var(--primary); display: inline-block; animation: fade-in-up 0.5s ease-out; }
.hero p.subtitle { font-size: 1.125rem; color: var(--muted-foreground); max-width: 36rem; line-height: 1.625; margin-bottom: 2.5rem; text-align: left !important; }
@media (min-width: 768px) { .hero p.subtitle { font-size: 1.25rem; } }
.hero .label { text-align: left !important; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start !important; justify-content: flex-start !important; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: none; flex-direction: column; align-items: center; gap: 0.5rem; animation: pulse-glow 3s ease-in-out infinite; }
@media (min-width: 768px) { .scroll-indicator { display: flex; } }
.scroll-indicator span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(82,92,115,0.5); }
.scroll-indicator .line { width: 1px; height: 2rem; background: linear-gradient(to bottom, rgba(82,92,115,0.3), transparent); }

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }

/* Hero floating marketing icons */
@keyframes float-drift-1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, -35px) rotate(-3deg); }
  75% { transform: translate(20px, -15px) rotate(4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes float-drift-2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-20px, 15px) rotate(-4deg); }
  50% { transform: translate(10px, 25px) rotate(6deg); }
  75% { transform: translate(-15px, -10px) rotate(-2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes float-drift-3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(25px, 10px) rotate(3deg); }
  66% { transform: translate(-15px, -20px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.hero-float-icon { will-change: transform; }

/* ===== MOBILE ACCORDION ===== */
.mobile-accordion { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.5rem; }
.mobile-accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem; text-align: left; background: none; cursor: pointer; border: none; color: inherit; font-family: inherit; }
.mobile-accordion-btn .acc-title { display: flex; align-items: center; gap: 0.75rem; font-family: 'Koulen', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.mobile-accordion-btn svg.acc-chevron { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform 0.2s; opacity: 0.4; }
.mobile-accordion-btn.open svg.acc-chevron { transform: rotate(180deg); }
.mobile-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-accordion-body.open { max-height: 300px; }
.mobile-accordion-body p { padding: 0 1rem 1rem; font-size: 0.875rem; line-height: 1.625; }
/* Light bg version */
.mobile-accordion-light { border-color: var(--border); }
.mobile-accordion-light .mobile-accordion-btn { color: var(--foreground); }
.mobile-accordion-light .mobile-accordion-body p { color: var(--muted-foreground); }
/* Dark bg version */
.mobile-accordion-dark { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
.mobile-accordion-dark .mobile-accordion-btn { color: var(--primary-foreground); }
.mobile-accordion-dark .mobile-accordion-body p { color: rgba(240,237,223,0.6); }
/* Show accordion on mobile, grid on desktop */
.mobile-only-accordion { display: block !important; }
.desktop-only-grid { display: none !important; }
@media (min-width: 768px) { .mobile-only-accordion { display: none !important; } .desktop-only-grid { display: grid !important; } }
.section-reveal { opacity: 0; transform: translateY(12px); filter: blur(4px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.7s cubic-bezier(0.16,1,0.3,1); }
.section-reveal.revealed { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ===== TRUST TICKER ===== */
.trust-ticker { padding: 3rem 0; border-top: 1px solid rgba(200,202,212,0.5); border-bottom: 1px solid rgba(200,202,212,0.5); overflow: hidden; }
.ticker-track { display: flex; gap: 4rem; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-track span { font-family: 'Koulen', sans-serif; font-size: 1.5rem; color: rgba(13,15,28,0.15); user-select: none; }
@media (min-width: 768px) { .ticker-track span { font-size: 1.875rem; } .trust-ticker { padding: 4rem 0; } }

/* ===== SECTIONS ===== */
.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.section-dark { background: var(--primary); color: var(--primary-foreground); }
.section-muted { background: rgba(230,226,214,0.5); }

/* ===== CARDS ===== */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: all 0.3s; }
@media (min-width: 768px) { .card { padding: 2rem; } }
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.card-dark:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

/* ===== ICON CIRCLE ===== */
.icon-circle { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-circle-primary { background: rgba(27,37,65,0.1); }
.icon-circle-dark { background: rgba(255,255,255,0.1); }
.icon-circle svg { width: 1.25rem; height: 1.25rem; stroke-width: 1.5; }
.icon-circle-primary svg { color: var(--primary); }
.icon-circle-dark svg { color: rgba(240,237,223,0.6); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.grid-2x4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .grid-2x4 { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

/* ===== METRICS ===== */
.metric-value { font-family: 'Koulen', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; color: var(--primary); font-variant-numeric: tabular-nums; }
.metric-label { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.75rem; line-height: 1.625; }
@media (min-width: 768px) { .metric-label { font-size: 0.875rem; } }

/* ===== TESTIMONIALS ===== */
.testimonial-quote { position: absolute; top: 1rem; right: 1.5rem; font-family: 'Koulen', sans-serif; font-size: 3.75rem; color: rgba(27,37,65,0.1); line-height: 1; user-select: none; }

/* ===== PACKAGES ===== */
.package-card { position: relative; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.25rem; transition: all 0.3s; display: flex; flex-direction: column; }
@media (min-width: 768px) { .package-card { padding: 2rem; } }
.package-card:hover { transform: translateY(-4px); }
.package-card.highlighted { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
@media (min-width: 768px) { .package-card.highlighted { transform: scale(1.05); margin: -1rem 0; padding: 3rem 2rem; } }
.package-card:not(.highlighted) { background: var(--card); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.package-card:not(.highlighted):hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.popular-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 0.25rem; background: var(--snow); color: var(--primary); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 1rem; border-radius: 9999px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); white-space: nowrap; }
.feature-list { list-style: none; padding: 0; margin-bottom: 2rem; flex: 1; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.feature-list li svg { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; stroke-width: 2; }
.highlighted .feature-list li svg { color: rgba(240,237,223,0.6); }
.package-card:not(.highlighted) .feature-list li svg { color: rgba(27,37,65,0.6); }
.feature-list li span { font-size: 0.875rem; line-height: 1.375; }
.highlighted .feature-list li span { color: rgba(240,237,223,0.8); }
.package-card:not(.highlighted) .feature-list li span { color: rgba(13,15,28,0.7); }

/* ===== PROCESS STEPS ===== */
.process-step { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; }
.process-step .step-num { font-size: 0.75rem; color: rgba(240,237,223,0.3); letter-spacing: 0.1em; }
.process-step h3 { margin-top: 1rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.process-step p { font-size: 0.875rem; color: rgba(240,237,223,0.6); line-height: 1.625; }

/* ===== WHY US ===== */
.reason-card { transition: all 0.3s; }
.reason-card:hover { transform: translateY(-4px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* ===== CTA ===== */
.cta-section { position: relative; overflow: hidden; }
.cta-bg-blob { position: absolute; width: 24rem; height: 24rem; background: rgba(255,255,255,0.04); border-radius: 9999px; filter: blur(48px); }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: var(--primary-foreground); padding: 3rem 0; }
@media (min-width: 768px) { .footer { padding: 5rem 0; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; gap: 3rem; } }
.footer-brand-name { margin-bottom: 1.5rem; }
.footer-brand-name img { height: 40px; width: auto; display: block; object-fit: contain; }
.footer-desc { font-size: 0.875rem; color: rgba(240,237,223,0.5); max-width: 20rem; line-height: 1.625; margin-bottom: 1.5rem; }
.footer-contact a, .footer-contact div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(240,237,223,0.5); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary-foreground); }
.footer-contact svg { width: 1rem; height: 1rem; }
.footer-nav-title { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,237,223,0.3); margin-bottom: 1rem; }
.footer-nav a { display: block; font-size: 0.875rem; color: rgba(240,237,223,0.6); padding: 0.375rem 0; transition: color 0.2s; }
.footer-nav a:hover { color: var(--primary-foreground); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; font-size: 0.75rem; color: rgba(240,237,223,0.3); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 4rem; padding-top: 2rem; } }

/* ===== COMPARISON TABLE ===== */
.compare-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.compare-table th { font-family: 'DM Sans', sans-serif; padding-bottom: 1rem; }
.compare-table th.feature-col { text-align: left; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,237,223,0.5); width: 35%; font-weight: 400; }
.compare-table th.plan-col { text-align: center; font-family: 'Koulen', sans-serif; font-size: 1.125rem; color: rgba(240,237,223,0.7); }
.compare-table th .growth-badge { background: rgba(255,255,255,0.15); padding: 0.25rem 0.75rem; border-radius: var(--radius); color: var(--snow); }
.compare-table thead tr { border-bottom: 1px solid rgba(255,255,255,0.2); }
.compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.08); transition: background 0.2s; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.compare-table td { padding: 1rem 0; font-size: 0.875rem; }
.compare-table td:first-child { color: rgba(240,237,223,0.8); padding-right: 1rem; }
.compare-table td:not(:first-child) { text-align: center; color: rgba(240,237,223,0.8); font-size: 0.8125rem; }
.compare-table td.growth-col { background: rgba(255,255,255,0.05); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.5rem; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; text-align: left; background: none; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; color: var(--foreground); transition: background 0.2s; }
@media (min-width: 768px) { .faq-btn { font-size: 1rem; } }
.faq-btn:hover { background: rgba(230,226,214,0.3); }
.faq-btn svg { width: 1.25rem; height: 1.25rem; color: var(--muted-foreground); flex-shrink: 0; transition: transform 0.2s; }
.faq-btn.open svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* ===== PAGE HEADERS ===== */
.page-header { padding-top: 7rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .page-header { padding-top: 9rem; padding-bottom: 4rem; } }
.page-header h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); line-height: 0.9; margin-bottom: 1.5rem; }
.page-header h1 .accent { color: var(--primary); }
.page-header .desc { font-size: 1.125rem; color: var(--muted-foreground); max-width: 36rem; line-height: 1.625; }
@media (min-width: 768px) { .page-header .desc { font-size: 1.25rem; } }

/* ===== ABOUT STATS ===== */
.stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem; }
.stat-card .stat-value { font-family: 'Koulen', sans-serif; font-size: 2.25rem; color: var(--snow); }
.stat-card .stat-label { font-size: 0.875rem; color: rgba(240,237,223,0.5); margin-top: 0.5rem; }

/* ===== SERVICES LIST ===== */
.service-item { padding: 2rem 0; }
@media (min-width: 768px) { .service-item { padding: 3rem 0; } }
.service-item + .service-item { border-top: 1px solid var(--border); }
.service-item .service-inner { max-width: 56rem; }
.service-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.service-header h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 0.95; }
.service-desc { font-size: 1rem; color: var(--muted-foreground); line-height: 1.625; margin-bottom: 1rem; }
@media (min-width: 768px) { .service-desc { padding-left: 3.5rem; } }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); transition: color 0.2s; }
@media (min-width: 768px) { .service-link { margin-left: 3.5rem; } }
.service-link:hover { opacity: 0.8; }

/* ===== INDUSTRIES ===== */
.industry-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: all 0.3s; }
@media (min-width: 768px) { .industry-card { padding: 1.5rem; } }
.industry-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.industry-card p { font-size: 0.75rem; font-weight: 500; }
@media (min-width: 768px) { .industry-card p { font-size: 0.875rem; } }

/* ===== 404 ===== */
.not-found { display: flex; min-height: 100vh; align-items: center; justify-content: center; background: var(--muted); text-align: center; }
.not-found h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.not-found p { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.not-found a { color: var(--primary); text-decoration: underline; }

/* ===== SVG ICONS (inline) ===== */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== HAMBURGER ===== */
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--foreground); margin: 5px 0; transition: 0.3s; }

/* ===== WORDPRESS FIXES ===== */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); padding: 0 !important; border: 0 !important; height: 1px !important; width: 1px !important; overflow: hidden; }

/* Force left alignment on hero - override any WP defaults */
.wp-site-blocks, .entry-content, .page-content, .post-content, #content, #primary, #main, main, article { text-align: left !important; }
.hero, .hero *, .hero .container, .hero-content, .hero h1, .hero p, .hero .label, .hero-buttons { text-align: left !important; }
.hero-content { margin-left: 0 !important; margin-right: auto !important; }
.hero-buttons { justify-content: flex-start !important; align-items: flex-start !important; }
.page-header, .page-header * { text-align: left !important; }
.page-header .container > div { margin-left: 0 !important; margin-right: auto !important; }

/* Force button text colors - override WP link styles */
a.btn-primary, .btn-primary, .nav-links a.btn-primary { color: #F5F2EB !important; background: #1b2541 !important; }
a.btn-primary:hover, a.btn-primary:visited, a.btn-primary:focus { color: #F5F2EB !important; }
a.btn-white, .btn-white { color: #1b2541 !important; }
a.btn-snow-sm, .btn-snow-sm { color: #1b2541 !important; background: #ffffff !important; }
a.btn-outline-light, .btn-outline-light { color: #F5F2EB !important; }
.section-dark a, .footer a { color: inherit; }
.footer-brand-name img { max-width: none; }
