/*
Theme Name: Prometeus
Theme URI: https://andrewcfonseca.com.br
Author: Andrew Fonsêca
Description: Tema personalizado para Assessoria Global de Investimentos — design escuro profissional com análise quantitativa e alocação global.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: prometeus
*/

:root {
  --bg: #0A0E17;
  --surface: #111827;
  --surface2: #1A2332;
  --border: rgba(255,255,255,0.06);
  --border2: #1F2A3A;
  --text: #f8f8f8;
  --text2: #f8f8f8;
  --text3: rgba(255,255,255,0.3);
  --blue: #3B82F6;
  --blue-dim: rgba(59,130,246,0.08);
  --blue-el: #1E88FF;
  --blue-glow: rgba(30,136,255,0.15);
  --navy-deep: #050B18;
  --teal: #14B8A6;
  --teal-dim: rgba(20,184,166,0.08);
  --green: #22C55E;
  --green-dim: rgba(34,197,94,0.1);
  --red: #EF4444;
  --red-dim: rgba(239,68,68,0.1);
  --gold: #F59E0B;
  --gold-dim: rgba(245,158,11,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

a { color: var(--teal); text-decoration: none; }
a:hover { opacity: .8; }
img { max-width: 100%; height: auto; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,14,23,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-logo { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.3px; }
.header-logo .accent { color: var(--teal); }
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a { text-decoration: none; color: var(--text2); font-size: 0.85rem; font-weight: 500; transition: color .2s; }
.header-nav a:hover { color: var(--text); }
.header-nav .current-menu-item a { color: var(--teal); }
.header-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.header-hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .2s; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-family: var(--font); font-weight: 600; font-size: 0.9rem; text-decoration: none; cursor: pointer; border: none; transition: all .25s; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(20,184,166,0.25); color: #fff; }
.btn-workshop { transition: all .25s; }
.btn-workshop:hover, .btn-workshop:active { background: var(--gold); color: #0A0E17; box-shadow: 0 8px 32px rgba(245,158,11,0.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-ghost { background: transparent; color: var(--text2); border: none; }
.btn-ghost:hover { color: var(--text); }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0A0E17 0%, #0D1520 40%, #0F1B2E 100%);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow.g1 { top: -30%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, transparent 70%); }
.hero-glow.g2 { bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 70%); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 64px; align-items: center; }
.hero-content { animation: fadeUp .8s ease; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px;
  background: var(--teal-dim); color: var(--teal); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 20px;
}
.hero h1 { font-size: 2.75rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.1; }
.hero h1 .grad { background: linear-gradient(135deg, var(--teal), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero h1 .highlight { color: var(--teal); }
.hero-sub { font-size: 1.05rem; color: var(--text2); margin-bottom: 28px; max-width: 520px; line-height: 1.75; }
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text3); }
.hero-trust-item .num { font-family: var(--font-mono); color: var(--text2); font-weight: 600; }

.hero-card {
  background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hero-card-header span { font-size: 0.8rem; color: var(--text2); font-weight: 500; }
.hero-card-header .live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--green); text-transform: uppercase; letter-spacing: .5px; }
.hero-card-header .live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-card-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hero-card-row:last-child { border: none; }
.hero-card-row .name { font-weight: 500; font-size: 0.85rem; }
.hero-card-row .tag { font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: .5px; margin-right: 8px; }
.hero-card-row .val { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; }
.hero-card-row .val.up { color: var(--green); }
.hero-card-row .val.down { color: var(--red); }
.hero-card-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }

/* Section */
.section { padding: 96px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.methodology-wrap .section-alt { background: transparent; border-color: rgba(30,136,255,0.06); }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px;
}
.section-tag.teal { background: var(--teal-dim); color: var(--teal); }
.section-tag.blue { background: var(--blue-dim); color: var(--blue); }
.section-tag.gold { background: var(--gold-dim); color: var(--gold); }
.section-tag.green { background: var(--green-dim); color: var(--green); }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.section-desc { color: var(--text2); max-width: 640px; font-size: 0.95rem; margin-bottom: 48px; line-height: 1.7; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-photo { width: 100%; border-radius: var(--radius); border: 1px solid var(--border2); overflow: hidden; }
.about-photo img { width: 100%; display: block; }
.about-text p { font-size: 0.9rem; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.about-text strong { color: var(--text); }
.about-text .highlight { color: var(--teal); font-weight: 600; }
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.about-cred { background: var(--bg); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 14px; }
.about-cred .main { font-size: 1rem; font-weight: 700; color: var(--teal); font-family: var(--font-mono); }
.about-cred .sub { font-size: 0.78rem; color: var(--text2); margin-top: 2px; }
.about-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* Methodology */
.methodology-wrap {
  position: relative; background: var(--navy-deep); overflow: hidden;
  border-top: 1px solid rgba(30,136,255,0.08); border-bottom: 1px solid rgba(30,136,255,0.08);
}
.methodology-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(30,136,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(30,136,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.method-map-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 0.15; }
.method-map-bg svg { width: 100%; height: 100%; }
.map-dot { animation: mapPulse 4s ease-in-out infinite; }
.map-dot:nth-child(2) { animation-delay: 1s; }
.map-dot:nth-child(3) { animation-delay: 2s; }
.map-dot:nth-child(4) { animation-delay: 3s; }
.map-dot:nth-child(5) { animation-delay: 0.5s; }
@keyframes mapPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.map-line { stroke-dasharray: 4 4; animation: dashMove 30s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -1000; } }

.method-floats { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.float-data {
  position: absolute; font-family: var(--font-mono); font-size: 0.7rem;
  color: rgba(30,136,255,0.2); white-space: nowrap;
  animation: floatDrift 20s linear infinite;
}
.float-data:nth-child(1) { top: 10%; left: 5%; animation-duration: 25s; }
.float-data:nth-child(2) { top: 30%; right: 8%; animation-duration: 22s; animation-delay: -5s; }
.float-data:nth-child(3) { bottom: 25%; left: 12%; animation-duration: 28s; animation-delay: -10s; }
.float-data:nth-child(4) { bottom: 15%; right: 15%; animation-duration: 20s; animation-delay: -15s; }
.float-data:nth-child(5) { top: 55%; left: 50%; animation-duration: 24s; animation-delay: -7s; }
@keyframes floatDrift { 0%{transform:translateY(0) translateX(0);opacity:0} 10%{opacity:0.3} 90%{opacity:0.3} 100%{transform:translateY(-120px) translateX(60px);opacity:0} }

.method-chart { position: absolute; right: 8%; bottom: 20%; pointer-events: none; opacity: 0.06; }
.method-chart svg { width: 200px; height: 80px; }
.method-header { position: relative; z-index: 2; }
.method-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px;
  background: rgba(30,136,255,0.1); color: var(--blue-el); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; border: 1px solid rgba(30,136,255,0.15);
}
.method-title { font-size: 2.2rem; font-weight: 900; margin-bottom: 14px; letter-spacing: -0.5px; line-height: 1.15; }
.method-title .grad { background: linear-gradient(135deg, var(--blue-el) 0%, #64B5F6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.method-sub { color: var(--text2); max-width: 600px; font-size: 0.95rem; line-height: 1.7; margin-bottom: 56px; position: relative; z-index: 2; }

.process-flow { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0; }
.process-row { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; }
.process-node { display: flex; flex-direction: column; align-items: center; position: relative; cursor: pointer; padding: 20px 24px 16px; min-width: 180px; transition: all .4s cubic-bezier(0.4,0,0.2,1); }
.process-node:hover { transform: translateY(-2px); }
.process-node-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.process-node .node-ring { position: relative; z-index: 2; width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; background: rgba(251,201,43,0.09); backdrop-filter: blur(12px); border: 2.5px solid rgba(251,201,43,0.3); transition: all .4s; }
.process-node:hover .node-ring { border-color: #FBC92B; box-shadow: 0 0 50px rgba(251,201,43,0.2), inset 0 0 30px rgba(251,201,43,0.08); background: rgba(251,201,43,0.15); }
.process-node .node-ring .node-icon { font-size: 1.8rem; line-height: 1; }
.process-node .node-ring .step-num { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; color: rgba(251,201,43,0.5); line-height: 1; }
.process-node .node-label { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.8); text-align: center; letter-spacing: 0.3px; margin-top: 6px; transition: color .3s; }
.process-node:hover .node-label { color: #fff; }
.process-node .node-desc { position: relative; width: 200px; padding: 10px 14px; font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.6; text-align: center; transition: all .35s; border-radius: 8px; margin-top: 4px; }
.process-node:hover .node-desc { color: rgba(255,255,255,0.8); background: rgba(17,24,39,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(251,201,43,0.12); padding: 12px 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.process-arrow { display: flex; align-items: center; justify-content: center; width: 64px; height: 120px; flex-shrink: 0; position: relative; }
.process-arrow svg { width: 52px; height: 52px; }
.process-arrow .arrow-path { fill: none; stroke: rgba(251,201,43,0.2); stroke-width: 1.5; stroke-linecap: round; }
.process-arrow:hover .arrow-path { stroke: rgba(251,201,43,0.5); }
.process-down { display: flex; align-items: center; justify-content: center; height: 48px; width: 100%; position: relative; }
.process-down::before { content: ''; width: 2px; height: 100%; background: linear-gradient(to bottom, rgba(251,201,43,0.25), rgba(251,201,43,0.05)); position: absolute; left: 50%; }
.process-down .down-arrow { position: relative; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(17,24,39,0.8); backdrop-filter: blur(8px); border: 2px solid rgba(251,201,43,0.25); display: flex; align-items: center; justify-content: center; color: #FBC92B; font-size: 0.85rem; animation: downPulse 3s ease-in-out infinite; }
@keyframes downPulse { 0%,100%{border-color:rgba(251,201,43,0.2)} 50%{border-color:rgba(251,201,43,0.5)} }

.method-pillars { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(30,136,255,0.08); }
.pillar { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(30,136,255,0.03); border: 1px solid rgba(30,136,255,0.06); border-radius: var(--radius-sm); }
.pillar .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(30,136,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue-el); font-size: 0.7rem; font-weight: 700; }
.pillar span { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; }

/* Comparison */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.comp-card { border-radius: var(--radius); padding: 28px; }
.comp-card.br { background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02)); border: 1px solid rgba(239,68,68,0.12); }
.comp-card.global { background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(34,197,94,0.02)); border: 1px solid rgba(34,197,94,0.12); }
.comp-card .flag { font-size: 1.5rem; margin-bottom: 8px; }
.comp-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.comp-card .sub { font-size: 0.8rem; color: var(--text3); margin-bottom: 20px; }
.comp-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.comp-row:last-child { border: none; }
.comp-row .label { color: var(--text2); }
.comp-row .val { font-weight: 600; }
.comp-card.br .val { color: var(--red); }
.comp-card.global .val { color: var(--green); }

/* Stats Strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.stat-item { text-align: center; padding: 24px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); }
.stat-item .num { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 800; color: var(--teal); }
.stat-item .label { font-size: 0.78rem; color: var(--text2); margin-top: 4px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { background: var(--bg); border: 1px solid var(--border2); border-radius: var(--radius); padding: 28px; transition: all .25s; position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.service-card .icon { font-size: 1.5rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.service-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.service-link { font-size: 0.8rem; color: var(--teal); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.service-link:hover { gap: 8px; }

/* Proof */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card { background: var(--bg); border: 1px solid var(--border2); border-radius: var(--radius); padding: 20px; text-align: center; }
.proof-card .img-wrap { height: 150px; background: var(--surface2); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; cursor: zoom-in; }
.proof-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.proof-card .img-wrap:hover img { transform: scale(1.03); }
.proof-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.proof-card p { color: var(--text2); font-size: 0.8rem; }
.proof-card .result { font-family: var(--font-mono); font-size: 1.15rem; font-weight: 700; color: var(--teal); margin-top: 8px; }

/* Content Strip */
.content-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.content-card { background: var(--bg); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px; }
.content-card .label { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; font-family: var(--font-mono); }
.content-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.content-card p { font-size: 0.82rem; color: var(--text2); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #0D1520 0%, #0F1B2E 50%, #0A0E17 100%);
  border-top: 1px solid var(--border); text-align: center; padding: 96px 0;
}
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: var(--text2); max-width: 520px; margin: 0 auto 32px; font-size: 0.95rem; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.cta-form input { flex: 1; padding: 14px 18px; border-radius: 8px; border: 1px solid var(--border2); background: var(--surface); color: var(--text); font-family: var(--font); font-size: 0.9rem; outline: none; transition: border-color .2s; }
.cta-form input:focus { border-color: var(--teal); }
.cta-form input::placeholder { color: var(--text3); }
.cta-form .btn { flex-shrink: 0; }
.cta-disclaimer { font-size: 0.75rem; color: var(--text3); margin-top: 12px; }

/* Footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); text-align: center; }
.footer-brand { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.footer-brand span { color: var(--teal); }
.footer p { color: var(--text3); font-size: 0.78rem; margin-bottom: 4px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin: 16px 0; }
.footer-links a { color: var(--text2); text-decoration: none; font-size: 0.82rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }

/* Lightbox */
.lightbox { display: none; position: fixed; z-index: 9999; inset: 0; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; opacity: .6; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: rgba(10,14,23,0.98); backdrop-filter: blur(12px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text); text-decoration: none; font-size: 1.1rem; font-weight: 600; }
.mobile-nav .btn { font-size: 1rem; }

/* Blog */
.blog-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-post-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 28px; transition: all .25s; }
.blog-post-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.blog-post-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.blog-post-card h3 a { color: var(--text); text-decoration: none; }
.blog-post-card h3 a:hover { color: var(--teal); }
.blog-post-card .meta { font-size: 0.75rem; color: var(--text3); margin-bottom: 12px; font-family: var(--font-mono); }
.blog-post-card p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; }
.blog-post-card .read-more { font-size: 0.8rem; color: var(--teal); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; text-decoration: none; }
.blog-post-card .read-more:hover { gap: 8px; }

/* Single Post */
.post-header { text-align: center; padding: 140px 0 60px; }
.post-header .post-category { font-size: 0.7rem; color: var(--teal); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.post-header h1 { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 12px; }
.post-header .post-meta { color: var(--text3); font-size: 0.8rem; font-family: var(--font-mono); }
.post-content { max-width: 720px; margin: 0 auto 60px; }
.post-content p { font-size: 0.95rem; color: var(--text2); line-height: 1.8; margin-bottom: 20px; }
.post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.post-content h3 { font-size: 1.2rem; font-weight: 600; margin: 32px 0 12px; }
.post-content ul, .post-content ol { color: var(--text2); font-size: 0.95rem; line-height: 1.8; margin: 0 0 20px 24px; }
.post-content img { border-radius: var(--radius); margin: 24px 0; }

/* CF7 Styles */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%; padding: 14px 18px; border-radius: 8px; border: 1px solid var(--border2);
  background: var(--surface); color: var(--text); font-family: var(--font);
  font-size: 0.9rem; outline: none; transition: border-color .2s;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--teal); }
.wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem; text-decoration: none;
  cursor: pointer; border: none; transition: all .25s;
  background: var(--teal); color: #fff;
}
.wpcf7-form input[type="submit"]:hover {
  opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(20,184,166,0.25);
}
.wpcf7-not-valid-tip { color: var(--red); font-size: 0.75rem; }
.wpcf7-response-output { font-size: 0.85rem; border-radius: 8px; padding: 12px; margin: 16px 0; }
.wpcf7-mail-sent-ok { border: 1px solid var(--green); color: var(--green); }
.wpcf7-validation-errors { border: 1px solid var(--gold); color: var(--gold); }
.wpcf7-spam { border: 1px solid var(--red); color: var(--red); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-card { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .process-node { min-width: 120px; padding: 14px 12px 10px; }
  .process-node .node-ring { width: 80px; height: 80px; }
  .process-node .node-ring .node-icon { font-size: 1.3rem; }
  .process-node .node-ring .step-num { font-size: 0.7rem; }
  .process-node .node-label { font-size: 0.75rem; }
  .process-node .node-desc { font-size: 0.65rem; width: 150px; }
  .process-arrow { width: 36px; }
  .process-arrow svg { width: 30px; height: 30px; }
  .process-down { height: 32px; }
  .method-pillars { grid-template-columns: repeat(2, 1fr); }
  .method-title { font-size: 1.6rem; }
  .method-floats { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .content-strip { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .header-hamburger { display: flex; }
  .blog-posts { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 1.5rem; }
  .service-card { padding: 20px; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-item { padding: 16px; }
  .stat-item .num { font-size: 1.3rem; }
  .cta-form { flex-direction: column; }
  .process-flow { gap: 8px; }
  .process-row { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .process-flow { gap: 4px; }
  .process-row { flex-wrap: wrap; justify-content: center; gap: 2px; }
  .process-node { min-width: 100px; padding: 10px 6px 8px; }
  .process-node .node-ring { width: 68px; height: 68px; }
  .process-node .node-ring .node-icon { font-size: 1.1rem; }
  .process-node .node-ring .step-num { font-size: 0.6rem; }
  .process-node .node-label { font-size: 0.65rem; }
  .process-node .node-desc { display: none; }
  .process-arrow { width: 24px; }
  .process-arrow svg { width: 22px; height: 22px; }
  .process-down { height: 24px; }
  .process-down .down-arrow { width: 24px; height: 24px; font-size: 0.6rem; }
  .process-down { height: 24px; }
  .process-down .down-arrow { width: 20px; height: 20px; font-size: 0.6rem; }
  .method-pillars { grid-template-columns: 1fr; }
  .pillar { font-size: 0.75rem; }
  .post-header h1 { font-size: 1.6rem; }
}
