/*
Theme Name: Content Writo
Theme URI: https://contentwrito.com
Author: Amit Kumar
Author URI: https://contentwrito.com/about/
Description: Custom theme for Content Writo, a content writing agency. Built from the hand-made static site, so the design is identical. Apple-inspired: white and near-black with a single blue accent, Inter throughout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: contentwrito
Tags: business, blog, one-column, custom-menu, featured-images, translation-ready
*/

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --surface:     #F6F7FA;
  --surface-2:   #FFFFFF;
  --navy:        #1E2A3B;
  --navy-2:      #16202E;
  --accent:      #2563EB;
  --accent-dim:  #1D4ED8;
  --accent-soft: #EAF1FF;
  --text:        #1E2A3B;
  --body:        #5B6472;
  --muted:       #7A8290;
  --border:      #E6E9EF;
  --shadow:      0 10px 30px rgba(30, 42, 59, 0.08);
  --shadow-lg:   0 24px 60px rgba(30, 42, 59, 0.14);
  --radius:      10px;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 6px 24px rgba(30, 42, 59, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
}
.nav-logo span { color: var(--accent); }
.nav-logo::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 3px;
  margin-top: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover { opacity: 0.55; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600 !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 0.875rem !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dim) !important; color: #fff !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.10) 0, rgba(37, 99, 235, 0) 34%),
    var(--bg);
  animation: heroFade 0.7s ease both;
}
.hero::before {
  /* dotted orange grid, top-right, like the reference */
  content: '';
  position: absolute;
  right: 6%;
  top: 44px;
  width: 150px;
  height: 110px;
  background-image: radial-gradient(var(--accent) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.45;
  pointer-events: none;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  /* hand-drawn underline stroke */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 50 2, 100 12, 198 5' fill='none' stroke='%232563EB' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0.85;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 15px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.32);
}
.btn-ghost {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.btn-ghost::after {
  content: '';
  width: 18px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 5h15M12 1l4 4-4 4' stroke='%232563EB' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s;
}
.btn-ghost:hover { opacity: 0.7; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* hero photo column */
.hero-media {
  position: relative;
  padding: 18px 18px 0 0;
}
.hero-media::before {
  /* offset orange frame behind the photo */
  content: '';
  position: absolute;
  inset: 0 0 18px 18px;
  border-radius: 14px;
  background: var(--accent);
  opacity: 0.12;
  transform: translate(14px, -14px);
}
.hero-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}
.hero-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; }
.hero-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.hero-card span { font-size: 0.75rem; color: var(--muted); }
.hero-blob {
  position: absolute;
  right: -30px;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.09;
  pointer-events: none;
}

/* ─── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  background: var(--bg);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.trust-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-left: auto;
}
.trust-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.trust-stat span {
  font-size: 0.78rem;
  color: var(--body);
  margin-top: 5px;
  display: block;
}

/* ─── SECTION HEADER ──────────────────────────────── */
.section-header {
  margin-bottom: 52px;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 580px;
}
.section-header p {
  margin-top: 14px;
  color: var(--body);
  max-width: 500px;
  font-size: 0.975rem;
}

/* ─── SERVICES ───────────────────────────────────── */
.services { padding: 96px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.service-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-item p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.7;
  flex: 1;
}
.service-price {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
/* one featured card, like the orange card in the reference */

/* ─── WHY US ──────────────────────────────────────── */
.why { padding: 96px 0; background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}
.why-left p {
  color: var(--body);
  font-size: 0.975rem;
  margin-bottom: 30px;
  max-width: 440px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-point {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.why-point:first-child { border-top: 1px solid var(--border); }
.why-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
}
.why-dot::after {
  /* check mark */
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.why-point h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.85rem;
  color: var(--body);
  margin: 0;
}
.why-media { position: relative; }
.why-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  margin-bottom: -70px;
  position: relative;
  z-index: 0;
}
.why-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,42,59,0) 55%, rgba(30,42,59,0.35) 100%);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.why-right {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  padding: 32px 32px 30px;
  box-shadow: var(--shadow-lg);
  margin: 0 24px 0 24px;
}
.why-card-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.why-card-stat {
  margin-bottom: 20px;
}
.why-card-stat strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.why-card-stat span {
  font-size: 0.85rem;
  color: var(--body);
  margin-top: 6px;
  display: block;
}
.why-divider { height: 1px; background: var(--border); margin: 4px 0 20px; }
.why-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industry-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.process { padding: 96px 0; background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
  position: relative;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.step-rule { flex: 1; height: 2px; background: var(--accent-soft); border-radius: 2px; }
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.7;
}

/* ─── INDUSTRIES (dark photo band) ───────────────── */
.industries {
  padding: 96px 0;
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(22, 32, 46, 0.90) 0%, rgba(22, 32, 46, 0.86) 100%),
    url('../images/team-discussion.jpg') center 35% / cover no-repeat;
}
.industries .section-header h2 { color: #fff; }
.industries .section-header p { color: rgba(255,255,255,0.72); }
.industries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.industry-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.industry-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(37, 99, 235, 0.7);
  transform: translateY(-4px);
}
.industry-item h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.industry-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ─── CTA STRIP (orange band) ────────────────────── */
.cta-strip {
  padding: 84px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #2563EB 0%, #3B82F6 100%);
  color: #fff;
}
.cta-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.cta-strip::after {
  content: '';
  position: absolute;
  left: 8%;
  bottom: -140px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 560px;
  line-height: 1.25;
  color: #fff;
}
.cta-inner h2 em {
  font-style: normal;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.6);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.cta-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.cta-strip .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.cta-strip .btn-primary:hover { background: #EEF4FF; }
.cta-strip .btn-ghost { color: #fff; }
.cta-strip .btn-ghost::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 5h15M12 1l4 4-4 4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─── FOOTER (dark navy) ─────────────────────────── */
footer {
  background: var(--navy-2);
  color: #fff;
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 16px; display: inline-flex; color: #fff; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 280px; }
.footer-col .footer-head {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { padding: 12px 12px 0 0; }
  .hero-card { left: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .industries-list { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-stats { margin-left: 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; box-shadow: 0 16px 32px rgba(30,42,59,0.10); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  nav { position: relative; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .industries-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .trust-stats { gap: 28px; }
  .hero { padding: 48px 0 56px; }
  .hero::before { display: none; }
  .why-right { margin: 0 8px; padding: 26px 22px; }
  .why-photo { margin-bottom: -50px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ─── PLATFORM BADGES ────────────────────────────── */
.badges {
  padding: 26px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.badges-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badges-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  margin-right: 8px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(30,42,59,0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.badge-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.badge-icon.upwork  { background: #6fda44; color: #000; }
.badge-icon.fiverr  { background: #1dbf73; color: #fff; }
.badge-icon.linkedin { background: #0a66c2; color: #fff; }
.badge-icon.google  { background: #000; color: #fff; }
.badge-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.badge-text span {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ─── WHO IS THIS FOR ────────────────────────────── */
.for-who { padding: 96px 0; background: var(--surface); }
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.for-who-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 40px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.for-who-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.for-who-item:hover .for-who-arrow { opacity: 1; transform: translateX(0); }
.for-who-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.for-who-item h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.for-who-item p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.7;
}
.for-who-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.for-who-list li {
  font-size: 0.82rem;
  color: var(--body);
  padding-left: 22px;
  position: relative;
}
.for-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.for-who-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;
  width: 3px;
  height: 6px;
  border: solid var(--accent);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}
.for-who-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

/* ─── GEO / AI SEARCH ────────────────────────────── */
.geo-section {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.geo-section::before {
  content: '';
  position: absolute;
  left: -60px;
  bottom: 40px;
  width: 180px;
  height: 140px;
  background-image: radial-gradient(var(--accent) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.25;
  pointer-events: none;
}
.geo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.geo-left .section-tag { margin-bottom: 12px; }
.geo-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}
.geo-left h2 em { font-style: normal; color: var(--accent); }
.geo-left p {
  color: var(--body);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 460px;
}
.geo-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.geo-point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.geo-point:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.geo-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 36px;
  margin-top: 0;
}
.geo-point h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.geo-point p {
  font-size: 0.83rem;
  color: var(--body);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials { padding: 96px 0; background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card::after {
  /* large orange quote mark, bottom-right, as in the reference */
  content: '\201D';
  position: absolute;
  right: 26px;
  bottom: 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 3px;
}
.testi-stars span {
  color: #F5A623;
  font-size: 0.95rem;
}
.testi-quote {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--body);
  flex: 1;
}
.testi-author {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testi-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--muted);
}
.testi-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}
.testi-platform .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fda44;
}
.testi-platform .dot.fiverr-dot { background: #1dbf73; }

/* ─── BLOG PREVIEW ───────────────────────────────── */
.blog-preview { padding: 96px 0; background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 0 0 8px 0;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--navy);
  padding: 0 28px;
  transition: color 0.2s;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.65;
  flex: 1;
  padding: 0 28px;
}
.blog-meta {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin: 6px 28px 0;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}
.blog-read {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.blog-footer {
  margin-top: 44px;
  text-align: center;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq { padding: 96px 0; background: var(--surface); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.faq-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.faq-left p {
  color: var(--body);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(30,42,59,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: rgba(37,99,235,0.45); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
}
.faq-q span {
  font-family: var(--font-head);
  font-size: 0.975rem;
  font-weight: 600;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────── */
@media (max-width: 900px) {
  .for-who-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .geo-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .for-who-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .badges-inner { gap: 8px; }
}

/* ─── APPLE-STYLE OVERRIDES ─────────────────────── */
:root {
  --surface:     #F5F5F7;
  --navy:        #1D1D1F;
  --navy-2:      #16202E;
  --accent:      #0071E3;
  --accent-dim:  #0077ED;
  --accent-soft: #F5F5F7;
  --text:        #1D1D1F;
  --body:        #515154;
  --muted:       #86868B;
  --border:      #D2D2D7;
  --shadow:      none;
  --shadow-lg:   none;
  --radius:      18px;
  --font-head:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
h1, h2, h3, h4, h5, .nav-logo, .hero h1, .section-header h2 { letter-spacing: -0.028em; }
.hero h1 { font-weight: 700; }
.section-header h2, .why-left h2, .geo-left h2, .faq-left h2, .cta-inner h2 { font-weight: 700; }
h3, h4, .service-item h3, .process-step h3, .for-who-item h3, .geo-point h3, .why-point h3, .industry-item h3, .blog-card h3, .faq-q span { font-weight: 600; }

/* strip decoration */
.hero::before, .geo-section::before, .hero-blob, .hero-media::before,
.cta-strip::before, .cta-strip::after, .hero h1 em::after, .why-photo::after { display: none; }
.hero { background: var(--bg); }
.hero-media { padding: 0; }
.hero-photo, .why-photo { border-radius: 24px; }
.hero-card { border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.10); left: -20px; bottom: 24px; }
.hero-card-icon { background: var(--surface); }
.nav-logo::after { background: var(--navy); }

/* labels: grey, not blue */
.section-tag, .hero-eyebrow, .for-who-tag, .blog-cat, .service-price, .why-card-label { color: var(--muted); }
.section-tag::before, .hero-eyebrow::before { display: none; }
.section-tag, .hero-eyebrow { letter-spacing: 0.01em; font-size: 0.85rem; font-weight: 600; }
.blog-cat { background: transparent; color: var(--muted); padding: 24px 28px 0; border-radius: 0; margin-bottom: 0; }
.service-price { color: var(--navy); }
.trust-stat strong, .why-card-stat strong { color: var(--navy); }

/* pill buttons, blue only on actions */
.btn-primary, .nav-cta, .cta-strip .btn-primary { border-radius: 980px; box-shadow: none; }
.btn-primary { padding: 14px 26px; }
.btn-primary:hover, .nav-cta:hover { transform: none; box-shadow: none; }
.btn-ghost { color: var(--accent); font-weight: 500; }
.btn-ghost::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 5h15M12 1l4 4-4 4' stroke='%230071E3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.nav-links a:hover { opacity: 0.55; }
.blog-read { color: var(--accent); }

/* flat cards: no borders, no shadows; tone follows section */
.service-item, .process-step, .for-who-item, .geo-point, .testi-card, .blog-card, .faq-item, .badge-item, .why-right {
  border: none; box-shadow: none;
}
.services .service-item, .process .process-step, .geo-section .geo-point, .blog-preview .blog-card { background: var(--surface); }
.for-who .for-who-item, .testimonials .testi-card, .faq .faq-item, .badges .badge-item, .why .why-right { background: #fff; }
.service-item:hover, .process-step:hover, .for-who-item:hover, .testi-card:hover, .blog-card:hover { transform: none; box-shadow: none; }
.geo-point:hover { transform: none; box-shadow: none; border: none; }
.for-who-item:hover { border: none; }
.faq-item.open { border: none; box-shadow: none; }
.why-right { border-radius: 20px; }
.badge-item { border-radius: 980px; }

.service-num, .geo-num { background: #E8E8ED; color: var(--navy); border-radius: 12px; }
.step-num { background: #E8E8ED; color: var(--navy); }
.step-rule { background: #E8E8ED; }
.why-dot { background: var(--navy); }
.industry-tag { background: #E8E8ED; border: none; }
.for-who-list li::before { background: #E8E8ED; }
.for-who-list li::after { border-color: var(--navy); }
.for-who-arrow { background: var(--navy); }
.faq-icon { background: #E8E8ED; color: var(--navy); }
.faq-item.open .faq-icon { background: var(--navy); color: #fff; }
.testi-card::after { color: #D2D2D7; opacity: 1; }
.testi-platform { background: #F5F5F7; border: none; }

/* dark bands: black, not blue */
.industries { background: linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.86)), url('../images/team-discussion.jpg') center 35% / cover no-repeat; }
.industry-item { background: rgba(255,255,255,0.08); border: none; border-radius: 18px; }
.industry-item:hover { background: rgba(255,255,255,0.14); border: none; transform: none; }
.cta-strip { background: #000; }
.cta-inner h2 em { text-decoration: none; color: #A1A1A6; }
.cta-strip .btn-primary { background: var(--accent); color: #fff; box-shadow: none; }
.cta-strip .btn-primary:hover { background: var(--accent-dim); }
.cta-strip .btn-ghost { color: #2997FF; }
.cta-strip .btn-ghost::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 5h15M12 1l4 4-4 4' stroke='%232997FF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.trust-bar, .badges { border-color: var(--border); }
nav { box-shadow: 0 1px 0 var(--border); }

/* ─── TESTIMONIALS: dark band with dot grid ─────── */
.testimonials {
  background-color: #1D1D1F;
  background-image:
    radial-gradient(ellipse at center, #1D1D1F 28%, rgba(29,29,31,0) 78%),
    radial-gradient(rgba(255,255,255,0.14) 1.1px, transparent 1.6px);
  background-size: 100% 100%, 22px 22px;
  background-position: center, 0 0;
  color: #fff;
}
.testimonials .section-tag { color: #A1A1A6; }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p { color: rgba(255,255,255,0.68); }
.testimonials .testi-card { background: #fff; }
.testimonials .testi-card::after { color: #E8E8ED; }
.testimonials .testi-quote { color: #515154; }
.testimonials .testi-author strong { color: #1D1D1F; }
.footer-brand .nav-logo::after { background: #fff; }
footer { border-top: 1px solid rgba(255,255,255,0.08); }

/* ─── INNER PAGES ────────────────────────────────── */
.nav-links a.active { color: var(--accent); }
.page-hero { padding: 88px 0 40px; background: var(--bg); }
.page-hero .hero-eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--navy);
  max-width: 760px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: 1.05rem; color: var(--body); max-width: 560px; line-height: 1.75; }
.page-hero .hero-actions { margin-top: 32px; }
.jump-links { display: flex; flex-wrap: wrap; gap: 10px; padding: 8px 0 56px; }
.jump-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--navy);
  background: var(--surface); padding: 9px 16px; border-radius: 980px;
  transition: background 0.2s, color 0.2s;
}
.jump-links a:hover { background: #E8E8ED; }
a.service-item { cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease; }
a.service-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }

/* ─── PHOTO HERO (inner pages) ───────────────────── */
.page-hero.photo {
  position: relative;
  padding: 120px 0 110px;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.78) 50%, rgba(0,0,0,0.62) 100%),
    var(--hero-photo, url('../images/services-hero.jpg')) center right / cover no-repeat;
}
.page-hero.photo .hero-eyebrow { color: #A1A1A6; }
.page-hero.photo h1 { color: #fff; max-width: 680px; }
.page-hero.photo h1 em { color: #2997FF; }
.page-hero.photo p { color: rgba(255,255,255,0.80); }
.page-hero.photo .btn-ghost { color: #fff; }
.page-hero.photo .btn-ghost::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 5h15M12 1l4 4-4 4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.page-hero.photo .jump-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 40px; }
.page-hero.photo .jump-links { padding: 12px 0 0; max-width: 640px; }
.page-hero.photo .jump-links a { background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(6px); }
.page-hero.photo .jump-links a:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 600px) {
  .page-hero.photo { padding: 64px 0 56px; min-height: 0; }
}

/* ─── PLATFORM BADGES: round brand-colour logos ──── */
.badge-icon, .badge-text { display: none; }
.badge-item {
  width: 46px; height: 46px; border-radius: 50%; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; box-shadow: none; background: #1D1D1F;
  transition: transform 0.2s, box-shadow 0.2s;
}
.badge-item::after { content: none; }
.badge-item svg { width: 22px; height: 22px; fill: #fff; display: block; }
.badge-item.medium svg { width: 20px; height: 20px; }
.badge-item.upwork   { background: #14A800; }
.badge-item.fiverr   { background: #1DBF73; }
.badge-item.linkedin { background: #0A66C2; }
.badge-item.medium   { background: #000000; }
.badge-item:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.16); border: none; }
.badges-inner { gap: 10px; }
.badges-label { margin-right: 6px; }
.badges-note { margin-left: auto; font-size: 0.8rem; color: var(--muted); }
@media (max-width: 700px) { .badges-note { margin-left: 0; width: 100%; padding-top: 6px; } }

/* ─── QUOTE / CONTACT FORM ───────────────────────── */
.quote-card { background: #fff; border-radius: 20px; padding: 32px; color: var(--navy); }
.quote-card h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; }
.quote-card > p, .page-hero.photo .quote-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; max-width: none; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .full { grid-column: 1 / -1; }
.quote-form label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--body); margin-bottom: 6px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; font: inherit; font-size: 0.9rem; color: var(--navy);
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}
.quote-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2386868B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px; }
.quote-form textarea { min-height: 96px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #A1A1A6; }
.quote-form .btn-primary { width: 100%; text-align: center; margin-top: 4px; }
.quote-form .note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 4px; }
@media (max-width: 600px) {
  .quote-card { padding: 24px 20px; }
  .quote-form { grid-template-columns: 1fr; }
}


/* ─── WHATSAPP BUTTON ────────────────────────────── */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.925rem;
  padding: 13px 22px; border-radius: 980px; margin-top: 14px;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-1px); }

/* ─── HOMEPAGE HERO: full-bleed photo ─────────────── */
.hero.hero-bg {
  padding: 130px 0 120px;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.80) 50%, rgba(0,0,0,0.66) 100%),
    url('../images/hero-team.jpg') center 30% / cover no-repeat;
}
.hero.hero-bg .container { width: 100%; }
.hero.hero-bg .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero.hero-bg .hero-text { max-width: 620px; }
.hero.hero-bg .quote-card > p { color: var(--muted); }
.hero.hero-bg .hero-eyebrow { color: #A1A1A6; }
.hero.hero-bg h1 { color: #fff; }
.hero.hero-bg h1 em { color: #2997FF; }
.hero.hero-bg .hero-sub { color: rgba(255,255,255,0.80); }
.hero.hero-bg .btn-ghost { color: #fff; }
.hero.hero-bg .btn-ghost::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M1 5h15M12 1l4 4-4 4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
@media (max-width: 900px) {
  .hero.hero-bg .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .hero.hero-bg { padding: 72px 0 64px; min-height: 0; }
}

/* ─── HERO: rotating service word ────────────────── */
.hero-flip { display: inline-grid; vertical-align: bottom; height: 1.14em; overflow: hidden; color: var(--accent); }
.hero-flip > span { grid-area: 1 / 1; white-space: nowrap; opacity: 0; transform: translateY(60%); transition: opacity 0.35s ease, transform 0.35s ease; }
.hero-flip > span.on { opacity: 1; transform: none; }
.hero-flip > span.out { opacity: 0; transform: translateY(-60%); }
.hero.hero-bg .hero-flip { color: #2997FF; }
@media (prefers-reduced-motion: reduce) {
  .hero-flip > span { transform: none !important; transition: opacity 0.3s ease !important; }
}

/* ─── HOMEPAGE HERO: centred rotating promise ────── */
.hero.hero-centre { padding: 118px 0 96px; text-align: center; background: var(--bg); }
.hero.hero-centre .hero-grid { display: block; }
.hero.hero-centre .hero-text { max-width: 920px; margin: 0 auto; }
.hero.hero-centre .hero-eyebrow { justify-content: center; color: var(--muted); font-weight: 500; }
.hero.hero-centre .hero-eyebrow::before { display: none; }
.hero.hero-centre h1 { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.1; margin: 0 auto 22px; color: var(--navy); }
.hero.hero-centre .hero-sub { margin: 0 auto 34px; max-width: 560px; }
.hero.hero-centre .hero-actions { justify-content: center; }
.hero-proof { margin-top: 46px; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }
.hero-proof b { color: var(--navy); font-weight: 600; }

@media (max-width: 600px) {
  .hero.hero-centre { padding: 64px 0 56px; }
  .hero-proof { gap: 18px 24px; margin-top: 34px; }
}

/* ─── HORIZONTAL SLIDER (full-bleed, Apple style) ── */
.slider { position: relative; }
.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* first card lines up with the container; cards run off both screen edges */
  padding-inline: max(24px, calc((100% - 1092px) / 2));
  scroll-padding-inline-start: max(24px, calc((100% - 1092px) / 2));
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { flex: 0 0 340px; scroll-snap-align: start; }
.slider-track:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; border-radius: 12px; }
.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%; border: none; padding: 0;
  background: #E8E8ED; color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}
.slider-btn:hover:not(:disabled) { background: #D2D2D7; }
.slider-btn:disabled { opacity: 0.35; cursor: default; }
.slider-btn svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .slider-track > * { flex: 0 0 min(340px, 76vw); } }
@media (max-width: 600px) { .slider-track > * { flex: 0 0 82vw; } }

/* section rhythm: white hero, grey badges+services, white why, grey process */
.services-bento + .why { background: var(--bg); }
.services-bento + .why + .process { background: var(--surface); }
.services-bento + .why + .process .process-step { background: #fff; }

/* ─── SERVICES BENTO (homepage) ──────────────────── */
.services-bento { background: var(--surface); }
.services-bento + .why { background: var(--bg); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-item {
  background: #fff; border-radius: 18px; padding: 30px 28px; color: inherit;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 250px; transition: transform 0.25s, box-shadow 0.25s;
}
.bento-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.bento-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.bento-num {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--navy);
  background: #E8E8ED; width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bento-item h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.bento-item p { font-size: 0.875rem; color: var(--body); line-height: 1.65; }
.bento-item .service-price {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
}

/* description and bullets share one box and cross-fade, so the card never resizes */
.bento-swap { display: grid; }
.bento-swap > * { grid-area: 1 / 1; transition: opacity 0.28s ease, transform 0.28s ease; }
.bento-swap > p { opacity: 1; }
.bento-more { display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateY(6px); }
.bento-more li { font-size: 0.82rem; color: var(--body); line-height: 1.5; padding-left: 18px; position: relative; }
.bento-more li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.bento-item:hover .bento-swap > p,
.bento-item:focus-visible .bento-swap > p { opacity: 0; transform: translateY(-6px); }
.bento-item:hover .bento-more,
.bento-item:focus-visible .bento-more { opacity: 1; transform: none; }
/* touch devices have no hover, so show both, stacked */
@media (hover: none) {
  .bento-swap { display: block; }
  .bento-more { opacity: 1; transform: none; margin-top: 12px; }
}

/* feature tile: always dark, description and bullets both shown */
.bento-feature { grid-column: span 2; grid-row: span 2; background: var(--navy); padding: 40px 38px; }
.bento-feature:hover { box-shadow: 0 24px 50px rgba(0,0,0,0.22); }
.bento-feature .bento-num { background: rgba(255,255,255,0.14); color: #fff; }
.bento-feature h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; letter-spacing: -0.024em; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.bento-feature p { color: rgba(255,255,255,0.78); font-size: 0.975rem; max-width: 430px; }
.bento-feature .bento-swap { display: block; }
.bento-feature .bento-swap > p { opacity: 1 !important; transform: none !important; }
.bento-feature .bento-more { opacity: 1; transform: none; margin-top: 22px; gap: 9px; }
.bento-feature .bento-more li { color: rgba(255,255,255,0.72); font-size: 0.85rem; }
.bento-feature .bento-more li::before { background: #2997FF; }
.bento-flag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,0.14); padding: 6px 12px; border-radius: 980px; }
.bento-feature .bento-top { flex: 1; display: flex; flex-direction: column; }
.bento-facts { display: flex; gap: 40px; flex-wrap: wrap; margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); }
.bento-facts strong { display: block; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: #fff; line-height: 1.1; }
.bento-facts span { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }
.bento-feature .service-price { color: #fff; border-top-color: rgba(255,255,255,0.2); margin-top: 20px; padding-top: 16px; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-feature { grid-column: span 2; grid-row: span 1; }
  .bento-item { min-height: 0; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-feature { grid-column: span 1; padding: 30px 26px; }
}

/* ─── BADGES STRIP ───────────────────────────────── */
.badges { border-bottom: none; }
.badges .badges-label { color: rgba(255,255,255,0.55); }
.badges .badges-note { color: rgba(255,255,255,0.55); }
.badges .badge-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.45); }
/* Medium's mark is black, so invert it on the dark band */
.badges .badge-item.medium { background: #fff; }
.badges .badge-item.medium svg { fill: var(--navy); }

/* ─── DARK BANDS: one shared texture ─────────────── */
/* faint dot grid that fades at the edges, plus a soft blue glow */
.badges, .testimonials, .cta-strip, .story {
  position: relative;
  background-color: var(--navy);
  background-image: none;
}
.badges::before, .testimonials::before, .cta-strip::before, .story::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}
.cta-strip::after { display: none; }
.badges > .container, .testimonials > .container, .cta-strip > .container, .story > .container {
  position: relative;
  z-index: 1;
}
/* taller bands get a wider dot field */
.testimonials::before, .story::before {
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, transparent 0%, #000 65%);
  mask-image: radial-gradient(ellipse 70% 60% at center, transparent 0%, #000 65%);
}

/* ─── BLOG CARD IMAGES ───────────────────────────── */
.blog-card { overflow: hidden; }
.blog-card .bimg { aspect-ratio: 16 / 10; overflow: hidden; background: #E8E8ED; }
.blog-card .bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .bimg img { transform: scale(1.04); }
.blog-card .bimg + .blog-cat { padding-top: 20px; }

/* ─── BENTO: link arrow ──────────────────────────── */
.bento-item .service-price { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bento-arrow {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s ease, background 0.22s ease;
}
.bento-arrow svg { width: 15px; height: 15px; }
.bento-item:hover .bento-arrow { transform: translate(3px, -3px); }
.bento-feature .bento-arrow { background: #fff; color: var(--navy); }

/* ─── FAQ rows: hover feedback on the question ───── */
.faq-item { transition: background 0.2s, border-color 0.2s, box-shadow 0.2s; }
.faq-item:not(.open):hover { background: #fff; }
.faq-q:hover .faq-icon { background: var(--navy); color: #fff; }

/* ─── INFORMATIONAL CARDS ────────────────────────── */
/* these do not link anywhere, so the lift is deliberately smaller than a link's */
.pricing-card, .story-step, .where-tile, .side-card, .what-tile, .svc-tile, .author, .founder-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.pricing-card:hover, .where-tile:hover, .side-card:hover, .what-tile:hover, .svc-tile:hover, .author:hover, .founder-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}
.svc-tile.dark:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.20); }
.story-step:hover { transform: translateY(-2px); background: rgba(255,255,255,0.10); }

/* ─── SKIP LINK ──────────────────────────────────── */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; font-size: 0.875rem; font-weight: 600;
  padding: 10px 18px; border-radius: 0 0 8px 8px; transition: top 0.18s ease;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   WordPress-specific styles
   Only classes WordPress emits that the site never had. Anything the design
   already styles — blockquote, figure, figcaption, lists — is deliberately
   left alone, so the editor's output inherits the existing look rather than
   fighting it.
   ========================================================================== */

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  width: auto; height: auto;
  padding: 12px 20px;
  clip-path: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

/* A logo uploaded in the Customizer. Without this the image arrives at its
   natural size and blows the header apart, because .nav-logo styles text. */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.custom-logo {
  max-height: 32px;
  width: auto;
  height: auto;
}

.footer-brand .custom-logo { max-height: 36px; margin-bottom: 16px; }

/* Alignment classes from the block editor. */
.prose .alignleft   { float: left;  margin: 6px 24px 18px 0; }
.prose .alignright  { float: right; margin: 6px 0 18px 24px; }
.prose .aligncenter { display: block; margin-inline: auto; }

/* Images the editor inserts, and captions in the classic-editor shape. */
.prose img { max-width: 100%; height: auto; border-radius: 14px; }

.prose .wp-caption { margin: 30px 0; max-width: 100%; }
.prose .wp-caption img { width: 100%; height: auto; }

.prose .wp-caption-text {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Tables — the site has none, so these are new. */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.prose th,
.prose td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.92rem;
}

.prose th { font-weight: 600; color: var(--navy); background: var(--surface); }

/* Pagination on the blog index. */
.cw-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cw-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, transform 0.2s;
}

.cw-pagination .page-numbers:hover { background: var(--surface); transform: translateY(-2px); }
.cw-pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.cw-pagination .dots { border-color: transparent; }
.cw-pagination .dots:hover { background: none; transform: none; }

/* ==========================================================================
   Page-specific styles
   Each static page carried its own <style> block. Several of them define the
   same selector with different values — .hero-split differs between About and
   Services, .prose between the legal pages and an article — so each block is
   scoped to the body class its template sets. Do not un-scope these.
   ========================================================================== */


/* ── Services page — .cw-services ──────────────────────── */
/* ─── SERVICES PAGE ──────────────────────────────── */
.cw-services .svc-overview { padding: 88px 0 96px; background: var(--surface); }
.cw-services .svc-overview .services-grid a.service-item { color: inherit; background: #fff; }
.cw-services .hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.cw-services .svc-detail { padding: 96px 0; scroll-margin-top: 72px; }
.cw-services .svc-detail.alt { background: var(--surface); }
.cw-services .svc-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.cw-services .svc-detail.flip .svc-text { order: 2; }
.cw-services .svc-detail.flip .svc-media { order: 1; }
.cw-services .svc-text .section-tag { margin-bottom: 12px; }
.cw-services .svc-text h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 700; letter-spacing: -0.028em; line-height: 1.2; color: var(--navy); margin-bottom: 18px; }
.cw-services .svc-text > p { color: var(--body); font-size: 0.975rem; line-height: 1.75; margin-bottom: 14px; max-width: 520px; }
.cw-services .svc-includes { margin: 24px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.cw-services .svc-includes li { font-size: 0.875rem; color: var(--navy); padding-left: 24px; position: relative; line-height: 1.5; }
.cw-services .svc-includes li::before { content: ''; position: absolute; left: 0; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: #E8E8ED; }
.cw-services .svc-detail.alt .svc-includes li::before { background: #fff; }
.cw-services .svc-includes li::after { content: ''; position: absolute; left: 5.5px; top: 6.5px; width: 3px; height: 6px; border: solid var(--navy); border-width: 0 1.8px 1.8px 0; transform: rotate(45deg); }
.cw-services .svc-meta { display: flex; flex-wrap: wrap; gap: 28px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.cw-services .svc-meta div { font-size: 0.8rem; color: var(--muted); }
.cw-services .svc-meta strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.cw-services .svc-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cw-services .svc-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; }
.cw-services .svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.cw-services .svc-tile { background: var(--surface); border-radius: 24px; padding: 40px; min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; }
.cw-services .svc-detail.alt .svc-tile { background: #fff; }
.cw-services .svc-tile-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.cw-services .svc-tile-big { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1.05; margin: 18px 0 8px; }
.cw-services .svc-tile-sub { font-size: 0.9rem; color: var(--body); max-width: 320px; line-height: 1.6; }
.cw-services .svc-tile-list { margin-top: 28px; display: flex; flex-direction: column; }
.cw-services .svc-tile-list li { display: flex; justify-content: space-between; gap: 16px; font-size: 0.875rem; color: var(--navy); padding: 12px 0; border-top: 1px solid var(--border); }
.cw-services .svc-tile-list li span:last-child { color: var(--muted); white-space: nowrap; }
.cw-services .svc-tile.dark, .cw-services .svc-detail.alt .svc-tile.dark { background: var(--navy); }
.cw-services .svc-tile.dark .svc-tile-label { color: #A1A1A6; }
.cw-services .svc-tile.dark .svc-tile-big, .cw-services .svc-tile.dark .svc-tile-list li { color: #fff; }
.cw-services .svc-tile.dark .svc-tile-sub, .cw-services .svc-tile.dark .svc-tile-list li span:last-child { color: rgba(255,255,255,0.65); }
.cw-services .svc-tile.dark .svc-tile-list li { border-top-color: rgba(255,255,255,0.12); }
.cw-services .pricing-note { padding: 96px 0; background: var(--bg); scroll-margin-top: 72px; }
.cw-services .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cw-services .pricing-card { background: var(--surface); border-radius: 18px; padding: 32px; }
.cw-services .pricing-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.cw-services .pricing-card p { font-size: 0.875rem; color: var(--body); line-height: 1.7; }
.cw-services .pricing-card .who { margin-top: 18px; font-size: 0.78rem; color: var(--muted); }
@media (max-width: 900px) {
  .cw-services .svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .cw-services .svc-detail.flip .svc-text { order: 1; }
  .cw-services .svc-detail.flip .svc-media { order: 2; }
  .cw-services .pricing-grid { grid-template-columns: 1fr; }
  .cw-services .hero-split { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .cw-services .svc-includes { grid-template-columns: 1fr; }
  .cw-services .svc-tile { padding: 28px; min-height: 0; }
}


/* ── About page — .cw-about ────────────────────────────── */
/* ─── ABOUT PAGE ─────────────────────────────────── */
.cw-about .page-hero.photo.about-hero { background: linear-gradient(90deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.80) 100%), url('images/about-hero.jpg') center / cover no-repeat; }
.cw-about .about-hero h1 { max-width: 720px; }
.cw-about .about-hero p { max-width: 560px; }
.cw-about .hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cw-about .glass { background: rgba(255,255,255,0.96); border-radius: 20px; padding: 28px 30px; color: var(--navy); }
.cw-about .avatar-row { display: flex; align-items: center; gap: 14px; }
.cw-about .avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.cw-about .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.cw-about .avatar-row strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.cw-about .avatar-row span { font-size: 0.82rem; color: var(--muted); }
.cw-about .glance { margin: 20px 0 22px; display: flex; flex-direction: column; }
.cw-about .glance li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-top: 1px solid var(--border); font-size: 0.875rem; }
.cw-about .glance li span { color: var(--muted); white-space: nowrap; }
.cw-about .glance li strong { font-weight: 500; color: var(--navy); text-align: right; }
.cw-about .glass .badges-inner { gap: 10px; }
.cw-about .about-stats { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.cw-about .about-stats .trust-stats { margin-left: 0; justify-content: space-between; width: 100%; }
.cw-about .what { padding: 96px 0; background: var(--surface); }
.cw-about .what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cw-about .what-tile { background: #fff; border-radius: 18px; padding: 32px; display: flex; flex-direction: column; }
.cw-about .what-tile .num { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--navy); background: #E8E8ED; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.cw-about .what-tile h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.cw-about .what-tile p { font-size: 0.875rem; color: var(--body); line-height: 1.7; flex: 1; }
.cw-about .what-tile a { margin-top: 18px; font-size: 0.85rem; font-weight: 500; color: var(--accent); }
.cw-about .what-tile a:hover { text-decoration: underline; }
.cw-about .founder { padding: 96px 0; background: var(--bg); }
.cw-about .founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.cw-about .founder-photo { position: sticky; top: 96px; }
.cw-about .founder-photo .frame { aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; background: var(--surface); display: flex; align-items: center; justify-content: center; position: relative; }
.cw-about .founder-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.cw-about .founder-card { margin-top: 20px; background: var(--surface); border-radius: 18px; padding: 22px 24px; }
.cw-about .founder-card strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.cw-about .founder-card > span { font-size: 0.85rem; color: var(--muted); display: block; margin-bottom: 12px; }
.cw-about .founder-card .badges-inner { gap: 8px; }
.cw-about .founder-note { font-size: 0.78rem; color: var(--muted); }
.cw-about .founder-contact { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.cw-about .founder-contact-label { font-size: 0.82rem; color: var(--navy); font-weight: 500; margin-bottom: 6px; }
.cw-about .founder-mail { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--accent); }
.cw-about .founder-mail::before { content: ''; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230071E3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") no-repeat center / contain; }
.cw-about .founder-mail:hover { text-decoration: underline; }
.cw-about .founder-text .section-tag { margin-bottom: 12px; }
.cw-about .founder-text h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 700; letter-spacing: -0.028em; line-height: 1.2; color: var(--navy); margin-bottom: 22px; }
.cw-about .founder-text p { color: var(--body); font-size: 0.975rem; line-height: 1.8; margin-bottom: 18px; max-width: 560px; }
.cw-about .founder-quote { margin: 32px 0; padding: 28px 32px; background: var(--surface); border-radius: 18px; }
.cw-about .founder-quote p { font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; color: var(--navy); line-height: 1.5; margin: 0; max-width: none; }
.cw-about .founder-quote span { display: block; margin-top: 12px; font-size: 0.8rem; color: var(--muted); }
.cw-about .founder-industries { margin-top: 8px; }
.cw-about .founder-industries .why-card-label { margin-bottom: 12px; }
.cw-about .principles { padding: 96px 0; background: var(--surface); }
.cw-about .principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cw-about .principles-photo { aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; }
.cw-about .principles-photo img { width: 100%; height: 100%; object-fit: cover; }
.cw-about .principles .why-point h3 { color: var(--navy); }
.cw-about .principles .why-points { margin-top: 8px; }
.cw-about .story { padding: 96px 0; color: #fff; }
.cw-about .story .section-tag { color: #A1A1A6; }
.cw-about .story .section-header h2 { color: #fff; }
.cw-about .story .section-header p { color: rgba(255,255,255,0.68); }
.cw-about .story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cw-about .story-step { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; padding: 28px 26px; }
.cw-about .story-step .k { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #2997FF; margin-bottom: 14px; }
.cw-about .story-step h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.cw-about .story-step p { font-size: 0.83rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.cw-about .where { padding: 96px 0; background: var(--bg); }
.cw-about .where-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cw-about .where-tile { background: var(--surface); border-radius: 18px; padding: 26px 22px; }
.cw-about .where-tile .k { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.cw-about .where-tile strong { display: block; font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.cw-about .where-tile span { font-size: 0.8rem; color: var(--body); line-height: 1.6; }
@media (max-width: 900px) {
  .cw-about .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .cw-about .what-grid { grid-template-columns: 1fr; }
  .cw-about .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .cw-about .founder-photo { position: static; max-width: 420px; }
  .cw-about .principles-grid { grid-template-columns: 1fr; gap: 40px; }
  .cw-about .principles-photo { aspect-ratio: 4 / 3; }
  .cw-about .story-grid { grid-template-columns: 1fr 1fr; }
  .cw-about .where-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cw-about .story-grid { grid-template-columns: 1fr; }
  .cw-about .where-grid { grid-template-columns: 1fr; }
  .cw-about .about-stats .trust-stats { gap: 24px; }
  .cw-about .glass { padding: 22px 20px; }
  .cw-about .glance li { flex-direction: column; gap: 2px; }
  .cw-about .glance li strong { text-align: left; }
}


/* ── Contact page — .cw-contact ────────────────────────── */
/* ─── CONTACT PAGE ───────────────────────────────── */
.cw-contact .contact-hero { padding: 88px 0 56px; }
.cw-contact .contact-hero h1 { max-width: 720px; }
.cw-contact .contact-hero p { max-width: 560px; }
.cw-contact .contact { padding: 0 0 80px; background: var(--bg); }
.cw-contact .contact-page .faq { background: var(--surface); }
.cw-contact .contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: start; }
.cw-contact .contact .quote-card { background: var(--surface); padding: 36px; }
.cw-contact .contact .quote-form input, .cw-contact .contact .quote-form select, .cw-contact .contact .quote-form textarea { background: #fff; }
.cw-contact .contact .quote-form textarea { min-height: 140px; }
.cw-contact .contact-side { display: flex; flex-direction: column; gap: 16px; }
.cw-contact .side-card { background: var(--surface); border-radius: 20px; padding: 28px 30px; }
.cw-contact .side-card h2 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.cw-contact .side-card p { font-size: 0.875rem; color: var(--body); line-height: 1.65; }
.cw-contact .side-card .big { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--accent); margin-top: 10px; word-break: break-all; }
.cw-contact .side-card .big::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230071E3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") no-repeat center / contain; }
.cw-contact .side-card .big:hover { text-decoration: underline; }
.cw-contact .side-card .badges-inner { margin-top: 14px; }
.cw-contact .next-steps { display: flex; flex-direction: column; margin-top: 12px; }
.cw-contact .next-steps li { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border); font-size: 0.875rem; color: var(--body); line-height: 1.55; }
.cw-contact .next-steps li:first-child { border-top: none; padding-top: 4px; }
.cw-contact .next-steps .n { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; color: var(--navy); background: #E8E8ED; width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cw-contact .next-steps strong { color: var(--navy); font-weight: 600; }
@media (max-width: 900px) {
  .cw-contact .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cw-contact .contact-hero { padding: 56px 0 32px; }
  .cw-contact .contact .quote-card { padding: 24px 20px; }
}


/* ── Blog index — .cw-blog ─────────────────────────────── */
/* ─── BLOG LISTING ───────────────────────────────── */
.cw-blog .blog-hero { padding: 88px 0 40px; }
.cw-blog .blog-hero h1 { max-width: 760px; }
.cw-blog .blog-hero p { max-width: 560px; }
.cw-blog .cats { display: flex; flex-wrap: wrap; gap: 10px; padding: 8px 0 48px; }
.cw-blog .cats button { font: inherit; font-size: 0.85rem; font-weight: 500; color: var(--navy); background: var(--surface); border: none; padding: 9px 16px; border-radius: 980px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.cw-blog .cats button:hover { background: #E8E8ED; }
.cw-blog .cats button.on { background: var(--navy); color: #fff; }
.cw-blog .featured { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; background: var(--surface); border-radius: 24px; overflow: hidden; margin-bottom: 56px; color: inherit; }
.cw-blog .featured .fimg { aspect-ratio: 16 / 10; overflow: hidden; }
.cw-blog .featured .fimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cw-blog .featured:hover .fimg img { transform: scale(1.03); }
.cw-blog .featured .ftext { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.cw-blog .ftag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.cw-blog .featured h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; letter-spacing: -0.024em; line-height: 1.25; color: var(--navy); margin-bottom: 14px; transition: color 0.2s; }
.cw-blog .featured p { font-size: 0.95rem; color: var(--body); line-height: 1.7; margin-bottom: 22px; }
.cw-blog .pmeta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--muted); }
.cw-blog .pmeta .av { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; }
.cw-blog .pmeta .av img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.cw-blog .pmeta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.cw-blog .posts { padding: 0 0 96px; }
.cw-blog .blog-grid { margin-top: 0; }
.cw-blog .blog-card .bimg { aspect-ratio: 16 / 10; overflow: hidden; background: #E8E8ED; }
.cw-blog .blog-card .bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cw-blog .blog-card:hover .bimg img { transform: scale(1.04); }
.cw-blog .blog-card .blog-cat { padding: 20px 28px 0; }
.cw-blog .blog-card[hidden] { display: none; }
.cw-blog .coming { margin-top: 40px; text-align: center; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 900px) {
  .cw-blog .featured { grid-template-columns: 1fr; }
  .cw-blog .featured .ftext { padding: 28px; }
}
@media (max-width: 600px) {
  .cw-blog .blog-hero { padding: 56px 0 24px; }
}


/* ── Privacy and Terms — .cw-legal ─────────────────────── */
/* ─── LEGAL PAGES ────────────────────────────────── */
.cw-legal .legal-head { padding: 80px 0 32px; }
.cw-legal .legal-head h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: -0.028em; line-height: 1.15; color: var(--navy); margin-bottom: 12px; max-width: 720px; }
.cw-legal .legal-head .dek { font-size: 1.05rem; color: var(--body); line-height: 1.7; max-width: 640px; margin-bottom: 14px; }
.cw-legal .legal-head .upd { font-size: 0.82rem; color: var(--muted); }
.cw-legal .legal { padding: 24px 0 96px; }
.cw-legal .legal-grid { display: grid; grid-template-columns: 1fr 260px; gap: 72px; align-items: start; }
.cw-legal .prose { max-width: 720px; font-size: 1rem; line-height: 1.8; color: #3A3F47; }
.cw-legal .prose p { margin-bottom: 1.2em; }
.cw-legal .prose h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 2.2em 0 0.6em; line-height: 1.25; scroll-margin-top: 90px; }
.cw-legal .prose h2:first-child { margin-top: 0; }
.cw-legal .prose ul { margin: 0 0 1.2em 1.3em; }
.cw-legal .prose li { margin-bottom: 0.4em; }
.cw-legal .prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cw-legal .prose strong { color: var(--navy); font-weight: 600; }
.cw-legal .prose .draft { margin: 1.2em 0 1.6em; padding: 18px 22px; border-radius: 16px; background: #FFF6E5; color: #5A4300; font-size: 0.9rem; line-height: 1.6; }
.cw-legal .prose .draft strong { color: #5A4300; display: block; margin-bottom: 2px; }
.cw-legal .side { position: sticky; top: 96px; }
.cw-legal .toc { background: var(--surface); border-radius: 18px; padding: 22px 24px; }
.cw-legal .toc h2 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cw-legal .toc ol { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cw-legal .toc a { font-size: 0.875rem; color: var(--body); line-height: 1.4; display: block; }
.cw-legal .toc a:hover { color: var(--navy); }
.cw-legal .toc a.on { color: var(--accent); }
.cw-legal .toc .other { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--muted); }
.cw-legal .toc .other a { display: inline; font-size: inherit; color: var(--accent); }
@media (max-width: 900px) {
  .cw-legal .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .cw-legal .side { position: static; }
  .cw-legal .toc ol { display: none; }
}
@media (max-width: 600px) {
  .cw-legal .legal-head { padding: 48px 0 20px; }
}


/* ── 404 page — .cw-404 ────────────────────────────────── */
.cw-404 .nf { padding: 120px 0 110px; text-align: center; }
.cw-404 .nf .code { font-family: var(--font-head); font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; letter-spacing: -0.05em; color: #E8E8ED; line-height: 1; }
.cw-404 .nf h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.028em; color: var(--navy); margin: 10px 0 16px; }
.cw-404 .nf p { color: var(--body); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto 34px; }
.cw-404 .nf .hero-actions { justify-content: center; }
.cw-404 .nf-links { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cw-404 .nf-links a { font-size: 0.85rem; font-weight: 500; color: var(--navy); background: var(--surface); padding: 9px 16px; border-radius: 980px; transition: background 0.2s; }
.cw-404 .nf-links a:hover { background: #E8E8ED; }
@media (max-width: 600px) {
  .cw-404 .nf { padding: 64px 0 56px; }
}


/* ── Single article — .cw-article ──────────────────────── */
/* ─── ARTICLE ────────────────────────────────────── */
.cw-article .pmeta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; }
.cw-article .pmeta .av { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.cw-article .pmeta .av img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.cw-article .pmeta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.cw-article .crumb-bar { padding: 34px 0 22px; }
.cw-article .art-head { padding: 36px 0 44px; }
.cw-article .art-head .wrap { max-width: 760px; }
.cw-article .crumbs { font-size: 0.8rem; color: var(--muted); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.cw-article .crumbs a { color: var(--muted); }
.cw-article .crumbs a:hover { color: var(--navy); }
.cw-article .art-head h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -0.028em; line-height: 1.15; color: var(--navy); margin-bottom: 18px; }
.cw-article .art-head .dek { font-size: 1.1rem; color: var(--body); line-height: 1.7; margin-bottom: 26px; }
.cw-article .art-head .pmeta { font-size: 0.85rem; }
.cw-article .art-head .pmeta .av { width: 36px; height: 36px; }
.cw-article .art-head .pmeta strong { color: var(--navy); font-weight: 600; }
.cw-article .cover { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.cw-article .cover figure { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 21 / 9; }
.cw-article .cover img { width: 100%; height: 100%; object-fit: cover; }
.cw-article .cover-cat { position: absolute; left: 20px; bottom: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); background: rgba(255,255,255,0.94); padding: 7px 14px; border-radius: 980px; margin: 0; }
@media (max-width: 600px) {
  .cw-article .cover figure { aspect-ratio: 16 / 10; }
}
.cw-article .art { padding: 0 0 80px; }
.cw-article .art-grid { display: grid; grid-template-columns: 1fr 280px; gap: 72px; align-items: start; }
.cw-article .prose { max-width: 720px; font-size: 1.05rem; line-height: 1.8; color: #3A3F47; }
.cw-article .prose p { margin-bottom: 1.4em; }
.cw-article .prose h2 { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 2.2em 0 0.7em; line-height: 1.25; scroll-margin-top: 90px; }
.cw-article .prose h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 1.8em 0 0.6em; }
.cw-article .prose ul, .cw-article .prose ol { margin: 0 0 1.4em 1.3em; }
.cw-article .prose li { margin-bottom: 0.5em; }
.cw-article .prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cw-article .prose strong { color: var(--navy); font-weight: 600; }
.cw-article .prose blockquote { margin: 2em 0; padding: 24px 28px; background: var(--surface); border-radius: 18px; font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; color: var(--navy); line-height: 1.5; }
.cw-article .prose .callout { margin: 2em 0; padding: 22px 26px; border-radius: 18px; background: #EAF3FF; color: var(--navy); font-size: 0.975rem; }
.cw-article .prose .callout strong { display: block; margin-bottom: 4px; }
.cw-article .prose figure { margin: 2em 0; }
.cw-article .prose figure img { border-radius: 18px; }
.cw-article .prose figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 10px; }
.cw-article .side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.cw-article .toc { background: var(--surface); border-radius: 18px; padding: 22px 24px; }
.cw-article .toc h2 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cw-article .toc ol { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cw-article .toc a { font-size: 0.875rem; color: var(--body); line-height: 1.4; display: block; }
.cw-article .toc a:hover { color: var(--navy); }
.cw-article .toc a.on { color: var(--accent); }
.cw-article .share { background: var(--surface); border-radius: 18px; padding: 22px 24px; }
.cw-article .share h2 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cw-article .share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cw-article .share-row a, .cw-article .share-row button { font: inherit; font-size: 0.82rem; font-weight: 500; color: var(--navy); background: #fff; border: none; padding: 8px 14px; border-radius: 980px; cursor: pointer; transition: background 0.2s; }
.cw-article .share-row a:hover, .cw-article .share-row button:hover { background: #E8E8ED; }
.cw-article .author { margin-top: 56px; padding: 28px 32px; background: var(--surface); border-radius: 20px; display: flex; gap: 20px; align-items: flex-start; max-width: 720px; }
.cw-article .author .av { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.cw-article .author .av img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.cw-article .author strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy); }
.cw-article .author span { font-size: 0.8rem; color: var(--muted); display: block; margin-bottom: 8px; }
.cw-article .author p { font-size: 0.875rem; color: var(--body); line-height: 1.65; margin: 0; }
.cw-article .author p a { color: var(--accent); }
.cw-article .next { padding: 80px 0 96px; background: var(--surface); }
.cw-article .next .blog-grid { grid-template-columns: 1fr 1fr; }
.cw-article .next .blog-card { background: #fff; }
.cw-article .next .blog-card .bimg { aspect-ratio: 16 / 9; overflow: hidden; }
.cw-article .next .blog-card .bimg img { width: 100%; height: 100%; object-fit: cover; }
.cw-article .next .blog-card .blog-cat { padding: 20px 28px 0; }
@media (max-width: 900px) {
  .cw-article .art-grid { grid-template-columns: 1fr; gap: 40px; }
  .cw-article .side { position: static; }
  .cw-article .toc { display: none; }
  .cw-article .next .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cw-article .art-head { padding: 48px 0 28px; }
  .cw-article .prose { font-size: 1rem; }
  .cw-article .author { flex-direction: column; padding: 22px; }
  .cw-article .cover figure { border-radius: 16px; }
}
