/* Code Prisma — public site styles. Mobile-first, blue + green on white. */

:root {
    --blue: #2374c7;
    --blue-dark: #1b59a0;
    --green: #57bf5a;
    --green-dark: #46a24a;
    --navy: #1f3a5f;
    --ink: #1c2530;
    --muted: #5b6675;
    --line: #e6eaf0;
    --bg: #ffffff;
    --bg-soft: #f5f8fc;
    --radius: 12px;
    --container: 1140px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
p { margin: 0 0 1rem; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}
.container.narrow { max-width: 760px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: .8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand img { width: 160px; height: auto; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.site-nav a { color: var(--ink); font-weight: 600; }
.site-nav a:hover { color: var(--blue); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .4rem; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #eaf2fb 0%, #effaf0 100%);
    padding-block: clamp(3rem, 8vw, 6rem);
}
.hero .eyebrow {
    text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
    font-weight: 700; color: var(--green-dark); margin-bottom: 1rem;
}
.hero h1 { max-width: 18ch; }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); max-width: 56ch; }
.hero .btn { margin: .4rem .5rem .4rem 0; }

/* Generic section — consistent, slightly tighter vertical rhythm */
.section { padding-block: clamp(2rem, 4.5vw, 3.5rem); }
.section.soft { background: var(--bg-soft); }
.lead { font-size: 1.15rem; color: var(--muted); }

/* Footer */
.site-footer { background: var(--navy); color: #cdd8e6; margin-top: 0; }
.footer-inner {
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    justify-content: space-between; align-items: center; padding-block: 2.5rem;
}
.footer-brand img { width: 160px; margin-bottom: .6rem; }
.footer-brand p { margin: 0; color: #9fb2c9; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: #cdd8e6; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1rem; color: #8aa0ba; }

/* Responsive */
@media (max-width: 820px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute; inset: 100% 0 auto 0;
        background: #fff; border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .25s ease;
    }
    .site-nav.open { max-height: 70vh; }
    .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1rem; }
    .site-nav li { border-bottom: 1px solid var(--line); }
    .site-nav li:last-child { border: 0; padding-top: .75rem; }
    .site-nav a { display: block; padding: .85rem 0; }
}

/* ============================================================
   Reusable section components
   ============================================================ */

.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head .eyebrow {
    text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
    font-weight: 700; color: var(--green-dark); margin-bottom: .6rem;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.75rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(31,58,95,.45); border-color: #cfe0f3; }
.card .icon {
    width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
    background: #eef5ff; color: var(--blue);
    font-size: 1.55rem; margin-bottom: 1.1rem;
    box-shadow: inset 0 0 0 1px #d7e6fb, 0 8px 18px -12px rgba(35,116,199,.45);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.card:hover .icon {
    background: linear-gradient(135deg, var(--blue), var(--green)); color: #fff;
    transform: translateY(-2px) rotate(-3deg);
    box-shadow: 0 14px 24px -10px rgba(35,116,199,.55);
}
.card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; }
.card .more { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--blue); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--blue);
    background: linear-gradient(135deg, var(--blue), var(--green)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { color: var(--muted); font-weight: 600; font-size: .95rem; }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: 0 24px 60px -30px rgba(31,58,95,.5); width: 100%; }
.split h2 { margin-bottom: 1rem; }
.checklist { list-style: none; padding: 0; margin: 1.25rem 0; }
.checklist li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; color: var(--ink); }
.checklist li::before {
    content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem;
    background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem;
}

/* Process steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step {
    position: relative; padding: 1.6rem 1.3rem; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(31,58,95,.45); border-color: #cfe0f3; }
.step .n {
    counter-increment: step; width: 44px; height: 44px; border-radius: 50%;
    background: #eaf2fb; color: var(--blue); font-weight: 800; display: grid; place-items: center; margin-bottom: .8rem;
}
.step .n::before { content: counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; border-radius: 18px; padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7e6f8; max-width: 56ch; margin: 0 auto 1.5rem; font-size: 1.1rem; }
.cta-band .btn-primary { background: #fff; color: var(--blue); }
.cta-band .btn-primary:hover { background: #eaf2fb; color: var(--blue-dark); }

/* Testimonial */
.testimonial { background: var(--bg-soft); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--line); }
.testimonial blockquote { margin: 0 0 1rem; font-size: 1.15rem; color: var(--navy); line-height: 1.55; }
.testimonial .who { font-weight: 700; }
.testimonial .role { color: var(--muted); font-size: .9rem; }

/* Pills / badges */
.pill { display: inline-block; padding: .35rem .85rem; border-radius: 999px; background: #eaf2fb; color: var(--blue-dark); font-weight: 600; font-size: .85rem; margin: .2rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.form { display: grid; gap: 1rem; }
.form label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .35rem; color: var(--navy); }
.form input, .form textarea, .form select {
    width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px;
    font: inherit; background: #fff; color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.form textarea { min-height: 140px; resize: vertical; }
.contact-info .item { display: flex; gap: .8rem; margin-bottom: 1.25rem; }
.contact-info .item .ic { color: var(--blue); font-weight: 700; }
.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1rem; }
.alert-success { background: #e7f7e8; color: #1f7a32; border: 1px solid #b9e6bd; }
.alert-error { background: #fdeaea; color: #b3261e; border: 1px solid #f4c4c1; }

.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .text-center { text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .split, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .split.reverse .split-media { order: 0; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4, .stats, .steps { grid-template-columns: 1fr; }
    .stats { gap: 1.75rem; }
}

/* ============================================================
   Blog / post + testimonials + FAQ
   ============================================================ */
.post-hero-img { width: 100%; border-radius: var(--radius); box-shadow: 0 24px 60px -30px rgba(31,58,95,.5); }
.post-body { font-size: 1.08rem; }
.post-body h2 { margin-top: 2rem; }
.post-body h3 { margin-top: 1.5rem; }
.post-body ul, .post-body ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.post-body li { margin-bottom: .5rem; }
.post-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--blue); }

/* Testimonials grid */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.t-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.t-card .stars { color:#f5b301; margin-bottom:.6rem; letter-spacing:2px; }
.t-card blockquote { margin:0 0 1rem; color:var(--ink); font-size:1.02rem; line-height:1.6; }
.t-card .who { font-weight:700; color:var(--navy); }
.t-card .role { color:var(--muted); font-size:.88rem; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border:1px solid var(--line); border-radius:10px; padding:1rem 1.25rem; margin-bottom:.85rem; background:#fff; }
.faq summary { cursor:pointer; font-weight:600; color:var(--navy); list-style:none; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; float:right; color:var(--blue); font-weight:700; }
.faq details[open] summary::after { content:"–"; }
.faq details p { margin:.8rem 0 0; color:var(--muted); }

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

/* ============================================================
   Testimonials slider
   ============================================================ */
.fiverr-badge { display:inline-flex; align-items:center; gap:.5rem; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:.5rem 1rem; font-weight:600; color:var(--navy); box-shadow:0 6px 18px -12px rgba(31,58,95,.4); }
.fiverr-badge .stars { color:#f5b301; letter-spacing:1px; }
.fiverr-badge .g { color:#1dbf73; }

.slider { position: relative; }
.slider-track {
  display:flex; gap:1.25rem; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding:.5rem .25rem 1.25rem; -ms-overflow-style:none; scrollbar-width:none;
}
.slider-track::-webkit-scrollbar { display:none; }
.slider-track .t-card { flex:0 0 100%; scroll-snap-align:start; display:flex; flex-direction:column; }
.slider-track .t-card blockquote { flex:1; }
@media (min-width:760px){ .slider-track .t-card { flex-basis:calc(50% - .625rem); } }
@media (min-width:1040px){ .slider-track .t-card { flex-basis:calc(33.333% - .834rem); } }
.slider-btn {
  position:absolute; top:42%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  border:1px solid var(--line); background:#fff; color:var(--blue); font-size:1.5rem; line-height:1; cursor:pointer;
  z-index:2; box-shadow:0 8px 22px -10px rgba(31,58,95,.45);
}
.slider-btn:hover { background:var(--blue); color:#fff; }
.slider-btn.prev { left:-10px; } .slider-btn.next { right:-10px; }
@media (max-width:820px){ .slider-btn { display:none; } }

/* ============================================================
   Team + Portfolio
   ============================================================ */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.75rem; text-align:center; }
.tm-photo, .tm-avatar { width:110px; height:110px; border-radius:50%; margin:0 auto .9rem; }
.tm-photo { object-fit:cover; }
.tm-avatar { display:grid; place-items:center; background:linear-gradient(135deg,var(--blue),var(--green)); color:#fff; font-size:2rem; font-weight:800; }
.tm-name { font-weight:700; color:var(--navy); font-size:1.1rem; }
.tm-role { color:var(--green-dark); font-weight:600; font-size:.92rem; }
.tm-bio { color:var(--muted); font-size:.9rem; margin-top:.6rem; }
@media (max-width:980px){ .team-grid { grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .team-grid { grid-template-columns:1fr;} }

.pf-filter { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-bottom:2rem; }
.pf-filter button { border:1px solid var(--line); background:#fff; color:var(--navy); font-weight:600; padding:.5rem 1.1rem; border-radius:999px; cursor:pointer; font:inherit; }
.pf-filter button:hover { border-color:var(--blue); color:var(--blue); }
.pf-filter button.active { background:var(--blue); color:#fff; border-color:var(--blue); }
.pf-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.pf-item { display:block; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; transition:transform .18s, box-shadow .18s; }
.pf-item:hover { transform:translateY(-4px); box-shadow:0 18px 40px -24px rgba(31,58,95,.45); }
.pf-item img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.pf-meta { display:flex; align-items:center; justify-content:space-between; gap:.5rem; padding:.85rem 1rem; }
.pf-title { font-weight:600; color:var(--navy); font-size:.95rem; }
.pf-item.hide { display:none; }
@media (max-width:980px){ .pf-grid { grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .pf-grid { grid-template-columns:1fr;} }

/* ============================================================
   Homepage hero (two-column) + tighter spacing + new footer
   ============================================================ */
.hero-home { padding-block: clamp(2rem, 4vw, 3.25rem); }
.hero-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:2.5rem; align-items:center; }
.hero-grid .hero-copy h1 { max-width: 16ch; }
.hero-figure img { width:100%; border-radius:14px; box-shadow:0 30px 70px -34px rgba(31,58,95,.55); }
@media (max-width:900px){
  .hero-grid { grid-template-columns:1fr; gap:1.5rem; }
  .hero-figure { order:-1; max-width:520px; }
}

.stats-band { background:var(--bg-soft); padding-block:1.75rem; }

/* Cutout photo (transparent PNG) — no box shadow, subtle drop shadow */
.split-media-photo img { box-shadow:none; filter: drop-shadow(0 22px 30px rgba(31,58,95,.28)); border-radius:0; }

.nav-login { color:var(--blue) !important; font-weight:700; }

/* Footer (multi-column, like reference) */
.site-footer { background:var(--navy); color:#cdd8e6; margin-top:0; }
.footer-top {
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap:2rem;
  padding-block:3rem 2rem;
}
.footer-brand img { width:180px; margin-bottom:1rem; }
.footer-brand p { color:#9fb2c9; max-width:34ch; font-size:.95rem; }
.footer-social { display:flex; gap:1rem; margin-top:1rem; }
.footer-social a { color:#cdd8e6; font-weight:600; }
.footer-social a:hover { color:#fff; }
.footer-col h4 { color:#fff; font-size:1rem; margin:0 0 1rem; }
.footer-col a { display:block; color:#cdd8e6; padding:.3rem 0; font-size:.95rem; }
.footer-col a:hover { color:#fff; }
.footer-contact p { color:#9fb2c9; margin:0 0 .5rem; font-size:.95rem; }
.footer-contact .btn { margin-top:.8rem; padding:.6rem 1.6rem; }
.footer-bottom {
  display:flex; flex-wrap:wrap; gap:.5rem; justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.1); padding-block:1.1rem; color:#8aa0ba;
}
@media (max-width:900px){
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
}
@media (max-width:560px){ .footer-top { grid-template-columns:1fr; } }

/* ============================================================
   Pricing cards
   ============================================================ */
.pricing-grid { align-items: stretch; }
.price-card {
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:2rem 1.6rem; display:flex; flex-direction:column; position:relative;
}
.price-card h3 { color:var(--navy); font-size:1.3rem; }
.price-card .price { font-size:2.4rem; font-weight:800; color:var(--blue); margin:.2rem 0 .9rem; }
.price-card .price span { font-size:.85rem; font-weight:600; color:var(--muted); margin-left:.3rem; }
.price-card > p { color:var(--muted); margin-bottom:1rem; }
.price-card .checklist { flex:1; margin:0 0 1.5rem; }
.price-card .checklist li { font-size:.95rem; }
.price-card.featured { border:2px solid var(--blue); box-shadow:0 24px 50px -28px rgba(35,116,199,.5); }
.price-card .badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--blue); color:#fff; font-size:.78rem; font-weight:700;
  padding:.3rem .9rem; border-radius:999px; white-space:nowrap;
}
.price-card .btn { width:100%; text-align:center; }

/* ============================================================
   Multi-step contact wizard
   ============================================================ */
.wizard-progress { display:flex; gap:.6rem; margin-bottom:1.5rem; }
.wizard-progress span {
  width:34px; height:34px; border-radius:50%; display:grid; place-items:center;
  background:#eef2f7; color:var(--muted); font-weight:700; border:2px solid transparent;
}
.wizard-progress span.active { background:var(--blue); color:#fff; }
.wizard-step h3 { color:var(--navy); margin-bottom:1rem; }
.wizard-step > div { margin-bottom:1rem; }
.wizard-nav { display:flex; justify-content:space-between; align-items:center; gap:1rem; margin-top:.5rem; }
.wizard-nav [data-back] { background:none; border:0; color:var(--muted); font-weight:600; cursor:pointer; font:inherit; }
.wizard-nav [data-back]:hover { color:var(--blue); }
.form .invalid { border-color:var(--error) !important; outline:2px solid var(--error); }

/* ============================================================
   Design polish (global) — richer, more attractive
   ============================================================ */
html { scroll-behavior: smooth; }
.btn-primary { box-shadow: 0 12px 24px -12px rgba(35,116,199,.6); }
.section-head h2 { position: relative; }
.eyebrow { display:inline-block; }
.section-head .eyebrow {
  background:#eaf2fb; color:var(--blue-dark); padding:.35rem .9rem; border-radius:999px;
}
.gradient-text { background:linear-gradient(135deg,var(--blue),var(--green)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* Two-column feature list */
.feature-list { columns:2; column-gap:2.5rem; list-style:none; padding:0; margin:1.25rem 0; }
.feature-list li { break-inside:avoid; position:relative; padding-left:1.9rem; margin-bottom:.9rem; color:var(--ink); }
.feature-list li::before { content:"✓"; position:absolute; left:0; top:.1rem; width:1.35rem; height:1.35rem;
  background:var(--green); color:#fff; border-radius:50%; display:grid; place-items:center; font-size:.78rem; }
@media (max-width:680px){ .feature-list { columns:1; } }

/* Comparison table */
.compare { width:100%; border-collapse:collapse; background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.compare th, .compare td { padding:.95rem 1.1rem; text-align:left; border-bottom:1px solid var(--line); }
.compare thead th { background:var(--navy); color:#fff; font-weight:600; }
.compare tbody tr:last-child td { border-bottom:0; }
.compare .yes { color:var(--green-dark); font-weight:700; }
.compare .no { color:#b3261e; font-weight:700; }
.compare .col-us { background:#eaf7ec; }
.compare thead .col-us { background:var(--green-dark); color:#fff; }  /* header stays readable */

/* Big results band */
.results-band { background:linear-gradient(135deg,var(--navy),var(--blue)); color:#fff; border-radius:18px; padding:clamp(2rem,5vw,3rem); }
.results-band .stats .num { color:#fff; -webkit-text-fill-color:#fff; }
.results-band .stat .label { color:#cfe0f3; }

/* Logo/trust strip */
.trust-strip { display:flex; flex-wrap:wrap; gap:1rem 2.5rem; align-items:center; justify-content:center; color:var(--muted); font-weight:600; }
.trust-strip span { font-size:.95rem; }

/* Scroll reveal (progressive — visible if JS off) */
body.reveal-on .reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
body.reveal-on .reveal.in { opacity:1; transform:none; }

/* ============================================================
   Content-depth helpers
   ============================================================ */
.section.pad-sm { padding-block: clamp(1.5rem, 3vw, 2.25rem); }
.hero-trust { margin-top:1.25rem; color:var(--muted); font-size:.95rem; }
.hero-trust-top { margin-top:0; margin-bottom:1.1rem; }
.hero-trust .stars { color:#f5b301; letter-spacing:1px; margin-right:.4rem; }
.trust-lead { text-align:center; color:var(--muted); font-weight:600; margin-bottom:1.25rem; }

/* Horizontal scroll wrapper for wide tables on mobile */
.table-wrap { width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.table-wrap .compare { min-width:560px; }

/* Prose blocks for long-form page copy */
.prose { max-width:760px; }
.prose p { color:var(--ink); font-size:1.08rem; }
.prose h2 { margin-top:2rem; }
.prose h3 { margin-top:1.5rem; color:var(--navy); }
.prose ul { padding-left:1.3rem; margin-bottom:1.2rem; }
.prose li { margin-bottom:.5rem; color:var(--ink); }
.lead-block { font-size:1.15rem; color:var(--muted); max-width:760px; }

/* Two-column rich text */
.two-col { columns:2; column-gap:2.5rem; }
.two-col p { break-inside:avoid; }
@media (max-width:780px){ .two-col { columns:1; } }

/* ============================================================
   2nd-round modifications
   ============================================================ */

/* Header: logo flush-left, CTA flush-right, roomier bar */
.header-inner { max-width: 1240px; }
.site-nav ul { gap: 1.35rem; }
.site-nav .nav-extra { margin-left: .25rem; }
.site-nav .nav-extra:first-of-type { margin-left: 1rem; }

/* Dropdown menu (About Us) — vertical, hover on desktop / tap on mobile */
.has-dropdown { position: relative; }
.submenu-toggle {
  background: none; border: 0; cursor: pointer; color: inherit; font: inherit;
  padding: .2rem .35rem; line-height: 1; vertical-align: middle;
}
.submenu-toggle .caret { font-size: .7em; opacity: .7; display: inline-block; transition: transform .2s ease; }
.site-nav .has-dropdown .dropdown {       /* higher specificity than .site-nav ul (flex) */
  display: block !important;              /* force vertical stack, not the parent's flex row */
}
.dropdown {
  display: block;
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 20px 44px -22px rgba(31,58,95,.5);
  padding: .5rem; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { border: 0; }
.dropdown a { display: block; padding: .6rem .85rem; border-radius: 8px; color: var(--ink); font-weight: 600; white-space: nowrap; }
.dropdown a:hover { background: #eef5ff; color: var(--blue); }

/* Hero heading widths — fill the empty space; inner pages go wider */
.hero h1 { max-width: 26ch; }
.hero-grid .hero-copy h1 { max-width: 20ch; }
.hero-article h1 { max-width: none; }
.hero-article .lead { max-width: 74ch; }

/* Breadcrumb (small, neat — used on all inner pages except home) */
.breadcrumb {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #eaf2fb; color: var(--muted);
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--blue-dark); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--muted); }

/* Case-study cards — 1:1 thumb, full image visible (no crop) */
.cs-thumb {
  display: block; aspect-ratio: 1 / 1; width: 100%; margin-bottom: 1rem;
  background: #f5f8fc; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: grid; place-items: center;
}
.cs-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cs-card h3 { font-size: 1.1rem; }

/* Case-study hero image — show the whole page screenshot */
.cs-hero-img { width: 100%; object-fit: contain; background: #f5f8fc; }

/* Portfolio thumbnails — show the complete design, responsive (no crop) */
.pf-item img { object-fit: contain; background: #f5f8fc; }

/* About-page founder photo — smaller, transparent cutout (no white box) */
.about-photo { max-width: 360px; margin-inline: auto; }

/* Phone field with country-code selector */
.phone-row { display: flex; gap: .5rem; }
.phone-row select { flex: 0 0 auto; width: auto; min-width: 96px; }
.phone-row input { flex: 1 1 auto; }

/* Centered process steps (e.g. Free Growth Audit) */
.steps-center .step { text-align: center; }
.steps-center .step .n { margin-inline: auto; }

/* CEO photo caption */
.photo-caption { text-align: center; margin-top: 1rem; }
.photo-caption strong { display: block; color: var(--navy); font-size: 1.15rem; }
.photo-caption span { color: var(--green-dark); font-weight: 600; font-size: .92rem; }

/* Industry "common problems" card + cross-mark list */
.problems-card {
  background: linear-gradient(135deg, #ffffff, #f5f8fc);
  border: 1px solid var(--line); border-radius: 18px; padding: 1.85rem;
  box-shadow: 0 18px 44px -30px rgba(31,58,95,.5);
}
.problems-card .eyebrow { color: var(--green-dark); }
.x-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.x-list li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: var(--ink); }
.x-list li::before {
  content: "✕"; position: absolute; left: 0; top: .05rem; width: 1.4rem; height: 1.4rem;
  background: #fdeaea; color: #b3261e; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}

/* Case-study two-column layout: sticky image + scrolling content */
.cs-layout { display: grid; grid-template-columns: .92fr 1.45fr; gap: 3rem; align-items: start; }
.cs-aside { position: sticky; top: 90px; }
.cs-aside-img {
  width: 100%; border-radius: 14px; border: 1px solid var(--line); background: #f5f8fc;
  object-fit: contain; box-shadow: 0 24px 60px -32px rgba(31,58,95,.55);
}
.cs-facts { margin: 1.25rem 0; display: grid; gap: .55rem; }
.cs-facts > div {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .6rem .9rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
}
.cs-facts span { color: var(--muted); font-size: .82rem; }
.cs-facts strong { color: var(--navy); font-size: .9rem; text-align: right; }
.cs-aside .btn { width: 100%; text-align: center; }
.cs-content > h2:first-child { margin-top: 0; }
.cs-cta-inline {
  margin-top: 2.25rem; background: linear-gradient(135deg, #eaf2fb, #effaf0);
  border: 1px solid var(--line); border-radius: 16px; padding: 1.85rem;
}
.cs-cta-inline h3 { margin-bottom: .5rem; }
.cs-cta-inline .btn { margin: .4rem .5rem .2rem 0; }
@media (max-width: 900px) {
  .cs-layout { grid-template-columns: 1fr; gap: 1.75rem; }
  .cs-aside { position: static; }
}

/* Pricing quote popup */
.quote-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(31,58,95,.55); padding: 1.25rem;
  align-items: center; justify-content: center; backdrop-filter: blur(2px);
}
.quote-modal.open { display: flex; }
.quote-dialog {
  background: #fff; border-radius: 18px; width: 100%; max-width: 460px;
  padding: 2rem; box-shadow: 0 40px 90px -30px rgba(31,58,95,.6); position: relative;
  max-height: 92vh; overflow-y: auto;
}
.quote-dialog h3 { margin-bottom: .3rem; }
.quote-dialog .pkg { color: var(--green-dark); font-weight: 700; }
.quote-close {
  position: absolute; top: .85rem; right: 1rem; background: none; border: 0;
  font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer;
}
.quote-close:hover { color: var(--navy); }

/* Blog post: two-column layout with sticky sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.blog-main { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2.25rem); }
.blog-aside { position: sticky; top: 90px; display: grid; gap: 1.25rem; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.35rem; }
.aside-card h4 { color: var(--navy); margin: 0 0 .85rem; font-size: 1rem; }
.aside-link { display: block; padding: .45rem 0; color: var(--ink); font-weight: 600; font-size: .92rem; border-top: 1px solid var(--line); }
.aside-card .aside-link:first-of-type { border-top: 0; }
.aside-link:hover { color: var(--blue); }
.aside-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.aside-tags a { background: #eef5ff; color: var(--blue-dark); font-weight: 600; font-size: .82rem; padding: .35rem .8rem; border-radius: 999px; }
.aside-tags a:hover { background: var(--blue); color: #fff; }
.aside-cta { background: linear-gradient(135deg, #eaf2fb, #effaf0); }
.aside-cta p { color: var(--muted); font-size: .92rem; }
.aside-cta .btn { width: 100%; text-align: center; margin-top: .5rem; }
.toc { display: grid; gap: .15rem; }
.toc a { display: block; padding: .35rem 0; color: var(--muted); font-weight: 600; font-size: .9rem; border-left: 2px solid var(--line); padding-left: .75rem; }
.toc a:hover { color: var(--blue); border-color: var(--blue); }
.toc a.toc-sub { padding-left: 1.5rem; font-weight: 500; font-size: .85rem; }

/* Blog prev/next */
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.post-nav-link { display: grid; gap: .2rem; max-width: 48%; }
.post-nav-link.next { text-align: right; margin-left: auto; }
.post-nav-link span { color: var(--muted); font-size: .82rem; font-weight: 600; }
.post-nav-link strong { color: var(--navy); font-size: .95rem; }
.post-nav-link:hover strong { color: var(--blue); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-aside { position: static; }
}

/* Mobile: stats 2-up (not single column), tighter compare table */
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .compare th, .compare td { padding: .65rem .7rem; font-size: .9rem; }
  .hero-trust .fiverr-badge { font-size: .85rem; }
  .post-nav { flex-direction: column; }
  .post-nav-link, .post-nav-link.next { max-width: 100%; text-align: left; }
}

@media (max-width: 820px) {
  .site-nav.open { overflow-y: auto; }                 /* scrollable if menu is long */
  .site-nav ul { padding: .5rem 1rem 1rem; }           /* trim the extra left space */
  .has-dropdown { display: flex; flex-wrap: wrap; align-items: center; }
  .has-dropdown > a { flex: 0 0 auto; }
  .submenu-toggle { float: none; font-size: 1.5rem; line-height: 1; padding: .65rem .55rem; margin-left: .15rem; }
  .site-nav .has-dropdown .dropdown {
    position: static; display: block; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 0 1rem; min-width: 0;
    flex-basis: 100%; width: 100%;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;   /* collapsed by default */
  }
  .has-dropdown.open .dropdown { max-height: 640px; }
  .has-dropdown.open .submenu-toggle .caret { transform: rotate(180deg); }
  .site-nav .nav-extra:first-of-type { margin-left: 0; }
}

/* Founder attribution / "who worked on this" block */
.author-credit {
  display:grid; grid-template-columns:220px 1fr; gap:2.5rem; align-items:center;
  background:linear-gradient(135deg,#eaf2fb 0%,#effaf0 100%);
  border:1px solid var(--line); border-radius:18px;
  padding:clamp(1.5rem,4vw,2.75rem);
}
.author-credit-photo img { width:100%; border-radius:14px; filter:drop-shadow(0 18px 28px rgba(31,58,95,.28)); }
.author-credit-body h2 { margin-bottom:.7rem; }
.author-credit-body p { color:var(--ink); }
.author-credit-body .btn { margin:.5rem .5rem .2rem 0; }
@media (max-width:680px){
  .author-credit { grid-template-columns:1fr; text-align:center; gap:1.25rem; }
  .author-credit-photo { max-width:200px; margin:0 auto; }
  .author-credit-body .btn { margin-inline:.25rem; }
}
