/* ── TASZE shared styles for industry & blog pages ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #fafaf8;
  --surface:    #f0efe9;
  --black:      #0a0a0a;
  --gray:       #888480;
  --gray-light: #c8c4bc;
  --border:     1px solid #0a0a0a;
  --border-in:  0.5px solid #c8c4bc;
  --head:       'Playfair Display', serif;
  --body:       'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--black);
  font-family: var(--body); -webkit-font-smoothing: antialiased;
  line-height: 1.5; overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100; height: 60px;
  background: rgba(250,250,248,0.85); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-bottom: var(--border);
  display: flex; align-items: center; padding: 0 40px;
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--head); font-size: 19px; font-weight: 800; letter-spacing: 0.04em; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { font-size: 13px; background: var(--black); color: var(--bg) !important; padding: 8px 16px; border-radius: 6px; }
.nav-cta:hover { opacity: .82; }
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links .nav-hide { display: none; }
}

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb { max-width: 1100px; margin: 0 auto; padding: 24px 40px 0; font-size: 12px; color: var(--gray); }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--black); }

/* ── PAGE HERO ───────────────────────────────── */
.page-hero { max-width: 900px; margin: 0 auto; padding: 64px 40px 48px; text-align: center; }
.page-tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray); border: var(--border-in); border-radius: 20px; padding: 6px 14px; margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--head); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(32px, 5.5vw, 56px); line-height: 1.05; margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; }
.page-hero p { font-size: clamp(15px, 2vw, 18px); color: var(--gray); max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }
.btn-primary {
  display: inline-block; background: var(--black); color: var(--bg); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em; padding: 14px 28px; border-radius: 7px;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .82; }

/* ── SECTION ─────────────────────────────────── */
.section { max-width: 1100px; margin: 0 auto; padding: 56px 40px; }
.section-title { font-family: var(--head); font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 14px; }
.section-lead { font-size: 15px; color: var(--gray); max-width: 620px; line-height: 1.7; margin-bottom: 40px; }

/* ── BENEFIT GRID ────────────────────────────── */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { border: var(--border-in); border-radius: 10px; padding: 28px 26px; }
.benefit-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--black); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 1.6; }
.benefit-card h3 { font-family: var(--head); font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.benefit-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; }
@media (max-width: 768px) { .benefit-grid { grid-template-columns: 1fr; gap: 12px; } }

/* ── CASE STUDY ──────────────────────────────── */
.case { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; background: var(--surface); border-radius: 14px; padding: 40px; }
.case-media { border-radius: 10px; overflow: hidden; border: var(--border-in); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.case-media img { width: 100%; height: auto; display: block; }
.case-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.case h3 { font-family: var(--head); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.case p { font-size: 14.5px; color: var(--gray); line-height: 1.7; margin-bottom: 22px; }
.case-link { font-size: 14px; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--black); padding-bottom: 2px; }
@media (max-width: 768px) { .case { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }

/* ── CTA BAND ────────────────────────────────── */
.cta-band { background: var(--black); padding: 72px 40px; text-align: center; }
.cta-band h2 { font-family: var(--head); font-size: clamp(26px, 3.8vw, 38px); font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 14px; }
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 32px; line-height: 1.65; }
.cta-band .btn-light { display: inline-block; background: #fff; color: var(--black); text-decoration: none; font-size: 14px; font-weight: 600; padding: 14px 30px; border-radius: 7px; transition: opacity .2s; }
.cta-band .btn-light:hover { opacity: .85; }

/* ── ARTICLE (blog) ──────────────────────────── */
.article { max-width: 720px; margin: 0 auto; padding: 56px 24px; }
.article-meta { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.article h1 { font-family: var(--head); font-size: clamp(30px, 5vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 28px; }
.article-lead { font-size: 19px; color: #3a3a38; line-height: 1.6; margin-bottom: 32px; }
.article h2 { font-family: var(--head); font-size: 26px; font-weight: 700; margin: 40px 0 14px; letter-spacing: -0.01em; }
.article p { font-size: 16.5px; line-height: 1.75; color: #2a2a28; margin-bottom: 20px; }
.article ul { margin: 0 0 20px 22px; }
.article li { font-size: 16.5px; line-height: 1.7; color: #2a2a28; margin-bottom: 8px; }
.article strong { font-weight: 600; color: var(--black); }
.article-cta { background: var(--surface); border-radius: 12px; padding: 32px; text-align: center; margin-top: 44px; }
.article-cta h3 { font-family: var(--head); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.article-cta p { font-size: 14px; color: var(--gray); margin-bottom: 22px; }

/* ── BLOG INDEX ──────────────────────────────── */
.post-list { display: flex; flex-direction: column; gap: 4px; max-width: 760px; margin: 0 auto; }
.post-row { display: block; text-decoration: none; padding: 28px 0; border-bottom: var(--border-in); transition: padding-left .2s; }
.post-row:hover { padding-left: 8px; }
.post-row .post-cat { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.post-row h2 { font-family: var(--head); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; margin: 8px 0 6px; }
.post-row p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--black); color: var(--bg); padding: 56px 40px 32px; margin-top: 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid #1e1e1e; }
.footer-logo { font-family: var(--head); font-size: 22px; font-weight: 800; letter-spacing: 0.04em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; max-width: 280px; line-height: 1.6; }
.footer-col-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color .15s; }
.footer-col-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-flag { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18); transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.26); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 768px) { .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; } }

/* ── PROCESS STEPS ───────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: var(--border-in); }
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--black);
  color: var(--bg); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-family: var(--head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--gray); line-height: 1.65; }
@media (max-width: 768px) { .process-step { flex-direction: column; gap: 12px; } }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: var(--border-in); }
.faq-item:first-child { border-top: var(--border-in); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font-family: var(--head); font-size: 17px; font-weight: 700;
  color: var(--black); letter-spacing: -0.01em; line-height: 1.3;
}
.faq-q svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gray); fill: none; stroke-width: 2; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { font-size: 15px; color: var(--gray); line-height: 1.7; padding-bottom: 20px; }

/* ── RELATED LINKS ───────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card {
  display: block; text-decoration: none; border: var(--border-in); border-radius: 10px;
  padding: 20px 18px; transition: border-color .2s, box-shadow .2s;
}
.related-card:hover { border-color: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.related-card .rc-tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; display: block; }
.related-card h3 { font-family: var(--head); font-size: 16px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

/* ── INCLUDES LIST ───────────────────────────── */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.inc-item { display: flex; align-items: flex-start; gap: 12px; padding: 18px; border: var(--border-in); border-radius: 8px; }
.inc-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--surface); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.inc-icon svg { width: 15px; height: 15px; stroke: var(--black); fill: none; stroke-width: 2; }
.inc-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.inc-item p { font-size: 12.5px; color: var(--gray); line-height: 1.55; }
@media (max-width: 768px) { .includes-grid { grid-template-columns: 1fr; } }

/* ── DIVIDER ─────────────────────────────────── */
.divider-line { border: none; border-top: var(--border-in); margin: 0; }

/* ── SECTION DARK ────────────────────────────── */
.section-dark { background: var(--black); padding: 56px 40px; }
.section-dark .section-title { color: #fff; }
.section-dark .section-lead { color: rgba(255,255,255,0.45); }
