/* =========================================================================
   WordSuccor Theme — main.css
   Design system + components. Mobile-first, no external CSS frameworks.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink: #0c1118;
  --ink-2: #121a24;
  --ink-3: #1b2632;
  --paper: #f6f3ee;
  --paper-2: #ffffff;
  --coral: #ff5b35;
  --coral-600: #e8451f;
  --coral-soft: #ffe7df;
  --teal: #16b3a4;
  --text: #14202b;
  --text-soft: #4a5a68;
  --text-invert: #f4f1ea;
  --text-invert-soft: #9fb0bd;
  --line: #e6e0d6;
  --line-dark: rgba(255, 255, 255, 0.10);
  --ring: rgba(255, 91, 53, 0.35);

  /* Type */
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing / layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 132px);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(12, 17, 24, 0.06), 0 4px 14px rgba(12, 17, 24, 0.05);
  --shadow-md: 0 10px 30px rgba(12, 17, 24, 0.10), 0 2px 6px rgba(12, 17, 24, 0.06);
  --shadow-lg: 0 30px 70px rgba(12, 17, 24, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}
p { margin: 0 0 1.1em; }
strong { font-weight: 700; }

::selection { background: var(--coral); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); position: relative; }
.section--ink { background: var(--ink); color: var(--text-invert); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--text-invert); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); display: inline-block; }
.section--ink .eyebrow { color: var(--coral); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.section-head p { color: var(--text-soft); font-size: 1.1rem; max-width: 60ch; }
.section--ink .section-head p { color: var(--text-invert-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(255, 91, 53, 0.32); }
.btn--primary:hover { background: var(--coral-600); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.section--ink .btn--ghost { border-color: var(--line-dark); color: var(--text-invert); }
.section--ink .btn--ghost:hover { border-color: var(--text-invert); }
.btn--light { background: var(--paper-2); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.1em 1.9em; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.03em; color: var(--ink); }
.brand img { max-height: 38px; width: auto; }
.brand .brand-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 1rem; }
.brand .brand-mark span { color: var(--coral); }

.primary-nav { display: flex; align-items: center; }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.primary-nav a { position: relative; padding: 0.55em 0.85em; font-weight: 500; font-size: 0.96rem; color: var(--text); border-radius: 8px; transition: color 0.2s, background 0.2s; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--ink); background: rgba(12, 17, 24, 0.05); }
.primary-nav .menu-item-has-children > a::after { content: "›"; margin-left: 4px; opacity: 0.6; }
.primary-nav .sub-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s var(--ease);
}
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu a { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--font-mono); font-size: 0.86rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.header-phone:hover { color: var(--coral); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper-2); position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; width: 18px; height: 2px; background: var(--ink); transform: translateX(-50%); transition: 0.25s var(--ease); }
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--text-invert); overflow: hidden; padding-block: clamp(72px, 11vw, 150px); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.7; mask-image: radial-gradient(120% 80% at 80% 0%, #000 30%, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(closest-side, rgba(255,91,53,0.30), transparent 70%); filter: blur(10px); pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-eyebrow { color: var(--coral); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); color: #fff; max-width: 14ch; }
.hero h1 .accent { color: var(--coral); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-invert-soft); max-width: 52ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 28px; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--font-display); font-size: 1.8rem; color: #fff; line-height: 1; }
.hero-trust small { font-size: 0.8rem; color: var(--text-invert-soft); margin-top: 4px; }

/* Hero code card */
.hero-card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-card .card-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line-dark); }
.hero-card .dot { width: 11px; height: 11px; border-radius: 50%; background: #2d3a47; }
.hero-card .dot:nth-child(1) { background: #ff5f56; }
.hero-card .dot:nth-child(2) { background: #ffbd2e; }
.hero-card .dot:nth-child(3) { background: #27c93f; }
.hero-card .card-bar small { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-invert-soft); }
.hero-card pre { margin: 0; padding: 22px; font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.85; color: #c8d4df; overflow-x: auto; }
.hero-card .c-key { color: #ff8a6b; }
.hero-card .c-str { color: #7fd6c8; }
.hero-card .c-num { color: #ffd479; }
.hero-card .c-com { color: #5e6f7d; }
.hero-card .c-fn { color: #8ab4ff; }

/* ---------- Logo marquee ---------- */
.marquee { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 22px 0; overflow: hidden; background: var(--ink); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-mono); font-size: 0.92rem; letter-spacing: 0.04em; color: var(--text-invert-soft); white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "✦"; color: var(--coral); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Intro / value ---------- */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.value-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.value-text p { color: var(--text-soft); font-size: 1.08rem; }
.value-points { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: 14px; }
.value-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.value-points li::before { content: "✓"; color: var(--coral); font-weight: 800; flex: none; }
.value-figure { position: relative; }
.value-figure .vf-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-md); }
.value-figure .vf-card + .vf-card { margin-top: 18px; transform: translateX(28px); }
.value-figure .vf-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.value-figure .vf-card p { color: var(--text-soft); margin: 0; font-size: 0.96rem; }
.value-figure .vf-num { font-family: var(--font-mono); color: var(--coral); font-size: 0.78rem; font-weight: 600; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--coral); transition: width 0.35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--coral-soft); color: var(--coral-600); display: grid; place-items: center; margin-bottom: 20px; }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.service-card p { color: var(--text-soft); font-size: 0.97rem; flex: 1; }
.service-link { margin-top: 16px; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; color: var(--coral); letter-spacing: 0.04em; display: inline-flex; gap: 6px; align-items: center; }
.service-card:hover .service-link { gap: 12px; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; padding: 16px; border-radius: var(--radius); }
.stat b { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.6rem); color: #fff; line-height: 1; display: block; letter-spacing: -0.04em; }
.stat b .plus { color: var(--coral); }
.stat span { display: block; margin-top: 10px; color: var(--text-invert-soft); font-weight: 500; }

/* ---------- Work / portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.work-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); display: block; }
.work-card .work-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-3); }
.work-card .work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-media img { transform: scale(1.05); }
.work-body { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; }
.work-body h3 { font-size: 1.25rem; margin: 0; }
.work-body .work-tag { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-soft); }
.work-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none; transition: 0.3s var(--ease); }
.work-card:hover .work-arrow { background: var(--coral); border-color: var(--coral); color: #fff; transform: rotate(-45deg); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 26px; }
.why-card .why-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,91,53,0.14); color: var(--coral); display: grid; place-items: center; margin-bottom: 18px; }
.why-card .why-ic svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.12rem; color: #fff; margin-bottom: 6px; }
.why-card p { color: var(--text-invert-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-step { position: relative; padding: 28px 24px; border-left: 1px solid var(--line); }
.process-step:first-child { border-left: none; }
.process-step .step-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--coral); font-weight: 600; }
.process-step h3 { font-size: 1.18rem; margin: 14px 0 8px; }
.process-step p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }
.process-step .step-dot { position: absolute; left: -6px; top: 30px; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); }
.process-step:first-child .step-dot { left: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testi-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.5; color: var(--coral); opacity: 0.25; height: 28px; }
.testi-card blockquote { margin: 0 0 22px; font-size: 1.06rem; line-height: 1.6; }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.testi-meta b { display: block; font-size: 0.98rem; }
.testi-meta span { font-size: 0.84rem; color: var(--text-soft); }

/* ---------- Blog ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16 / 9; background: var(--ink-3); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-thumb--placeholder { display: grid; place-items: center; color: var(--text-invert-soft); font-family: var(--font-mono); font-size: 0.8rem; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-family: var(--font-mono); font-size: 0.74rem; color: var(--coral); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.post-card h3 { font-size: 1.18rem; line-height: 1.25; margin-bottom: 10px; }
.post-card h3 a:hover { color: var(--coral); }
.post-card .excerpt { color: var(--text-soft); font-size: 0.94rem; flex: 1; }
.post-card .read-more { margin-top: 16px; font-weight: 600; font-size: 0.9rem; color: var(--ink); display: inline-flex; gap: 6px; }
.post-card .read-more:hover { color: var(--coral); gap: 12px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--coral); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px); background-size: 22px 22px; opacity: 0.5; }
.cta-band-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-invert-soft); padding-top: clamp(56px, 8vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-invert-soft); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--text-invert); font-size: 0.94rem; opacity: 0.85; transition: 0.2s; }
.footer-col a:hover { color: var(--coral); opacity: 1; }
.footer-contact p { font-size: 0.94rem; line-height: 1.7; }
.footer-contact a { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--text-invert); transition: 0.25s var(--ease); }
.footer-social a:hover { background: var(--coral); border-color: var(--coral); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-offices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; border-bottom: 1px solid var(--line-dark); }
.footer-office h5 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 6px; }
.footer-office p { font-size: 0.85rem; line-height: 1.6; margin: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 0; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom .badges { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-bottom .badges span { font-family: var(--font-mono); font-size: 0.74rem; opacity: 0.7; }

/* ---------- Page header (interior pages) ---------- */
.page-hero { background: var(--ink); color: #fff; padding-block: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(120% 90% at 90% 0%, #000 30%, transparent 75%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero p { color: var(--text-invert-soft); max-width: 60ch; font-size: 1.1rem; }
.breadcrumbs { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-invert-soft); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Article / single ---------- */
.article-wrap { max-width: 760px; margin-inline: auto; }
.article-content { font-size: 1.08rem; line-height: 1.75; color: var(--text); }
.article-content h2 { font-size: 1.8rem; margin-top: 1.8em; }
.article-content h3 { font-size: 1.35rem; margin-top: 1.5em; }
.article-content img { border-radius: var(--radius-sm); margin: 1.6em 0; }
.article-content a { color: var(--coral-600); text-decoration: underline; text-underline-offset: 3px; }
.article-content ul, .article-content ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.article-content li { margin-bottom: 0.5em; }
.article-content blockquote { border-left: 3px solid var(--coral); padding-left: 1.2em; margin: 1.6em 0; font-style: italic; color: var(--text-soft); }
.article-content pre { background: var(--ink); color: #c8d4df; padding: 20px; border-radius: var(--radius-sm); overflow-x: auto; font-family: var(--font-mono); font-size: 0.88rem; }
.article-content code { font-family: var(--font-mono); font-size: 0.9em; background: rgba(12,17,24,0.06); padding: 0.15em 0.4em; border-radius: 5px; }
.article-content pre code { background: none; padding: 0; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-invert-soft); margin-top: 16px; }
.article-feature { border-radius: var(--radius); overflow: hidden; margin-block: clamp(28px, 5vw, 48px); }

/* ---------- Forms ---------- */
.ws-form { display: grid; gap: 16px; }
.ws-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ws-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.ws-form input, .ws-form select, .ws-form textarea {
  width: 100%; padding: 0.85em 1em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.96rem; background: var(--paper-2); color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
}
.ws-form input:focus, .ws-form select:focus, .ws-form textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px var(--ring); }
.ws-form textarea { min-height: 130px; resize: vertical; }

.quote-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 44px; height: 44px; display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; font-weight: 600; font-size: 0.92rem; }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination a:hover { border-color: var(--coral); color: var(--coral); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 999; }
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .services-grid, .posts-grid, .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-left: none; border-top: 1px solid var(--line); }
  .process-step .step-dot { left: 0; top: -6px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-offices { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 76px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 28px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: 0.28s var(--ease);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .primary-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .primary-nav a { padding: 0.85em 0.6em; font-size: 1.05rem; }
  .primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; background: transparent; }
  .header-phone { display: none; }
}
@media (max-width: 720px) {
  .value-grid, .services-grid, .stats-grid, .work-grid, .posts-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .ws-form .row { grid-template-columns: 1fr; }
  .value-figure .vf-card + .vf-card { transform: none; }
  .footer-top, .footer-offices { grid-template-columns: 1fr; }
  .stat b { font-size: 3.4rem; }
}

/* =========================================================================
   Additional components — search, 404, service & contact pages, comments
   ========================================================================= */

/* ---------- Accessibility helper ---------- */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; padding: 0; overflow: hidden; position: absolute !important; word-wrap: normal !important;
}
body.nav-open { overflow: hidden; }

/* ---------- Search form ---------- */
.ws-search { width: 100%; }
.ws-search-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 8px 8px 8px 16px; box-shadow: var(--shadow-sm);
}
.ws-search-row svg { width: 20px; height: 20px; color: var(--text-soft); flex: none; }
.ws-search-input {
  flex: 1; border: 0; background: transparent; font: inherit; color: var(--text);
  padding: 10px 4px; outline: none; min-width: 0;
}
.ws-search-submit { flex: none; }
.page-hero-search { margin-top: 22px; max-width: 540px; }

/* ---------- Empty / no-results state ---------- */
.empty-state { text-align: center; max-width: 560px; margin: 0 auto; padding: clamp(32px, 6vw, 72px) 0; }
.empty-state h2 { font-family: var(--font-display); margin: 8px 0 12px; }
.empty-state a { color: var(--coral-600); font-weight: 600; }

/* ---------- 404 ---------- */
.error-404 { padding: clamp(56px, 9vw, 120px) 0; }
.error-404-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.error-404-code {
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(96px, 22vw, 220px); letter-spacing: -0.04em; margin: 8px 0 4px;
}
.error-404-code .accent { color: var(--coral); }
.error-404-inner h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 12px; }
.error-404-inner > p { color: var(--text-soft); max-width: 48ch; margin: 0 auto 26px; }
.error-404-search { max-width: 480px; margin: 0 auto 30px; }
.error-404 .hero-actions { justify-content: center; }
.error-404-links { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.error-404-links ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; }
.error-404-links a { color: var(--text); font-weight: 600; border-bottom: 2px solid var(--coral-soft); padding-bottom: 2px; }
.error-404-links a:hover { border-color: var(--coral); }

/* ---------- Service landing ---------- */
.service-hero-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 40px; align-items: center; }
.service-hero-text h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.05; margin: 10px 0 16px; letter-spacing: -0.02em; }
.service-hero-lead { color: var(--text-soft); font-size: 1.12rem; max-width: 52ch; margin: 0 0 26px; }
.service-hero-icon { display: flex; justify-content: center; }
.service-hero-icon svg {
  width: clamp(120px, 16vw, 184px); height: auto; color: var(--coral);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
}

/* ---------- Contact ---------- */
.contact-hero-lead { color: var(--text-soft); max-width: 56ch; font-size: 1.12rem; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-form-col {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 38px); box-shadow: var(--shadow-md);
}
.ws-form-note { font-size: 0.82rem; color: var(--text-soft); margin: 4px 0 0; }
.contact-aside { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--coral-soft); color: var(--coral-600); border-radius: 12px;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card .eyebrow { margin: 0 0 2px; }
.contact-card a { color: var(--text); font-weight: 700; }
.contact-card a:hover { color: var(--coral-600); }
.contact-offices { margin-top: clamp(48px, 7vw, 88px); }
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.office-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.office-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 8px; }
.office-card p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Comments ---------- */
.comments-area { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.comments-title { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 24px; }
.comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.comment-list ol { list-style: none; }
.comment-list li { margin: 0 0 22px; }
.comment-body { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.comment-author { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.comment-author img { border-radius: 50%; }
.comment-author .says { display: none; }
.comment-meta { font-size: 0.82rem; color: var(--text-soft); margin: 4px 0 10px; }
.comment-meta a { color: var(--text-soft); }
.comment-reply-link { font-weight: 600; color: var(--coral-600); font-size: 0.88rem; }
.comment-reply-title { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 18px; }
.comment-form { max-width: 640px; }
.no-comments { color: var(--text-soft); }
.children { list-style: none; margin: 18px 0 0; padding: 0 0 0 clamp(16px, 3vw, 34px); border-left: 2px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero-icon { order: -1; justify-content: flex-start; }
  .service-hero-icon svg { width: 110px; padding: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .offices-grid { grid-template-columns: 1fr; }
  .ws-search-row { flex-wrap: wrap; }
  .ws-search-submit { width: 100%; }
}

/* =========================================================================
   Expertise page
   ========================================================================= */
.expertise-hero-lead { color: var(--text-soft); font-size: 1.15rem; max-width: 60ch; margin: 0 0 26px; }
.expertise-hero .hero-actions { margin-top: 4px; }

.expertise-intro { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.expertise-intro-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.1; margin: 8px 0 0; letter-spacing: -0.02em; }
.expertise-intro-body p { color: var(--text-soft); font-size: 1.05rem; margin: 0 0 18px; }
.expertise-intro-body p:last-child { margin-bottom: 0; }

.expertise-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.expertise-split h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 8px 0 22px; letter-spacing: -0.01em; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; font-size: 1.02rem; }
.check-ico { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--coral-soft); color: var(--coral-600); display: grid; place-items: center; }
.check-ico svg { width: 17px; height: 17px; }

.stack-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stack-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-weight: 600; font-size: 0.96rem; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.stack-chip:hover { transform: translateY(-3px); border-color: var(--coral); }
.stack-chip svg { width: 20px; height: 20px; color: var(--coral-600); flex: none; }

/* =========================================================================
   Blog index
   ========================================================================= */
.blog-hero-lead { color: var(--text-soft); font-size: 1.12rem; max-width: 64ch; }

.blog-feature {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; align-items: stretch;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 40px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-feature-media { position: relative; min-height: 320px; background: var(--ink); }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-feature-media .post-thumb--placeholder { width: 100%; height: 100%; min-height: 320px; }
.blog-feature-body { padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; align-items: flex-start; }
.blog-feature-body h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.12; margin: 12px 0 12px; letter-spacing: -0.01em; }
.blog-feature-body p { color: var(--text-soft); margin: 0 0 22px; }
.post-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral-600);
  background: var(--coral-soft); border-radius: 100px; padding: 5px 12px;
}
.post-meta .dot { color: var(--line); margin: 0 2px; }
.post-meta a { color: var(--text-soft); }
.post-more {
  margin-top: auto; font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600;
  color: var(--coral); letter-spacing: 0.03em; display: inline-flex; gap: 8px; align-items: center;
}
.post-more svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.blog-feature:hover .post-more svg { transform: translateX(4px); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 860px) {
  .expertise-intro { grid-template-columns: 1fr; }
  .expertise-split { grid-template-columns: 1fr; gap: 40px; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 220px; }
}
@media (max-width: 560px) {
  .stack-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Gravity Forms — themed to match .ws-form (contact page form #1)
   ========================================================================= */
.ws-gf .gform_wrapper { margin: 0; }
.ws-gf .gform_wrapper form { display: block; }
.ws-gf .gform_heading { display: none; }

/* Field spacing (works with GF gravity-theme grid + legacy markup) */
.ws-gf .gform_fields { display: grid; gap: 16px; grid-template-columns: 1fr; }
.ws-gf .gfield { margin: 0 !important; padding: 0 !important; }

/* Labels */
.ws-gf .gfield_label,
.ws-gf legend.gfield_label {
  display: block; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; color: var(--text); margin: 0 0 6px;
}
.ws-gf .gfield_required { color: var(--coral-600); margin-left: 2px; }

/* Inputs / selects / textareas */
.ws-gf input[type="text"],
.ws-gf input[type="email"],
.ws-gf input[type="tel"],
.ws-gf input[type="url"],
.ws-gf input[type="number"],
.ws-gf select,
.ws-gf textarea {
  width: 100%; font: inherit; color: var(--text); background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.ws-gf textarea { min-height: 130px; resize: vertical; }
.ws-gf select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a5a68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.ws-gf input:focus,
.ws-gf select:focus,
.ws-gf textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px var(--ring);
}
.ws-gf ::placeholder { color: #9aa7b2; }

/* Two-column rows on wider screens for GF half-width fields */
@media (min-width: 620px) {
  .ws-gf .gform_fields { grid-template-columns: 1fr 1fr; }
  .ws-gf .gfield--width-full,
  .ws-gf .gfield.gf_full,
  .ws-gf .gfield[class*="gfield--type-textarea"],
  .ws-gf .gfield[class*="gfield--type-section"],
  .ws-gf .gfield[class*="captcha"],
  .ws-gf .gform_footer { grid-column: 1 / -1; }
}

/* Submit button */
.ws-gf .gform_footer { margin: 6px 0 0; padding: 0; }
.ws-gf .gform_footer input[type="submit"],
.ws-gf .gform_footer button,
.ws-gf .gform_page_footer input[type="submit"] {
  font: inherit; font-weight: 600; cursor: pointer;
  background: var(--coral); color: #fff; border: 0;
  padding: 14px 26px; border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.ws-gf .gform_footer input[type="submit"]:hover,
.ws-gf .gform_footer button:hover { background: var(--coral-600); transform: translateY(-2px); }

/* Validation + messages */
.ws-gf .gfield_description.validation_message,
.ws-gf .gfield_validation_message {
  color: var(--coral-600); font-size: 0.82rem; margin-top: 6px;
}
.ws-gf .gfield_error input,
.ws-gf .gfield_error select,
.ws-gf .gfield_error textarea { border-color: var(--coral); }
.ws-gf .gform_validation_errors {
  background: var(--coral-soft); border: 1px solid var(--coral);
  border-radius: var(--radius-sm); padding: 14px 16px; margin: 0 0 18px; color: var(--text);
}
.ws-gf .gform_confirmation_message {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px; color: var(--text);
}
.ws-gf .ginput_container { margin-top: 0; }
.ws-gf .gform_required_legend { display: none; }

/* =========================================================================
   Corporate Information page
   ========================================================================= */
.corporate-hero-lead { color: var(--text-soft); font-size: 1.15rem; max-width: 62ch; margin: 0 0 26px; }

.corporate-facts { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.stats-grid--4 { grid-template-columns: repeat(4, 1fr); }

.corporate-about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.corporate-about-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.1; margin: 8px 0 0; letter-spacing: -0.02em; }
.corporate-about-body p { color: var(--text-soft); font-size: 1.05rem; margin: 0 0 22px; }
.corporate-about-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 16px; }

@media (max-width: 860px) {
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .corporate-about { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stats-grid--4 { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   Engagement models (Expertise / hire developers)
   ========================================================================= */
.engage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.engage-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.engage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.engage-card--featured { background: var(--ink); border-color: var(--ink); color: var(--text-invert); }
.engage-card--featured h3 { color: #fff; }
.engage-card--featured p { color: var(--text-invert-soft); }
.engage-icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--coral-soft);
  color: var(--coral-600); display: grid; place-items: center; margin-bottom: 20px;
}
.engage-icon svg { width: 26px; height: 26px; }
.engage-card--featured .engage-icon { background: rgba(255,255,255,0.08); color: var(--coral); }
.engage-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 10px; }
.engage-card p { color: var(--text-soft); font-size: 0.97rem; margin: 0; }
.engage-tag {
  position: absolute; top: 18px; right: 18px; font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); background: var(--coral); border-radius: 100px; padding: 5px 11px;
}
.engage-cta { text-align: center; margin-top: 34px; }

@media (max-width: 860px) {
  .engage-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Contact page — info cards + quote block (matches provided layout)
   ========================================================================= */
.contact-cards-section { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(24px, 3vw, 40px); }
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-ic {
  flex: none; width: 58px; height: 58px; border-radius: 14px;
  background: var(--coral); color: #fff; display: grid; place-items: center;
}
.info-ic svg { width: 26px; height: 26px; }
.info-txt { color: var(--text); font-style: normal; font-weight: 600; line-height: 1.45; font-size: 0.98rem; }
a.info-txt:hover { color: var(--coral-600); }

/* Quote block */
.quote-grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.quote-main h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 8px; letter-spacing: -0.02em; }
.quote-sub { color: var(--text-soft); font-size: 1.05rem; max-width: 46ch; margin: 0 0 26px; }

.quote-aside {
  background: var(--ink); color: var(--text-invert);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.quote-aside::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 22px 22px;
}
.quote-aside > * { position: relative; }
.quote-aside h3 { font-family: var(--font-display); color: #fff; font-size: 1.4rem; margin: 0 0 20px; }

.check-list--light { gap: 13px; margin-bottom: 22px; }
.check-list--light li { color: var(--text-invert); font-weight: 500; align-items: center; }
.check-list--light .check-ico {
  width: 24px; height: 24px; border-radius: 7px; background: rgba(255,91,53,0.16); color: var(--coral);
}
.check-list--light .check-ico svg { width: 15px; height: 15px; }

.quote-aside-email { color: var(--text-invert-soft); font-size: 0.95rem; margin: 0 0 22px; }
.quote-aside-email a { color: var(--coral); font-weight: 600; }
.quote-aside-email a:hover { text-decoration: underline; }

.quote-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); line-height: 0; }
.quote-map iframe { display: block; width: 100%; }

@media (max-width: 920px) {
  .contact-row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .quote-grid { grid-template-columns: 1fr; }
}
