/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0c0b0a;
  --bg-alt:    #161513;
  --surface:   #1e1c1a;
  --border:    rgba(255,255,255,0.07);
  --text:      #f2ede6;
  --text-muted:#9e9590;
  --accent:    #e8913a;
  --accent-lo: rgba(232,145,58,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(12,11,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(24px, 5vw, 64px) 100px;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,145,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.manifesto::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(232,145,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.manifesto-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 780px;
  margin-bottom: 32px;
}
.manifesto-headline br { display: block; }
.manifesto-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 64px;
  font-weight: 400;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}
.services-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.services-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 600px;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  border-color: rgba(232,145,58,0.25);
  background: #222019;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-lo);
  border: 1px solid rgba(232,145,58,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== AUDIENCE ===== */
.audience {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}
.audience-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.audience-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.audience-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sector-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.sector-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sector-list li {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.sector-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}
.process-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.process-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 620px;
}
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding-right: 24px;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 28px;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg);
  padding: clamp(100px, 14vw, 160px) clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,145,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 64px);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #25D366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .manifesto-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .audience-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; gap: 0; }
  .step-connector { width: 1px; height: 32px; margin: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .manifesto-headline br { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .manifesto-headline { font-size: 38px; }
}
