/*
Theme Name: Drizar Work
Theme URI: https://drizar.work
Author: Drizar Agency
Author URI: https://drizar.work
Description: Theme de automatización con IA para drizar.work. Diseño dark mode con efectos modernos.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drizar-work
Tags: dark, one-column, custom-menu, featured-images
*/

:root {
  --bg-primary: #000000;
  --bg-elevated: #0A0A0A;
  --bg-card: #141414;
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5EA;
  --text-tertiary: #C7C7CC;
  --text-muted: #8E8E93;
  --accent: #FF2D55;
  --accent-light: #FF6482;
  --accent-glow: rgba(255, 45, 85, 0.4);
  --teal: #5AC8FA;
  --purple: #BF5AF2;
  --orange: #FF9F0A;
  --blue: #0A84FF;
  --green: #30D158;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--accent); color: white; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section { padding: clamp(80px, 12vh, 140px) 0; }

body.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .header { top: 46px; } }

/* =====================
   HEADER
   ===================== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all 0.4s var(--ease); }
.header.scrolled { background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.125rem; color: white; }
.logo-text { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.02em; }
.logo-text span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a, .nav-links .menu a { font-size: 0.9375rem; font-weight: 500; color: var(--text-tertiary); transition: color 0.25s; }
.nav-links a:hover, .nav-links .menu a:hover { color: var(--text-primary); }
.nav-links .menu { display: flex; gap: 32px; }
.nav-links .menu li { list-style: none; }

/* =====================
   BUTTONS
   ===================== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 0.9375rem; font-weight: 600; border-radius: 100px; transition: all 0.3s var(--ease); }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.btn-secondary { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--border-hover); }
.btn-large { padding: 18px 36px; font-size: 1rem; }

/* =====================
   HERO
   ===================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 140px 20px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; opacity: 0.15; pointer-events: none; }
.data-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: dataFlow 3s linear infinite; }
@keyframes dataFlow { 0% { transform: translateX(-100%); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(100vw); opacity: 0; } }
.hero::before { content: ''; position: absolute; top: 5%; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%); opacity: 0.3; pointer-events: none; filter: blur(80px); }
.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-live-counter { display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px; background: rgba(48, 209, 88, 0.1); border: 1px solid rgba(48, 209, 88, 0.3); border-radius: 100px; margin-bottom: 32px; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: livePulse 1.5s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
.live-text { font-size: 0.875rem; font-weight: 500; color: var(--green); }
.live-number { font-weight: 700; font-variant-numeric: tabular-nums; }

.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: rgba(255, 45, 85, 0.1); border: 1px solid rgba(255, 45, 85, 0.25); border-radius: 100px; margin-bottom: 32px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge span { font-size: 0.875rem; font-weight: 500; color: var(--accent-light); }

.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-title .gradient { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--orange) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1.125rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 540px; margin: 0 auto 40px; line-height: 1.6; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.urgency-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255, 159, 10, 0.1); border: 1px solid rgba(255, 159, 10, 0.3); border-radius: 8px; margin-bottom: 48px; }
.urgency-badge span { font-size: 0.8125rem; font-weight: 500; color: var(--orange); }
.hero-stats { display: flex; justify-content: center; gap: clamp(40px, 8vw, 80px); padding-top: 48px; border-top: 1px solid var(--border); }
.stat { text-align: center; }
.stat-value { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works { padding: 80px 0; background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-it-works-header { text-align: center; margin-bottom: 48px; }
.how-it-works-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.how-it-works-header p { font-size: 1.0625rem; color: var(--text-secondary); }
.flow-diagram { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px; }
.flow-icon { width: 72px; height: 72px; background: var(--bg-card); border: 2px solid var(--border); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 16px; transition: all 0.3s var(--ease); }
.flow-step:hover .flow-icon { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); }
.flow-label { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.flow-desc { font-size: 0.8125rem; color: var(--text-muted); max-width: 120px; }
.flow-arrow { width: 60px; height: 2px; background: linear-gradient(90deg, var(--border), var(--accent), var(--border)); position: relative; margin: 0 8px; flex-shrink: 0; }
.flow-arrow::after { content: '→'; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1rem; }

/* =====================
   SECTION HEADER
   ===================== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto clamp(48px, 8vh, 72px); }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--text-secondary); }

/* =====================
   SERVICES
   ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 32px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; transition: all 0.4s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--card-color, var(--accent)); transform: scaleX(0); transition: transform 0.3s var(--ease); }
.service-card:hover { transform: translateY(-6px); border-color: var(--card-color, var(--accent)); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card[data-color="pink"] { --card-color: var(--accent); }
.service-card[data-color="teal"] { --card-color: var(--teal); }
.service-card[data-color="purple"] { --card-color: var(--purple); }
.service-card[data-color="orange"] { --card-color: var(--orange); }
.service-card[data-color="blue"] { --card-color: var(--blue); }
.service-card[data-color="green"] { --card-color: var(--green); }
.service-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; background: rgba(255, 255, 255, 0.06); }
.service-metric { text-align: right; }
.service-metric-value { font-size: 1.25rem; font-weight: 700; color: var(--card-color, var(--accent)); }
.service-metric-label { font-size: 0.6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.service-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.service-card p { font-size: 0.9375rem; color: var(--text-tertiary); line-height: 1.5; margin-bottom: 16px; }
.service-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px; background: rgba(0, 0, 0, 0.3); border-radius: 12px; margin-bottom: 16px; }
.before, .after { padding: 8px; border-radius: 8px; font-size: 0.75rem; }
.before { background: rgba(255, 59, 48, 0.1); border: 1px solid rgba(255, 59, 48, 0.2); }
.before-label { color: #FF3B30; font-weight: 600; margin-bottom: 4px; }
.before-text { color: var(--text-tertiary); }
.after { background: rgba(48, 209, 88, 0.1); border: 1px solid rgba(48, 209, 88, 0.2); }
.after-label { color: var(--green); font-weight: 600; margin-bottom: 4px; }
.after-text { color: var(--text-tertiary); }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag { padding: 5px 10px; background: rgba(255, 255, 255, 0.06); border-radius: 100px; font-size: 0.6875rem; font-weight: 500; color: var(--text-secondary); }

/* =====================
   DEMO / CHAT
   ===================== */
.demo-section { padding: 80px 0; background: var(--bg-elevated); }
.demo-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.demo-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 16px; }
.demo-content p { font-size: 1.0625rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.demo-features { display: flex; flex-direction: column; gap: 16px; }
.demo-feature { display: flex; align-items: center; gap: 12px; }
.demo-feature-icon { width: 32px; height: 32px; background: rgba(48, 209, 88, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1rem; flex-shrink: 0; }
.demo-feature span { font-size: 0.9375rem; color: var(--text-secondary); }
.demo-chat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.chat-header { padding: 16px 20px; background: var(--bg-primary); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.chat-info h4 { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); }
.chat-status { font-size: 0.75rem; color: var(--green); display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; display: inline-block; }
.chat-messages { padding: 20px; min-height: 280px; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; max-height: 360px; }
.chat-message { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.9375rem; line-height: 1.5; word-break: break-word; }
.chat-message.user { align-self: flex-end; background: var(--accent); color: white; border-bottom-right-radius: 4px; }
.chat-message.bot { align-self: flex-start; background: var(--bg-primary); color: var(--text-secondary); border-bottom-left-radius: 4px; }
.chat-message.typing { display: flex; gap: 4px; padding: 16px; align-self: flex-start; background: var(--bg-primary); border-radius: 16px; border-bottom-left-radius: 4px; }
.typing-dot { width: 8px; height: 8px; background: var(--text-muted); border-radius: 50%; animation: typingBounce 1.4s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }
.chat-input-row { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; gap: 12px; }
.chat-input-row input { flex: 1; padding: 12px 16px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 100px; font-size: 0.9375rem; color: var(--text-primary); outline: none; font-family: var(--font); }
.chat-input-row input::placeholder { color: var(--text-muted); }
.chat-input-row input:focus { border-color: var(--accent); }
.chat-input-row button { width: 44px; height: 44px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; transition: all 0.3s; flex-shrink: 0; border: none; cursor: pointer; }
.chat-input-row button:hover { background: var(--accent-light); transform: scale(1.05); }

/* =====================
   CASE STUDIES
   ===================== */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; transition: all 0.4s var(--ease); }
.case-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.case-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.case-logo { width: 48px; height: 48px; background: var(--bg-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.case-company { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); }
.case-industry { font-size: 0.8125rem; color: var(--text-muted); }
.case-quote { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; font-style: italic; }
.case-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.case-result { text-align: center; }
.case-result-value { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.case-result-label { font-size: 0.75rem; color: var(--text-muted); }

/* =====================
   PROCESS TIMELINE
   ===================== */
.process { background: var(--bg-elevated); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.timeline::before { content: ''; position: absolute; top: 44px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); }
.timeline-progress { position: absolute; top: 44px; left: 12.5%; height: 2px; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-light)); transition: width 1s var(--ease); }
.timeline.animated .timeline-progress { width: 75%; }
.timeline-step { text-align: center; padding: 0 20px; position: relative; }
.step-number { width: 48px; height: 48px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; background: var(--bg-primary); border: 2px solid var(--border); border-radius: 50%; position: relative; z-index: 1; transition: all 0.4s var(--ease); }
.timeline-step.active .step-number { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.timeline-step h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.timeline-step p { font-size: 0.875rem; color: var(--text-tertiary); line-height: 1.5; margin-bottom: 16px; }
.step-time { display: inline-block; padding: 6px 12px; background: rgba(255, 45, 85, 0.1); border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--accent-light); }

/* =====================
   DIFFERENTIATORS
   ===================== */
.differentiators { padding: 80px 0; background: var(--bg-primary); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; text-align: center; transition: all 0.3s var(--ease); }
.diff-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.diff-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.diff-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.diff-card p { font-size: 0.9375rem; color: var(--text-tertiary); line-height: 1.5; }

/* =====================
   CTA FINAL
   ===================== */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%); opacity: 0.25; filter: blur(60px); pointer-events: none; }
.cta-content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-icon { width: 80px; height: 80px; margin: 0 auto 32px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: white; box-shadow: 0 16px 48px var(--accent-glow); }
.cta h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.cta p { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 32px; }
.cta-note { margin-top: 16px; font-size: 0.875rem; color: var(--text-muted); }

/* =====================
   FOOTER
   ===================== */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 32px; height: 32px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.875rem; color: white; }
.footer-text { font-size: 1rem; font-weight: 600; }
.footer-text span { color: var(--accent); }
.footer-copy { font-size: 0.875rem; color: var(--text-muted); margin-left: 12px; }
.footer-right { display: flex; gap: 28px; }
.footer-right a { font-size: 0.9375rem; color: var(--text-muted); transition: color 0.25s; }
.footer-right a:hover { color: var(--text-primary); }

/* =====================
   ANIMATIONS & UTILITIES
   ===================== */
.fade-up { opacity: 0; transform: translateY(40px); }

.preloader { position: fixed; inset: 0; background: var(--bg-primary); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.preloader-logo { width: 64px; height: 64px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 800; color: white; animation: preloaderPulse 1.2s ease-in-out infinite; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(0.92); } }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.5s var(--ease); }

/* Skip to content — accesibilidad */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: white; padding: 8px 16px; border-radius: 0 0 8px 0; font-weight: 600; font-size: 0.875rem; z-index: 10001; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before, .timeline-progress { display: none; }
  .demo-container { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .services-grid, .cases-grid, .timeline, .diff-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .flow-diagram { flex-direction: column; }
  .flow-arrow { width: 2px; height: 40px; margin: 8px 0; }
  .flow-arrow::after { right: auto; left: 50%; bottom: -16px; top: auto; transform: translateX(-50%) rotate(90deg); }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-left { flex-direction: column; }
  .footer-copy { margin-left: 0; }
  .case-results { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-large { padding: 14px 24px; font-size: 0.9375rem; }
  .case-results { grid-template-columns: 1fr; }
}
