/*
Theme Name: D Plus Anatolia
Theme URI: https://www.dplusanatolia.com
Author: D Plus Anatolia
Author URI: https://www.dplusanatolia.com
Description: Butik yazılım evi — İş süreçlerinize özel, nokta atışı yazılımlar.
Version: 3.0.0
Requires at least: 5.9
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: dplus
Tags: business, portfolio, agency, software, custom-logo, custom-menu
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --black:      #000000;
  --off-black:  #000000;
  --surface:    #000000;
  --surface-2:  #000000;
  --line:       #242424;
  --line-2:     #2e2e2e;
  --white:      #f5f5f0;
  --white-dim:  rgba(245,245,240,.55);
  --white-faint:rgba(245,245,240,.18);
  --red:        #e63030;
  --red-dim:    rgba(230,48,48,.12);
  --cyan:       #00d4c8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --ease:       cubic-bezier(.16,1,.3,1);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: .25s var(--ease);
  --container:  1240px;
  --header-h:   72px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.subhead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.body-lg { font-size: 1.1rem; line-height: 1.7; }
.body-sm { font-size: .88rem; line-height: 1.6; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--white-faint);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: #c02020;
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.primary-nav a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: .02em;
  transition: color .2s;
}
.primary-nav a:hover { color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--white-dim);
  transition: color .2s;
}
.nav-phone:hover { color: var(--white); }
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white-dim);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--header-h);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(230,48,48,.12) 0%, transparent 70%);
  filter: blur(40px);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: .88;
  letter-spacing: -.02em;
  margin-bottom: 3rem;
}
.hero-title .accent { color: var(--red); }
.hero-title .stroke {
  -webkit-text-stroke: 1px rgba(245,245,240,.3);
  color: transparent;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 480px;
  color: var(--white-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-desc strong { color: var(--white); font-weight: 600; }
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}
.hero-stat-num .unit { color: var(--red); }
.hero-stat-label {
  font-size: .8rem;
  color: var(--white-dim);
  margin-top: .25rem;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  overflow: hidden;
  background: var(--black);
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item .sep { color: var(--red); font-size: 1rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--black); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.manifesto-statement {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -.03em;
}
.manifesto-statement em {
  font-style: normal;
  color: var(--red);
}
.manifesto-right { display: flex; flex-direction: column; gap: 2rem; }
.manifesto-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.manifesto-point:last-child { border-bottom: none; padding-bottom: 0; }
.manifesto-num {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--red);
  letter-spacing: .1em;
  padding-top: .2rem;
  flex-shrink: 0;
}
.manifesto-point-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.manifesto-point-body {
  font-size: .9rem;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions { background: var(--black); }
.solutions-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.solutions-list { display: flex; flex-direction: column; }
.solution-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
}
.solution-item:first-child { border-top: 1px solid var(--line); }
.solution-item::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: var(--surface);
  opacity: 0;
  transition: opacity .25s;
  z-index: -1;
}
.solution-item:hover::after { opacity: 1; }
.solution-num {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--white-faint);
  letter-spacing: .1em;
}
.solution-content {}
.solution-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.solution-desc {
  font-size: .88rem;
  color: var(--white-dim);
  max-width: 540px;
}
.solution-arrow {
  color: var(--white-faint);
  font-size: 1.2rem;
  transition: var(--transition);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--black); border-top: 1px solid var(--line); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--line-2);
  margin-bottom: 1.5rem;
}
.process-step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.process-step-desc {
  font-size: .875rem;
  color: var(--white-dim);
  line-height: 1.65;
}
.process-step-connector {
  position: absolute;
  top: 3rem;
  right: -1px;
  width: 1px;
  height: 40px;
  background: var(--red);
  opacity: 0;
  transition: opacity .3s;
}

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers { background: var(--black); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.number-cell {
  padding: 4rem 3rem;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.number-cell:last-child { border-right: none; }
.number-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dim), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.number-cell:hover::before { opacity: 1; }
.number-val {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: .5rem;
}
.number-val .plus { color: var(--red); }
.number-label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--black); border-top: 1px solid var(--line); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--line); border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.testimonial-card {
  background: var(--black);
  padding: 2.5rem;
  transition: background .25s;
}
.testimonial-card:hover { background: var(--surface); }
.testimonial-quote {
  font-size: .95rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; color: var(--red); font-family: var(--font-display); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: .2rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  color: var(--white-dim);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; margin-bottom: .1rem; }
.testimonial-role { font-size: .78rem; color: var(--white-dim); font-family: var(--font-mono); letter-spacing: .04em; }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  position: relative;
}
.cta-block-bg {
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(230,48,48,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.02em;
}
.cta-title .dim { color: var(--white-faint); }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-note {
  font-size: .8rem;
  color: var(--white-faint);
  font-family: var(--font-mono);
  letter-spacing: .06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-info a, .footer-info span {
  font-size: .8rem;
  color: var(--white-dim);
  font-family: var(--font-mono);
  letter-spacing: .04em;
  transition: color .2s;
}
.footer-info a:hover { color: var(--white); }
.footer-copy {
  font-size: .78rem;
  color: var(--white-faint);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-form-group { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label { font-size: .75rem; color: var(--white-dim); font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  color: var(--white);
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--white-faint); }
.form-field textarea { min-height: 140px; }
.form-field select option { background: var(--surface); }
.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(0,212,200,.08);
  border: 1px solid rgba(0,212,200,.2);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: .9rem;
}
.form-error-msg {
  display: none;
  padding: 1rem 1.5rem;
  background: var(--red-dim);
  border: 1px solid rgba(230,48,48,.25);
  border-radius: var(--radius);
  color: #ff6b6b;
  font-size: .88rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-item { display: flex; flex-direction: column; gap: .4rem; }
.contact-info-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white-faint); }
.contact-info-value { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.contact-info-value a { transition: color .2s; }
.contact-info-value a:hover { color: var(--red); }

/* ============================================================
   PAGE HERO (generic)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   ENTRY CONTENT
   ============================================================ */
.entry-content { max-width: 760px; }
.entry-content h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; letter-spacing: -.02em; margin: 2.5rem 0 1rem; }
.entry-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; margin: 2rem 0 .75rem; }
.entry-content p { color: var(--white-dim); line-height: 1.75; margin-bottom: 1.25rem; }
.entry-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--white-dim); }
.entry-content li { margin-bottom: .5rem; }

/* ============================================================
   404 / SEARCH
   ============================================================ */
.error-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.error-code {
  position: absolute;
  font-family: var(--font-display);
  font-size: 40vw;
  color: var(--surface);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--white-faint); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: var(--red); color: #fff; }

/* ============================================================
   WP CORE
   ============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--white-dim); margin-top: .5rem; font-family: var(--font-mono); }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-inline: auto; text-align: center; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
img.alignleft, img.alignright, img.aligncenter { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .solutions-intro { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--line); }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-stats { gap: 2rem; }
  .solution-item { grid-template-columns: 48px 1fr auto; gap: 1rem; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .number-cell:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-info { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 2.5rem; }
}
