/* Duplica WIP redesign — shared design system */
:root {
  --duplica-green: #355E3B;
  --duplica-green-dark: #1a2f1f;
  --duplica-orange: #D16F4B;
  --duplica-cream: #F8E7D1;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --line: rgba(26, 47, 31, 0.12);
  --line-cream: rgba(248, 231, 209, 0.2);
  --radius-sm: 4px;   /* controls: buttons, toggle */
  --radius-md: 8px;   /* cards, inputs, panels */
  --section-pad: 112px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-white); color: var(--text-dark); font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.mono-label { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

/* WIP banner */
.wip-banner { background: var(--duplica-orange); color: #fff; text-align: center; font-size: 0.78rem; letter-spacing: 0.06em; padding: 7px 16px; font-weight: 500; position: relative; z-index: 200; }

/* NAV */
#site-nav { position: sticky; top: 0; z-index: 100; }
nav { padding: 14px 48px; display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.navbar-brand-logo { height: 30px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--duplica-orange); }
.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; font-size: 0.75rem; font-weight: 500; }
.lang-toggle button { border: none; background: transparent; padding: 6px 10px; cursor: pointer; color: var(--text-muted); font-family: 'Poppins', sans-serif; letter-spacing: 0.04em; transition: all 0.2s; }
.lang-toggle button.active { background: var(--duplica-green); color: #fff; }
.nav-cta { background: var(--duplica-green); color: var(--bg-white); padding: 11px 22px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.nav-cta:hover { background: var(--duplica-green-dark); }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--duplica-green); transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; flex-direction: column; padding: 12px 24px 20px; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-menu a { color: var(--text-dark); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.mobile-menu a.nav-cta { color: #fff; text-align: center; border: none; margin-top: 12px; border-radius: var(--radius-sm); padding: 13px; }
@media (max-width: 980px) { .nav-links { display: none; } nav { padding: 12px 24px; position: static; } .nav-burger { display: flex; } .nav-right > .nav-cta { display: none; } }

/* HERO */
.hero { padding: 110px 0 100px; background: var(--bg-white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 60px; right: -180px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(53, 94, 59, 0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; position: relative; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-eyebrow { margin-bottom: 32px; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--duplica-orange); }
h1.hero-title { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.02; letter-spacing: -0.03em; color: var(--duplica-green); margin-bottom: 32px; }
h1.hero-title em { font-style: italic; font-weight: 400; color: var(--duplica-orange); }
.hero-sub { font-size: 1.12rem; color: var(--text-muted); max-width: 520px; margin-bottom: 40px; line-height: 1.65; }
.hero-sub strong { color: var(--text-dark); font-weight: 500; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--duplica-green); color: var(--bg-white); padding: 16px 26px; text-decoration: none; font-size: 0.96rem; font-weight: 500; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-primary:hover { background: var(--duplica-green-dark); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; color: var(--duplica-green); padding: 16px 8px; text-decoration: none; font-size: 0.96rem; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.btn-secondary:hover { border-color: var(--duplica-orange); color: var(--duplica-orange); }
.hero-meta { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 40px; color: var(--text-muted); font-size: 0.85rem; flex-wrap: wrap; }
.hero-meta strong { color: var(--text-dark); font-weight: 500; }

.transform-panel { background: var(--duplica-cream); padding: 36px; border-radius: var(--radius-md); position: relative; }
.transform-panel::before { content: attr(data-tag); position: absolute; top: -10px; left: 24px; background: var(--bg-white); padding: 0 12px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.7rem; color: var(--duplica-orange); letter-spacing: 0.18em; }
.transform-header { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.15rem; color: var(--duplica-green-dark); margin-bottom: 24px; line-height: 1.35; }
.transform-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px dashed rgba(53, 94, 59, 0.25); font-size: 0.9rem; }
.transform-row:first-of-type { border-top: 1px solid var(--duplica-green); }
.transform-row .before { color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(209, 111, 75, 0.6); }
.transform-row .arrow-mid { color: var(--duplica-orange); font-weight: 600; font-size: 1.05rem; }
.transform-row .after { color: var(--duplica-green-dark); font-weight: 500; }
.transform-foot { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(53, 94, 59, 0.2); font-size: 0.82rem; color: var(--duplica-green-dark); display: flex; justify-content: space-between; gap: 12px; font-weight: 500; }
.transform-foot .industry { color: var(--text-muted); font-weight: 400; }

/* LOGOS STRIP — beige logos inverted to white on a green band */
.logos { padding: 56px 0 48px; background: var(--duplica-green); overflow: hidden; }
.logos-track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.logos-track { display: flex; gap: 60px; align-items: center; width: max-content; animation: marquee 55s linear infinite; }
.logos-track img { height: 44px; width: auto; opacity: 0.9; filter: brightness(0) invert(1); }
@keyframes marquee { to { transform: translateX(-50%); } }
.logos-trust { text-align: center; color: var(--duplica-cream); font-size: 0.95rem; margin-top: 34px; padding: 0 24px; opacity: 0.85; }
/* Signature green-to-beige gradient seam (sacred element) */
.brand-seam { height: 96px; background: linear-gradient(180deg, var(--duplica-green) 0%, var(--duplica-cream) 100%); }

/* SECTION: Qué construimos */
.types { padding: var(--section-pad) 0; background: var(--bg-white); border-bottom: 1px solid var(--line); }
.types-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.types-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.8rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--duplica-green); margin: 20px 0 16px; }
.types-head h2 em { font-style: italic; color: var(--duplica-orange); font-weight: 400; }
.types-head p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .types-grid { grid-template-columns: 1fr; } }
.type-card { background: var(--bg-light); padding: 36px 28px; border-radius: var(--radius-md); border: 1px solid var(--line); transition: all 0.3s ease; }
.type-card:hover { transform: translateY(-4px); border-color: var(--duplica-green); box-shadow: 0 16px 40px rgba(53, 94, 59, 0.08); }
.type-card .icon { width: 44px; height: 44px; background: var(--duplica-cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--duplica-green); font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 500; }
.type-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.22rem; color: var(--duplica-green); margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.2; }
.type-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }

/* ¿RECONOCES ESTO? — possibility-framed recognition */
.recognize { padding: var(--section-pad) 0; background: var(--bg-light); border-bottom: 1px solid var(--line); }
.recognize-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
@media (max-width: 600px) { .recognize-grid { grid-template-columns: 1fr; } }
.recognize-item { background: var(--bg-white); border: 1px solid var(--line); border-left: 3px solid var(--duplica-orange); border-radius: var(--radius-md); padding: 22px 26px; font-size: 0.98rem; line-height: 1.5; color: var(--text-dark); }
.recognize-bridge { text-align: center; max-width: 660px; margin: 44px auto 0; font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.2rem; font-style: italic; color: var(--duplica-green); line-height: 1.45; }

/* SECTION: value cards (Cuatro Tipos) */
.why-hire { padding: var(--section-pad) 0; background: var(--bg-light); border-bottom: 1px solid var(--line); }
.why-head { margin-bottom: 70px; max-width: 820px; }
.why-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.025em; color: var(--duplica-green); margin: 24px 0; }
.why-head h2 em { font-style: italic; color: var(--duplica-orange); font-weight: 400; }
.why-head p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.6; max-width: 660px; }
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px) { .reasons-grid { grid-template-columns: 1fr; gap: 20px; } }
.reason-card { padding: 38px 34px; background: var(--bg-white); border-radius: var(--radius-md); border-left: 3px solid var(--duplica-orange); transition: all 0.3s; }
.reason-card:hover { background: var(--duplica-cream); }
.reason-card .num { font-family: 'Fraunces', serif; font-weight: 300; font-size: 2.2rem; color: var(--duplica-orange); margin-bottom: 10px; letter-spacing: -0.03em; }
.reason-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.35rem; color: var(--duplica-green-dark); margin-bottom: 12px; letter-spacing: -0.015em; line-height: 1.2; }
.reason-card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; }
.reason-card p strong { color: var(--text-dark); font-weight: 500; }

/* SECTION: argument */
.argument { padding: var(--section-pad) 0; background: var(--duplica-green); color: var(--bg-white); position: relative; overflow: hidden; }
.argument::before { content: ''; position: absolute; bottom: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(248, 231, 209, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.argument .container { position: relative; }
.argument .mono-label { color: rgba(248, 231, 209, 0.6); }
.argument h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.025em; color: var(--bg-white); margin: 24px 0 20px; max-width: 880px; }
.argument h2 em { color: var(--duplica-orange); font-style: italic; font-weight: 400; }
.argument .lede { color: rgba(248,231,209,0.82); max-width: 660px; font-size: 1.05rem; margin-bottom: 60px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .compare { grid-template-columns: 1fr; } }
.compare-col { padding: 44px 36px; border-radius: var(--radius-md); border: 1px solid var(--line-cream); }
.compare-col.bad { background: rgba(209, 111, 75, 0.16); border-color: rgba(209, 111, 75, 0.5); }
.compare-col.good { background: var(--duplica-green-dark); border-color: rgba(248, 231, 209, 0.28); }
.compare-col .tag { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.15em; padding: 6px 12px; margin-bottom: 24px; text-transform: uppercase; border-radius: 3px; }
.compare-col.bad .tag { background: rgba(209, 111, 75, 0.55); color: #fff; }
.compare-col.good .tag { background: rgba(248, 231, 209, 0.15); color: var(--duplica-cream); }
.compare-col h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.5rem; line-height: 1.2; margin-bottom: 18px; color: var(--bg-white); }
.compare-col > p { color: rgba(248, 231, 209, 0.8); line-height: 1.6; font-size: 0.98rem; margin-bottom: 8px; }
.compare-col ul { list-style: none; margin-top: 22px; }
.compare-col li { padding: 11px 0; border-top: 1px dashed rgba(248, 231, 209, 0.18); font-size: 0.92rem; color: rgba(248, 231, 209, 0.85); display: flex; gap: 12px; line-height: 1.5; }
.compare-col li::before { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; flex-shrink: 0; padding-top: 1px; }
.compare-col.bad li::before { content: '–'; color: var(--duplica-orange); }
.compare-col.good li::before { content: '+'; color: var(--duplica-cream); }

/* VIDEO */
.video-section { padding: var(--section-pad) 0; background: var(--bg-white); border-bottom: 1px solid var(--line); text-align: center; }
.video-section .mono-label { display: block; margin-bottom: 20px; }
.video-tagline { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.1rem; color: var(--duplica-orange); margin-bottom: 6px; }
.video-headline { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--duplica-green); letter-spacing: -0.02em; max-width: 720px; margin: 0 auto 40px; line-height: 1.2; }
.video-frame { max-width: 820px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 24px 60px rgba(53,94,59,0.14); }
.wistia-facade { position: relative; cursor: pointer; aspect-ratio: 16/9; background: var(--duplica-green-dark); display: block; }
.wistia-facade-thumb { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s; }
.wistia-facade:hover .wistia-facade-thumb { transform: scale(1.03); }
.wistia-facade-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); color: var(--duplica-green); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; padding-left: 5px; }
.wistia-facade:hover .wistia-facade-play { background: #fff; transform: translate(-50%,-50%) scale(1.08); }
.video-stats { color: var(--text-muted); font-size: 0.95rem; margin-top: 30px; }

/* CASES */
.cases { padding: var(--section-pad) 0; background: var(--bg-light); border-bottom: 1px solid var(--line); }
.cases-head { margin-bottom: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
@media (max-width: 900px) { .cases-head { grid-template-columns: 1fr; gap: 24px; } }
.cases-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.025em; color: var(--duplica-green); margin-top: 20px; }
.cases-head h2 em { font-style: italic; color: var(--duplica-orange); }
.cases-head p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .industries { grid-template-columns: 1fr; } }
.industry-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); transition: all 0.3s ease; display: flex; flex-direction: column; }
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(53, 94, 59, 0.1); }
.industry-header { padding: 28px 26px 18px; background: var(--duplica-cream); border-bottom: 1px solid var(--line); }
.industry-header .label { font-family: 'Poppins', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; color: var(--duplica-orange); text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
.industry-header h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.32rem; color: var(--duplica-green-dark); letter-spacing: -0.015em; line-height: 1.15; }
.industry-body { padding: 24px 26px; flex: 1; }
.mini-case { padding: 16px 0; border-top: 1px dashed var(--line); }
.mini-case:first-child { border-top: none; padding-top: 2px; }
.mini-case .client { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.74rem; letter-spacing: 0.12em; color: var(--duplica-green); text-transform: uppercase; margin-bottom: 6px; }
.mini-case .what { font-family: 'Fraunces', serif; font-size: 0.98rem; color: var(--text-dark); line-height: 1.4; margin-bottom: 8px; }
.mini-case .result { font-size: 0.84rem; color: var(--duplica-orange); font-weight: 500; }
.industry-footer { padding: 16px 26px; border-top: 1px solid var(--line); text-align: center; }
.industry-footer a { color: var(--duplica-green); text-decoration: none; font-size: 0.86rem; font-weight: 500; transition: color 0.2s; }
.industry-footer a:hover { color: var(--duplica-orange); }

/* TESTIMONIALS */
.testimonials { padding: var(--section-pad) 0; background: var(--bg-white); border-bottom: 1px solid var(--line); }
.tmonials-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.tmonials-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.6rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--duplica-green); margin-top: 18px; }
.tmonials-head h2 em { font-style: italic; color: var(--duplica-orange); font-weight: 400; }
.tmonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .tmonials-grid { grid-template-columns: 1fr; } }
.tcard { background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px 30px; display: flex; flex-direction: column; }
.tcard .tmark { font-family: 'Fraunces', serif; font-size: 3.2rem; line-height: 0.7; color: var(--duplica-orange); margin-bottom: 10px; }
.tcard blockquote { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.06rem; line-height: 1.5; color: var(--text-dark); margin-bottom: 22px; flex: 1; }
.tcard figcaption { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 16px; }
.tcard .tname { font-weight: 600; color: var(--duplica-green); font-size: 0.95rem; }
.tcard .trole { color: var(--text-muted); font-size: 0.83rem; }
.tmonials-foot { text-align: center; margin-top: 40px; }
.tmonials-foot a { color: var(--duplica-green); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.tmonials-foot a:hover { color: var(--duplica-orange); }

/* HOW WE WORK (steps) */
.how { padding: var(--section-pad) 0; background: var(--bg-white); border-bottom: 1px solid var(--line); }
.how-head { margin-bottom: 56px; max-width: 720px; }
.how-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.6rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--duplica-green); margin: 16px 0; }
.how-head h2 em { font-style: italic; color: var(--duplica-orange); }
.how-head p { color: var(--text-muted); font-size: 1.02rem; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px; background: linear-gradient(to right, var(--duplica-green) 0%, var(--duplica-orange) 100%); opacity: 0.3; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 28px; } .steps::before { display: none; } }
.step { text-align: center; padding: 0 12px; position: relative; }
.step .step-num { width: 44px; height: 44px; background: var(--bg-white); border: 1px solid var(--duplica-green); color: var(--duplica-green); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.1rem; margin-bottom: 18px; position: relative; z-index: 1; }
.step h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.02rem; color: var(--duplica-green-dark); margin-bottom: 10px; line-height: 1.2; }
.step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

/* HOW WE QUOTE (pay cards) */
.quote-sec { padding: var(--section-pad) 0; background: var(--bg-light); border-bottom: 1px solid var(--line); }
.quote-head { max-width: 760px; margin-bottom: 52px; }
.quote-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.6rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--duplica-green); margin: 16px 0; }
.quote-head h2 em { font-style: italic; color: var(--duplica-orange); }
.quote-head p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }
.quote-head p strong { color: var(--text-dark); font-weight: 500; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
@media (max-width: 768px) { .pay-grid { grid-template-columns: 1fr; } }
.pay-card { border: 1px solid var(--line); background: var(--bg-white); border-radius: var(--radius-md); padding: 34px 30px; transition: all 0.3s; }
.pay-card.featured { border-color: var(--duplica-green); box-shadow: 0 16px 40px rgba(53,94,59,0.08); position: relative; }
.pay-card .badge { position: absolute; top: -11px; left: 30px; background: var(--duplica-orange); color: #fff; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
.pay-card:hover { border-color: var(--duplica-green); box-shadow: 0 16px 40px rgba(53,94,59,0.07); }
.pay-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.35rem; color: var(--duplica-green-dark); margin-bottom: 6px; letter-spacing: -0.01em; }
.pay-card .tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.pay-card .range { color: var(--duplica-orange); font-weight: 500; font-size: 0.95rem; margin-bottom: 14px; }
.pay-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.pay-card ul { list-style: none; margin: 16px 0 0; }
.pay-card li { padding: 8px 0; font-size: 0.9rem; color: var(--text-dark); display: flex; gap: 10px; border-top: 1px dashed var(--line); }
.pay-card li:first-child { border-top: none; }
.pay-card li::before { content: '✓'; color: var(--duplica-green); flex-shrink: 0; }
.design-note { background: var(--duplica-cream); border-radius: var(--radius-md); padding: 32px 34px; }
.design-note h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.2rem; color: var(--duplica-green-dark); margin-bottom: 10px; }
.design-note p { color: var(--duplica-green-dark); font-size: 0.95rem; line-height: 1.65; opacity: 0.92; }

/* FOR WHOM */
.for-whom { padding: var(--section-pad) 0; background: var(--duplica-green-dark); color: var(--duplica-cream); }
.for-whom-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .for-whom-grid { grid-template-columns: 1fr; gap: 40px; } }
.for-whom .mono-label { color: rgba(248, 231, 209, 0.55); }
.for-whom h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.6rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--bg-white); margin: 20px 0 0; }
.for-whom h2 em { color: var(--duplica-orange); font-style: italic; font-weight: 400; }
.who-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 600px) { .who-lists { grid-template-columns: 1fr; } }
.who-list h4 { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--duplica-orange); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(248, 231, 209, 0.15); }
.who-list ul { list-style: none; }
.who-list li { padding: 12px 0; font-size: 0.96rem; color: rgba(248, 231, 209, 0.88); display: flex; gap: 12px; line-height: 1.45; }
.who-list li::before { font-family: 'Poppins', sans-serif; font-weight: 500; flex-shrink: 0; }
.who-list.yes li::before { content: '→'; color: var(--duplica-orange); }
.who-list.no li::before { content: '—'; color: rgba(248, 231, 209, 0.3); }
.who-list.no li { color: rgba(248, 231, 209, 0.5); }

/* PAGE HEADER (sub-pages) */
.page-header { padding: 96px 0 56px; background: var(--bg-white); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 40px; right: -160px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(53,94,59,0.06) 0%, transparent 70%); border-radius: 50%; }
.page-header .eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.page-header .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--duplica-orange); }
.page-header h1 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--duplica-green); margin-bottom: 24px; max-width: 820px; }
.page-header h1 em { font-style: italic; font-weight: 400; color: var(--duplica-orange); }
.page-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; line-height: 1.65; }

/* GENERIC SECTION HEADER */
.sec { padding: var(--section-pad) 0; border-bottom: 1px solid var(--line); }
.sec.light { background: var(--bg-light); }
.sec.white { background: var(--bg-white); }
.sec.green { background: var(--duplica-green); color: #fff; }
.sec.dark { background: var(--duplica-green-dark); color: var(--duplica-cream); }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.8rem); line-height: 1.12; letter-spacing: -0.025em; color: var(--duplica-green); margin: 18px 0 16px; }
.sec.green .sec-head h2, .sec.dark .sec-head h2 { color: #fff; }
.sec-head h2 em { font-style: italic; color: var(--duplica-orange); font-weight: 400; }
.sec-head p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.sec.green .sec-head p, .sec.dark .sec-head p { color: rgba(248,231,209,0.82); }
.sec.green .mono-label, .sec.dark .mono-label { color: rgba(248,231,209,0.6); }

/* PROYECTOS page */
.case-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.case-nav a { padding: 9px 16px; border-radius: 999px; background: var(--bg-white); border: 1px solid var(--line); color: var(--duplica-green); text-decoration: none; font-size: 0.84rem; font-weight: 500; transition: all 0.2s; }
.case-nav a:hover { border-color: var(--duplica-green); color: var(--duplica-orange); }
.featured-case { padding: var(--section-pad) 0; background: var(--bg-light); border-bottom: 1px solid var(--line); }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; gap: 36px; } }
.featured-grid img { width: 100%; border-radius: var(--radius-md); box-shadow: 0 24px 60px rgba(53,94,59,0.14); display: block; }
.featured-text h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.6rem); color: var(--duplica-green); letter-spacing: -0.02em; line-height: 1.12; margin: 14px 0 18px; }
.featured-text h2 em { font-style: italic; color: var(--duplica-orange); font-weight: 400; }
.featured-text p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.65; margin-bottom: 22px; }
.featured-metric { display: inline-block; background: var(--duplica-cream); color: var(--duplica-green-dark); font-weight: 600; font-size: 0.9rem; padding: 9px 18px; border-radius: 999px; margin-right: 16px; }
.featured-link { color: var(--duplica-green); text-decoration: none; font-weight: 500; font-size: 0.92rem; white-space: nowrap; }
.featured-link:hover { color: var(--duplica-orange); }
.featured-quote { max-width: 760px; margin: 52px auto 0; text-align: center; }
.featured-quote blockquote { font-family: 'Fraunces', serif; font-weight: 400; font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--duplica-green-dark); margin-bottom: 16px; }
.featured-quote .who { font-size: 0.9rem; color: var(--text-muted); }
.featured-quote .who strong { color: var(--duplica-green); font-weight: 600; }
.ind-block { scroll-margin-top: 90px; }
.ind-block-head { margin-bottom: 36px; }
.ind-block-head h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -0.02em; color: var(--duplica-green); margin: 10px 0 0; }
.case-thumb { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; background: var(--duplica-green); }
/* fallback when a project has no contextual photo yet: branded metric tile (same 1:1 footprint) */
.case-tile { width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 28px 26px; background: var(--duplica-green); position: relative; overflow: hidden; }
.case-tile::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(248,231,209,0.10) 0%, transparent 70%); border-radius: 50%; }
.case-tile-metric { position: relative; font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.12; letter-spacing: -0.02em; color: #fff; }
.case-what { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--text-dark); line-height: 1.45; margin-bottom: 14px; }
.case-result { font-size: 0.85rem; color: var(--duplica-orange); font-weight: 600; }
.types-grid.caps { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .types-grid.caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .types-grid.caps { grid-template-columns: 1fr; } }
.tmonials-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 840px; margin: 0 auto; }
@media (max-width: 900px) { .tmonials-grid.two { grid-template-columns: 1fr; } }

/* CONTACT page */
.contact-wrap { padding: 0 0 var(--section-pad); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.4rem; color: var(--duplica-green-dark); margin-bottom: 16px; line-height: 1.2; }
.contact-aside .lead { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 28px; }
.contact-aside .gift { background: var(--duplica-cream); border-radius: var(--radius-md); padding: 28px 26px; }
.contact-aside .gift h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.08rem; color: var(--duplica-green-dark); margin-bottom: 14px; }
.contact-aside .gift ul { list-style: none; }
.contact-aside .gift li { padding: 9px 0; font-size: 0.92rem; color: var(--duplica-green-dark); display: flex; gap: 10px; line-height: 1.45; border-top: 1px dashed rgba(53,94,59,0.2); }
.contact-aside .gift li:first-child { border-top: none; }
.contact-aside .gift li::before { content: '→'; color: var(--duplica-orange); flex-shrink: 0; }
.contact-aside .direct { margin-top: 26px; font-size: 0.92rem; color: var(--text-muted); }
.contact-aside .direct a { color: var(--duplica-green); text-decoration: none; font-weight: 500; }
.contact-aside .direct a:hover { color: var(--duplica-orange); }
.form-card { background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 40px 36px; }
@media (max-width: 600px) { .form-card { padding: 28px 22px; } }
.form-divider { font-family: 'Fraunces', serif; font-weight: 500; color: var(--duplica-green-dark); margin: 30px 0 16px; padding-top: 22px; border-top: 1px solid var(--line); }

/* CTA + FORM */
.cta { padding: 110px 0 60px; background: var(--bg-white); text-align: center; }
.cta h2 { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--duplica-green); max-width: 880px; margin: 24px auto 32px; }
.cta h2 em { font-style: italic; color: var(--duplica-orange); font-weight: 400; }
.cta > .container > p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 12px; line-height: 1.6; }
.cta-meta { margin-top: 20px; color: var(--text-muted); font-size: 0.88rem; }
.form-wrapper { padding: 0 0 100px; background: var(--bg-white); }
.form-container { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.form-group { margin-bottom: 26px; }
.form-group h5 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.04rem; color: var(--duplica-green-dark); margin-bottom: 13px; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"] { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-md); font-family: 'Poppins', sans-serif; font-size: 0.96rem; color: var(--text-dark); background: #fff; transition: border-color 0.2s, background 0.2s; }
.form-group input:focus { outline: none; border-color: var(--duplica-green); }
.radio-group { display: grid; gap: 10px; }
.radio-label { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-md); cursor: pointer; font-size: 0.93rem; color: var(--text-dark); transition: all 0.2s; background: #fff; }
.radio-label:hover { border-color: var(--duplica-green); }
.radio-label input { accent-color: var(--duplica-green); width: 16px; height: 16px; }
.checkbox-label { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.checkbox-label a { color: var(--duplica-green); }
.submit-btn { width: 100%; background: var(--duplica-green); color: #fff; border: none; padding: 17px; border-radius: var(--radius-md); font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.submit-btn:hover { background: var(--duplica-green-dark); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* FOOTER */
footer { background: var(--duplica-green-dark); color: var(--duplica-cream); padding: 80px 0 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(248, 231, 209, 0.15); margin-bottom: 32px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-logo { height: 32px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(248, 231, 209, 0.7); font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.footer-col h5 { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--duplica-orange); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(248, 231, 209, 0.75); text-decoration: none; font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--duplica-cream); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(248, 231, 209, 0.4); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-legal { margin-top: 14px; font-size: 0.78rem; color: rgba(248,231,209,0.35); }

/* entrance no-op (kept for class compatibility) */
.fade-in, .d1, .d2, .d3, .d4, .d5 { opacity: 1; transform: none; }

/* ── Mobile responsiveness — tighten the vertical rhythm to match prod ── */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .hero { padding: 44px 0 52px; }
  .hero::before { display: none; }
  .page-header { padding: 44px 0 32px; }
  .page-header::before { display: none; }
  .argument::before { display: none; }
  .cta { padding: 56px 0 44px; }
  .cta h2 { margin: 18px auto 24px; }
  .logos { padding: 36px 0 32px; }
  .logos-trust { margin-top: 26px; }
  footer { padding: 52px 0 28px; }
  .brand-seam { height: 60px; }
  .why-head, .cases-head, .how-head, .quote-head, .types-head, .tmonials-head, .sec-head { margin-bottom: 40px; }
  .hero-meta { gap: 12px 26px; margin-top: 36px; padding-top: 22px; }
  .argument .lede { margin-bottom: 36px; }
  .compare-col { padding: 32px 26px; }
  .for-whom-grid { gap: 32px; }
  .design-note { padding: 26px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1.hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
}
