/* ═══════════════════════════════════════════════════════════════
   WEBTHROPIC — EDITORIAL STUDIO DESIGN SYSTEM
   Ported into PHP MVC. Load AFTER bootstrap (if kept) so this wins.
═══════════════════════════════════════════════════════════════ */
:root {
  --paper:      #F6F2E9;
  --paper-2:    #EEE8DA;
  --paper-3:    #E6DFCD;
  --ink:        #0E0D0B;
  --ink-2:      #2A2722;
  --ink-3:      #6B655A;
  --ink-4:      #A8A292;
  --line:       rgba(14,13,11,0.10);
  --line-2:     rgba(14,13,11,0.18);
  --line-3:     rgba(14,13,11,0.32);

  --accent:     #DC4A1B;
  --accent-2:   #B83A12;
  --accent-soft: rgba(220,74,27,0.08);
  --accent-line: rgba(220,74,27,0.22);

  --positive:   #1F6B3A;
  --positive-soft: rgba(31,107,58,0.07);
  --whatsapp:   #128C7E;

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body:    'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --nav-h:      72px;
  --r-sm:       6px;
  --r:          10px;
  --r-lg:       18px;
  --ease:       cubic-bezier(0.32, 0.72, 0, 1);
  --t:          0.32s;
  --t-fast:     0.18s;

  --w:          1280px;
  --w-narrow:   880px;
}

/* RESET — scoped reset; if Bootstrap is kept, this body rule still wins by load order */
.ed *, .ed *::before, .ed *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body.ed {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
.ed ::selection { background: var(--ink); color: var(--paper); }
.ed a { text-decoration: none; color: inherit; }
.ed button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.ed img, .ed svg { max-width: 100%; display: block; }
.ed input, .ed textarea { font-family: inherit; color: inherit; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-4); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }

body.ed::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply; opacity: 0.5;
}

/* TYPOGRAPHY */
.ed .serif    { font-family: var(--font-display); font-weight: 400; }
.ed .serif-it { font-family: var(--font-display); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.ed .mono     { font-family: var(--font-mono); }
.ed .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
}
.ed .eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.ed h1, .ed h2, .ed h3, .ed h4 {
  font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.02; color: var(--ink); margin: 0;
}
.ed .display { font-family: var(--font-display); font-size: clamp(2.6rem, 6.8vw, 5.8rem); font-weight: 400; letter-spacing: -0.025em; line-height: 0.98; }
.ed .display em { font-style: italic; letter-spacing: -0.015em; color: var(--accent); }
.ed .title { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; }
.ed .title em { font-style: italic; color: var(--accent); }
.ed .subtitle { font-family: var(--font-body); font-size: 1.05rem; font-weight: 400; line-height: 1.6; color: var(--ink-2); max-width: 56ch; }

/* LAYOUT */
.ed .wrap { max-width: var(--w); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.ed section { padding: 120px 0; position: relative; }
.ed section + section { border-top: 1px solid var(--line); }
.ed .section-narrow { max-width: var(--w-narrow); margin: 0 auto; padding: 0 32px; }
.ed .split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 96px; align-items: start; }

/* BUTTONS */
.ed .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; letter-spacing: -0.005em; border-radius: 999px; transition: var(--t) var(--ease); white-space: nowrap; position: relative; }
.ed .btn-primary { background: var(--ink); color: var(--paper); }
.ed .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.ed .btn-primary .arrow { transition: transform var(--t-fast); }
.ed .btn-primary:hover .arrow { transform: translateX(3px); }
.ed .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.ed .btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ed .btn-accent { background: var(--accent); color: #fff; }
.ed .btn-accent:hover { background: var(--accent-2); transform: translateY(-1px); }
.ed .btn-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-2); padding-bottom: 3px; transition: var(--t-fast); }
.ed .btn-link:hover { border-color: var(--ink); color: var(--accent); }
.ed .btn-link .arrow { transition: transform var(--t-fast); }
.ed .btn-link:hover .arrow { transform: translateX(3px); }

/* ANNOUNCEMENT */
.ed .announce { background: var(--ink); color: var(--paper); padding: 10px 32px; text-align: center; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.01em; position: relative; z-index: 1001; }
.ed .announce em { color: var(--accent); font-style: italic; font-family: var(--font-display); font-size: 1rem; padding: 0 2px; }
.ed .announce a { border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
.ed .announce a:hover { border-color: var(--accent); }

/* HEADER */
.ed-header { position: sticky; top: 0; background: rgba(246,242,233,0.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid transparent; z-index: 1000; transition: var(--t); }
.ed-header.scrolled { border-bottom-color: var(--line); background: rgba(246,242,233,0.95); }
.ed-header nav.nav-bar { max-width: var(--w); margin: 0 auto; padding: 0 32px; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.ed-header .logo { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; letter-spacing: -0.025em; color: var(--ink); flex-shrink: 0; }
.ed-header .logo em { font-style: italic; color: var(--accent); }
.ed-header .logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-right: 10px; position: relative; top: -3px; }
.ed-header .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ed-header .nav-links a, .ed-header .nav-links button { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 0.9rem; font-weight: 400; color: var(--ink-2); border-radius: 999px; transition: var(--t-fast); }
.ed-header .nav-links a:hover, .ed-header .nav-links button:hover { color: var(--ink); background: rgba(14,13,11,0.05); }
.ed-header .nav-links li { position: relative; }
.ed-header .chev { font-size: 0.6rem; opacity: 0.5; transition: transform var(--t-fast); }
.ed-header .nav-links li:hover .chev { transform: rotate(180deg); }
.ed-header .dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 10px; min-width: 300px; opacity: 0; pointer-events: none; transition: var(--t) var(--ease); box-shadow: 0 24px 60px -16px rgba(14,13,11,0.15), 0 0 0 1px var(--line); }
.ed-header .dropdown.mega { min-width: 340px; }
.ed-header .nav-links li:hover > .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.ed-header .dropdown a { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: 10px; transition: var(--t-fast); }
.ed-header .dropdown a:hover { background: var(--paper-2); }
.ed-header .dd-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-4); padding-top: 2px; min-width: 22px; }
.ed-header .dd-txt strong { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.92rem; color: var(--ink); margin-bottom: 2px; }
.ed-header .dd-txt span { font-size: 0.78rem; color: var(--ink-3); line-height: 1.4; }
.ed-header .dd-divider { height: 1px; background: var(--line); margin: 6px 8px; }
.ed-header .nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ed-header .hamburger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; position: relative; }
.ed-header .hamburger span { position: absolute; width: 18px; height: 1.5px; background: var(--ink); transition: var(--t) var(--ease); }
.ed-header .hamburger span:nth-child(1) { transform: translateY(-5px); }
.ed-header .hamburger span:nth-child(2) { transform: translateY(5px); }
.ed-header .hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.ed-header .hamburger.open span:nth-child(2) { transform: rotate(-45deg); }

/* MOBILE NAV */
.ed .mob-nav { position: fixed; inset: 0; top: var(--nav-h); background: var(--paper); padding: 32px; transform: translateY(-100%); transition: var(--t) var(--ease); z-index: 999; overflow-y: auto; pointer-events: none; opacity: 0; }
.ed .mob-nav.open { transform: translateY(0); pointer-events: auto; opacity: 1; }
.ed .mob-nav-sec { margin-bottom: 28px; }
.ed .mob-nav-sec-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.ed .mob-nav-sec a { display: block; padding: 12px 0; font-size: 1.08rem; border-bottom: 1px solid var(--line); font-family: var(--font-display); letter-spacing: -0.01em; }
.ed .mob-nav-sec a:last-child { border-bottom: none; }
.ed .mob-nav-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.ed .mob-nav-cta .btn { flex: 1; justify-content: center; }

/* HERO */
.ed .hero { padding: 80px 0 120px; position: relative; overflow: hidden; }
.ed .hero-wrap { max-width: var(--w); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.ed .hero-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px; gap: 32px; flex-wrap: wrap; }
.ed .hero-meta-l { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.02em; }
.ed .hero-meta-dot { width: 7px; height: 7px; background: var(--positive); border-radius: 50%; position: relative; box-shadow: 0 0 0 0 rgba(31,107,58,0.5); animation: live-dot 2.4s ease-out infinite; }
@keyframes live-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(31,107,58,0.45); } 50% { box-shadow: 0 0 0 8px rgba(31,107,58,0); } }
.ed .hero-meta-r { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-4); letter-spacing: 0.02em; }
.ed .hero-headline { font-family: var(--font-display); font-size: clamp(3rem, 8.5vw, 7.4rem); font-weight: 400; line-height: 0.96; letter-spacing: -0.035em; color: var(--ink); margin-bottom: 40px; max-width: 14ch; }
.ed .hero-headline em { font-style: italic; color: var(--accent); letter-spacing: -0.025em; }
.ed .hero-cycle { display: inline-block; font-style: italic; color: var(--accent); position: relative; min-width: 4ch; }
.ed .hero-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: flex-end; padding-top: 24px; border-top: 1px solid var(--line); }
.ed .hero-lead { font-size: 1.18rem; line-height: 1.55; color: var(--ink-2); max-width: 44ch; font-weight: 400; }
.ed .hero-lead strong { color: var(--ink); font-weight: 500; }
.ed .hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.ed .hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ed .hero-trust { display: flex; flex-wrap: wrap; gap: 4px 18px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-3); letter-spacing: 0.01em; }
.ed .hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.ed .hero-trust span::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.ed .hero-flourish { position: absolute; right: -100px; top: 40px; width: 540px; height: 540px; pointer-events: none; opacity: 0.5; z-index: 1; }
.ed .hero-flourish svg { width: 100%; height: 100%; }
.ed .hero-flourish circle { fill: none; stroke: var(--accent); stroke-width: 0.4; opacity: 0.18; }
.ed .hero-flourish .ring-1 { animation: rot 80s linear infinite; transform-origin: center; }
.ed .hero-flourish .ring-2 { animation: rot 120s linear infinite reverse; transform-origin: center; }
@keyframes rot { to { transform: rotate(360deg); } }

/* PROOF STRIP */
.ed .proof-strip { padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.ed .proof-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ed .proof-label { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-3); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.ed .proof-logos { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.ed .proof-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-2); letter-spacing: -0.02em; opacity: 0.55; transition: var(--t); }
.ed .proof-logo:hover { opacity: 1; color: var(--ink); }
.ed .proof-logo em { font-style: italic; }

/* STATS */
.ed .stats { padding: 100px 0; }
.ed .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ed .stat { padding-top: 24px; border-top: 1px solid var(--line-2); }
.ed .stat-num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 400; line-height: 1; letter-spacing: -0.035em; margin-bottom: 10px; }
.ed .stat-num em { font-style: italic; color: var(--accent); }
.ed .stat-lbl { font-size: 0.85rem; color: var(--ink-2); line-height: 1.45; max-width: 22ch; }
.ed .stat-sub { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-4); margin-top: 6px; letter-spacing: 0.02em; }

/* MANIFESTO */
.ed .manifesto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 64px; border: 1px solid var(--line); }
.ed .manifesto-card { background: var(--paper); padding: 40px 32px; display: flex; flex-direction: column; gap: 14px; min-height: 280px; position: relative; transition: var(--t); }
.ed .manifesto-card:hover { background: var(--paper-2); }
.ed .manifesto-num { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-4); letter-spacing: 0.04em; }
.ed .manifesto-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; line-height: 1.18; letter-spacing: -0.015em; color: var(--ink); }
.ed .manifesto-card h3 em { font-style: italic; color: var(--accent); }
.ed .manifesto-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; margin-top: auto; }
.ed .manifesto-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent-2); letter-spacing: 0.04em; text-transform: uppercase; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }

/* SERVICES */
.ed .svc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.ed .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ed .svc { background: var(--paper); padding: 36px 28px 32px; display: flex; flex-direction: column; gap: 14px; min-height: 240px; transition: var(--t); position: relative; }
.ed .svc:hover { background: var(--paper-2); }
.ed .svc-num { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-4); letter-spacing: 0.04em; }
.ed .svc h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; letter-spacing: -0.015em; line-height: 1.15; margin-top: -2px; }
.ed .svc p { font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; margin-top: auto; }
.ed .svc-link { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-3); margin-top: 10px; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.04em; text-transform: uppercase; transition: var(--t-fast); }
.ed .svc:hover .svc-link { color: var(--accent); }
.ed .svc-link .arrow { transition: transform var(--t-fast); }
.ed .svc:hover .svc-link .arrow { transform: translateX(3px); }
.ed .svc.featured { background: var(--ink); color: var(--paper); }
.ed .svc.featured h3 { color: var(--paper); }
.ed .svc.featured h3 em { color: var(--accent); font-style: italic; }
.ed .svc.featured p { color: rgba(246,242,233,0.7); }
.ed .svc.featured .svc-num { color: rgba(246,242,233,0.5); }
.ed .svc.featured .svc-link { color: var(--accent); }
.ed .svc.featured:hover { background: #1a1815; }

/* ADWORDS */
.ed .ads-section { background: var(--ink); color: var(--paper); }
.ed .ads-section .eyebrow { color: rgba(246,242,233,0.55); }
.ed .ads-section .title { color: var(--paper); }
.ed .ads-section .title em { color: var(--accent); }
.ed .ads-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ed .ads-lead { font-size: 1.05rem; line-height: 1.6; color: rgba(246,242,233,0.78); margin: 28px 0 32px; max-width: 50ch; }
.ed .ads-lead strong { color: var(--paper); font-weight: 500; }
.ed .ads-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.ed .ads-section .btn-ghost { border-color: rgba(246,242,233,0.22); color: var(--paper); }
.ed .ads-section .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.ed .ads-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 28px; border-top: 1px solid rgba(246,242,233,0.15); }
.ed .ads-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; letter-spacing: -0.03em; color: var(--paper); line-height: 1; margin-bottom: 8px; }
.ed .ads-num em { font-style: italic; color: var(--accent); }
.ed .ads-num-lbl { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(246,242,233,0.55); letter-spacing: 0.04em; text-transform: uppercase; }
.ed .ads-timeline { position: relative; padding-left: 0; }
.ed .ads-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(246,242,233,0.15); align-items: start; }
.ed .ads-step:first-child { border-top: none; padding-top: 0; }
.ed .ads-step:last-child { padding-bottom: 0; }
.ed .ads-step-num { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--accent); line-height: 1; }
.ed .ads-step-body h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; letter-spacing: -0.015em; color: var(--paper); margin-bottom: 6px; }
.ed .ads-step-body p { font-size: 0.9rem; color: rgba(246,242,233,0.7); line-height: 1.55; margin-bottom: 8px; }
.ed .ads-step-time { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(246,242,233,0.5); letter-spacing: 0.04em; text-transform: uppercase; }
.ed .ads-step-time strong { color: var(--accent); font-weight: 500; }

/* PRICING */
.ed .pricing-head { text-align: center; margin-bottom: 64px; }
.ed .pricing-head .eyebrow { justify-content: center; }
.ed .pricing-head .eyebrow::after { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.ed .pricing-head .title { max-width: 18ch; margin: 16px auto 18px; }
.ed .pricing-head .subtitle { margin: 0 auto; }
.ed .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ed .price-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px 32px; display: flex; flex-direction: column; position: relative; transition: var(--t); }
.ed .price-card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(14,13,11,0.18); }
.ed .price-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ed .price-card.featured h3 { color: var(--paper); }
.ed .price-tag { position: absolute; top: -1px; right: 28px; background: var(--accent); color: #fff; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 0 0 8px 8px; }
.ed .price-plan { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.ed .price-card.featured .price-plan { color: rgba(246,242,233,0.55); }
.ed .price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 400; letter-spacing: -0.035em; line-height: 1; color: var(--ink); margin-bottom: 4px; }
.ed .price-card.featured .price-amount { color: var(--paper); }
.ed .price-amount sup { font-size: 1.1rem; font-style: italic; vertical-align: top; position: relative; top: 12px; color: var(--accent); }
.ed .price-amount em { color: var(--accent); font-style: italic; }
.ed .price-usd { font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-3); margin-bottom: 6px; }
.ed .price-card.featured .price-usd { color: rgba(246,242,233,0.6); }
.ed .price-period { font-size: 0.82rem; color: var(--ink-3); font-style: italic; font-family: var(--font-display); margin-bottom: 24px; }
.ed .price-card.featured .price-period { color: rgba(246,242,233,0.65); }
.ed .price-tagline { font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.ed .price-card.featured .price-tagline { color: rgba(246,242,233,0.78); border-color: rgba(246,242,233,0.15); }
.ed .price-features { list-style: none; margin-bottom: 28px; flex: 1; padding: 0; }
.ed .price-features li { font-size: 0.88rem; color: var(--ink-2); line-height: 1.45; padding: 7px 0 7px 22px; position: relative; }
.ed .price-card.featured .price-features li { color: rgba(246,242,233,0.82); }
.ed .price-features li::before { content: ''; position: absolute; left: 0; top: 14px; width: 10px; height: 1px; background: var(--accent); }
.ed .price-features li strong { color: var(--ink); font-weight: 500; }
.ed .price-card.featured .price-features li strong { color: var(--paper); }
.ed .price-btn { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; background: var(--ink); color: var(--paper); border-radius: 999px; font-size: 0.92rem; font-weight: 500; transition: var(--t); }
.ed .price-btn:hover { background: var(--accent); }
.ed .price-card.featured .price-btn { background: var(--accent); }
.ed .price-card.featured .price-btn:hover { background: var(--paper); color: var(--ink); }
.ed .maint { margin-top: 24px; padding: 24px 28px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ed .maint-text h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 4px; }
.ed .maint-text p { font-size: 0.85rem; color: var(--ink-3); max-width: 56ch; line-height: 1.5; }
.ed .maint-price { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--accent); white-space: nowrap; }
.ed .maint-price span { font-style: normal; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-3); margin-left: 4px; }
.ed .pricing-note { text-align: center; margin-top: 24px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.01em; }

/* PROCESS */
.ed .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--line-2); }
.ed .proc { padding: 32px 24px 0; border-right: 1px solid var(--line); position: relative; }
.ed .proc:last-child { border-right: none; }
.ed .proc-step { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-4); letter-spacing: 0.04em; margin-bottom: 14px; }
.ed .proc-step strong { color: var(--accent); font-weight: 500; }
.ed .proc h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.18; }
.ed .proc h4 em { font-style: italic; color: var(--accent); }
.ed .proc p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.55; max-width: 20ch; }

/* PORTFOLIO */
.ed .port-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 56px; }
.ed .port-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ed .port { background: var(--paper); padding: 40px 36px; display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: start; transition: var(--t); }
.ed .port:hover { background: var(--paper-2); }
.ed .port-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-4); letter-spacing: 0.04em; padding-top: 8px; }
.ed .port-info h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 8px; }
.ed .port-info h3 em { font-style: italic; color: var(--accent); }
.ed .port-info p { font-size: 0.88rem; color: var(--ink-2); line-height: 1.5; margin-bottom: 14px; max-width: 48ch; }
.ed .port-tags { display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }
.ed .port-tags span { display: inline-flex; align-items: center; gap: 6px; }
.ed .port-tags span::before { content: ''; width: 4px; height: 4px; background: var(--ink-4); border-radius: 50%; }
.ed .port-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--ink-3); transition: var(--t-fast); }
.ed .port:hover .port-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translate(2px, -2px); }

/* COMPARISON */
.ed .compare-wrap { margin-top: 56px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); }
.ed .compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.ed .compare-table th, .ed .compare-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.ed .compare-table tbody tr:last-child th, .ed .compare-table tbody tr:last-child td { border-bottom: none; }
.ed .compare-table thead th { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); background: var(--paper-2); }
.ed .compare-table thead th.us { color: var(--accent); background: var(--ink); }
.ed .compare-table tbody td:first-child { color: var(--ink-2); font-weight: 400; }
.ed .compare-table .ic-y { color: var(--positive); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }
.ed .compare-table .ic-n { color: var(--ink-4); font-family: var(--font-mono); }
.ed .compare-table .ic-p { color: var(--ink-3); font-family: var(--font-mono); font-size: 0.78rem; }
.ed .compare-table td.us-col { background: rgba(220,74,27,0.04); font-weight: 500; color: var(--ink); }

/* TESTIMONIALS */
.ed .testi-head { text-align: center; margin-bottom: 64px; }
.ed .testi-head .eyebrow { justify-content: center; }
.ed .testi-head .eyebrow::after { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.ed .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ed .testi { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; display: flex; flex-direction: column; gap: 20px; }
.ed .testi-quote { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; line-height: 1.35; letter-spacing: -0.015em; color: var(--ink); }
.ed .testi-result { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-2); letter-spacing: 0.02em; padding: 10px 14px; background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 8px; align-self: flex-start; }
.ed .testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.ed .testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-style: italic; flex-shrink: 0; }
.ed .testi-name { font-size: 0.92rem; font-weight: 500; color: var(--ink); letter-spacing: -0.005em; }
.ed .testi-role { font-size: 0.78rem; color: var(--ink-3); margin-top: 2px; }
.ed .testi-city { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-4); margin-top: 4px; letter-spacing: 0.02em; }
.ed .testi-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }

/* FAQ */
.ed .faq-grid { margin-top: 56px; border-top: 1px solid var(--line-2); }
.ed .faq { border-bottom: 1px solid var(--line); }
.ed .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 24px 0; text-align: left; font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); transition: var(--t-fast); }
.ed .faq-q:hover { color: var(--accent); }
.ed .faq-q em { font-style: italic; }
.ed .faq-ico { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 1rem; font-weight: 400; transition: var(--t); }
.ed .faq.open .faq-ico { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: rotate(45deg); }
.ed .faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.ed .faq.open .faq-a { max-height: 400px; }
.ed .faq-a-inner { padding: 0 0 28px; font-size: 0.95rem; color: var(--ink-2); line-height: 1.65; max-width: 70ch; }
.ed .faq-a-inner strong { color: var(--ink); font-weight: 500; }

/* FINAL CTA */
.ed .final-cta { background: var(--ink); color: var(--paper); text-align: center; padding: 140px 0; }
.ed .final-cta .eyebrow { color: rgba(246,242,233,0.55); justify-content: center; }
.ed .final-cta .eyebrow::after { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.ed .final-cta-headline { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.02; margin: 24px auto 24px; max-width: 18ch; color: var(--paper); }
.ed .final-cta-headline em { font-style: italic; color: var(--accent); }
.ed .final-cta p { font-size: 1.05rem; color: rgba(246,242,233,0.7); max-width: 52ch; margin: 0 auto 40px; line-height: 1.55; }
.ed .final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ed .final-cta .btn-primary { background: var(--accent); color: #fff; }
.ed .final-cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
.ed .final-cta .btn-ghost { border-color: rgba(246,242,233,0.22); color: var(--paper); }
.ed .final-cta .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.ed .final-cta-meta { margin-top: 32px; font-family: var(--font-mono); font-size: 0.74rem; color: rgba(246,242,233,0.45); letter-spacing: 0.04em; text-transform: uppercase; }

/* CONTACT FORM */
.ed .contact-section { background: var(--paper-2); }
.ed .contact-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.ed .contact-info h2 { margin-bottom: 18px; }
.ed .contact-info p { font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; max-width: 44ch; margin-bottom: 32px; }
.ed .contact-direct { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ed .contact-direct a { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); transition: var(--t); }
.ed .contact-direct a:hover { border-color: var(--ink); transform: translateX(4px); }
.ed .contact-direct-lbl { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-4); letter-spacing: 0.06em; text-transform: uppercase; }
.ed .contact-direct-val { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: -0.015em; color: var(--ink); margin-top: 2px; }
.ed .contact-direct-val em { font-style: italic; color: var(--accent); }
.ed .contact-direct-arrow { margin-left: auto; font-size: 1.2rem; color: var(--ink-4); transition: var(--t-fast); }
.ed .contact-direct a:hover .contact-direct-arrow { color: var(--accent); transform: translateX(3px); }
.ed .contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px; }
.ed .contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 6px; }
.ed .contact-form h3 em { font-style: italic; color: var(--accent); }
.ed .contact-form .sub { font-size: 0.88rem; color: var(--ink-3); margin-bottom: 24px; }
.ed .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ed .form-row.full { grid-template-columns: 1fr; }
.ed .field label { display: block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.ed .field label em { color: var(--accent); font-style: normal; }
.ed .field input { width: 100%; padding: 12px 14px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); font-size: 0.92rem; outline: none; transition: var(--t-fast); }
.ed .field input::placeholder { color: var(--ink-4); }
.ed .field input:focus { border-color: var(--ink); background: var(--paper); }
.ed .field input.err { border-color: var(--accent); }
.ed .field-err { font-size: 0.72rem; color: var(--accent); margin-top: 5px; display: none; }
.ed .field-err.on { display: block; }
.ed .phone-box { display: flex; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: var(--t-fast); }
.ed .phone-box:focus-within { border-color: var(--ink); background: var(--paper); }
.ed .phone-box.err { border-color: var(--accent); }
.ed .phone-pfx { padding: 12px 12px; font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-2); border-right: 1px solid var(--line); background: var(--paper-3); white-space: nowrap; }
.ed .phone-box input { border: none; background: transparent; border-radius: 0; }
.ed .phone-box input:focus { background: transparent; border: none; }
.ed .service-label { display: block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin: 8px 0 10px; }
.ed .service-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ed .svc-chip { padding: 8px 14px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; color: var(--ink-2); cursor: pointer; transition: var(--t-fast); user-select: none; }
.ed .svc-chip:hover { border-color: var(--line-3); color: var(--ink); }
.ed .svc-chip.sel { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ed .form-submit { width: 100%; padding: 14px 20px; background: var(--ink); color: var(--paper); border-radius: 999px; font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--t); margin-top: 8px; }
.ed .form-submit:hover { background: var(--accent); }
.ed .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ed .form-note { text-align: center; margin-top: 14px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-4); letter-spacing: 0.02em; }
.ed .form-success { display: none; text-align: center; padding: 40px 24px; }
.ed .form-success.show { display: block; }
.ed .form-success-mark { width: 56px; height: 56px; border-radius: 50%; background: var(--positive-soft); border: 1px solid var(--positive); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--positive); margin-bottom: 18px; }
.ed .form-success h4 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 10px; }
.ed .form-success p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; margin-bottom: 0; }

/* FOOTER */
.ed-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 80px 0 32px; }
.ed-footer .ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.ed-footer .ft-brand p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; margin: 18px 0 24px; max-width: 40ch; }
.ed-footer .logo { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.ed-footer .logo em { font-style: italic; color: var(--accent); }
.ed-footer .logo-mark { display: inline-flex; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-right: 10px; position: relative; top: -3px; }
.ed-footer .ft-social { display: flex; gap: 8px; }
.ed-footer .ft-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--ink-2); transition: var(--t-fast); }
.ed-footer .ft-social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ed-footer .ft-col h5 { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.ed-footer .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.ed-footer .ft-col a { font-size: 0.92rem; color: var(--ink-2); transition: var(--t-fast); }
.ed-footer .ft-col a:hover { color: var(--accent); }

/* FOOTER OFFICES (dynamic) */
.ed-footer .ft-offices { padding: 36px 0; border-top: 1px solid var(--line); margin-bottom: 32px; }
.ed-footer .ft-offices-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.ed-footer .ft-offices-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.ed-footer .ft-office h6 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 6px; }
.ed-footer .ft-office p { font-size: 0.82rem; color: var(--ink-3); line-height: 1.5; margin: 0 0 6px; }
.ed-footer .ft-office a { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-2); }

.ed-footer .ft-bottom { padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-3); letter-spacing: 0.02em; }
.ed-footer .ft-bottom p { margin: 0; }
.ed-footer .ft-links a { color: var(--ink-3); }
.ed-footer .ft-links a:hover { color: var(--accent); }
.ed-footer .ft-links span { opacity: 0.4; margin: 0 6px; }
.ed-footer .ft-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.ed-footer .ftb { padding: 5px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 0.7rem; color: var(--ink-3); letter-spacing: 0.02em; }

/* FLOATING */
.ed .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 990; }
.ed .wa-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 12px 32px -8px rgba(18,140,126,0.4), 0 0 0 1px rgba(18,140,126,0.08); transition: var(--t); }
.ed .wa-btn:hover { transform: translateY(-2px) scale(1.04); }
.ed .btt { position: fixed; bottom: 28px; left: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--paper); display: none; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 990; transition: var(--t); border: 1px solid var(--ink); }
.ed .btt.show { display: flex; }
.ed .btt:hover { background: var(--accent); border-color: var(--accent); }
.ed .mob-sticky { display: none; }

/* REVEAL */
.ed .r { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.ed .r.v { opacity: 1; transform: translateY(0); }
.ed .r.d1 { transition-delay: 0.08s; } .ed .r.d2 { transition-delay: 0.16s; } .ed .r.d3 { transition-delay: 0.24s; }
.ed .r.d4 { transition-delay: 0.32s; } .ed .r.d5 { transition-delay: 0.4s; } .ed .r.d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .ed .r { opacity: 1; transform: none; transition: none; }
  .ed *, .ed *::before, .ed *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ed .hero-meta-dot { animation: none; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ed-header .nav-links { display: none; }
  .ed-header .hamburger { display: flex; }
  .ed-header .nav-right .btn:not(.btn-primary) { display: none; }
  .ed section { padding: 90px 0; }
  .ed .hero { padding: 60px 0 100px; }
  .ed .hero-body { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .ed .split, .ed .ads-split, .ed .contact-split, .ed .svc-head, .ed .port-head { grid-template-columns: 1fr !important; gap: 40px !important; }
  .ed .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ed .svc-grid, .ed .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
  .ed .price-grid { grid-template-columns: 1fr; }
  .ed .process-grid { grid-template-columns: repeat(2, 1fr); border-top: none; }
  .ed .proc { border-right: none; border-top: 1px solid var(--line-2); padding: 28px 0; }
  .ed .testi-grid { grid-template-columns: 1fr; }
  .ed .port-grid { grid-template-columns: 1fr; }
  .ed .port { grid-template-columns: 60px 1fr auto; padding: 32px 24px; }
  .ed-footer .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ed-footer .ft-offices-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ed .hero-flourish { display: none; }
}
@media (max-width: 640px) {
  .ed .wrap, .ed .section-narrow { padding: 0 20px; }
  .ed-header nav.nav-bar { padding: 0 20px; }
  .ed section { padding: 72px 0; }
  .ed .hero { padding: 48px 0 80px; }
  .ed .hero-headline { font-size: clamp(2.6rem, 11vw, 4.4rem); }
  .ed .hero-lead { font-size: 1.02rem; }
  .ed .display { font-size: clamp(2.2rem, 11vw, 4rem); }
  .ed .title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .ed .stats-grid, .ed .svc-grid, .ed .manifesto-grid { grid-template-columns: 1fr; }
  .ed .process-grid { grid-template-columns: 1fr; }
  .ed .port { grid-template-columns: 1fr; gap: 14px; padding: 28px 22px; }
  .ed .port-num { padding-top: 0; }
  .ed .port-arrow { display: none; }
  .ed .compare-table { font-size: 0.82rem; }
  .ed .compare-table th, .ed .compare-table td { padding: 14px 14px; }
  .ed-footer .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .ed-footer .ft-offices-grid { grid-template-columns: 1fr; }
  .ed .form-row { grid-template-columns: 1fr; }
  .ed .maint { flex-direction: column; align-items: flex-start; }
  .ed .ads-numbers { grid-template-columns: 1fr; }
  body.ed { padding-bottom: 64px; }
  .ed .mob-sticky { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 988; background: var(--paper); border-top: 1px solid var(--line); padding: 10px 14px; gap: 8px; }
  .ed .mob-sticky a { flex: 1; padding: 12px 16px; border-radius: 999px; font-size: 0.88rem; font-weight: 500; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .ed .ms-call { background: var(--ink); color: var(--paper); }
  .ed .ms-wa { background: var(--whatsapp); color: #fff; }
  .ed .wa-float { display: none; }
  .ed .btt { bottom: 80px; }
}