/* ==========================================================================
   Marketing site styles for kavisharora.com
   Isolated from app.css (the booking shell) so the two never collide.
   Palette mirrors the KLOCK booking app tokens.
   ========================================================================== */

:root {
  --site-bg: #f4f7f6;
  --site-ink: #142524;
  --site-muted: #5c6b6b;
  --site-line: rgba(11, 87, 88, 0.14);
  --site-teal: #0b5758;
  --site-teal-deep: #083e41;
  --site-teal-soft: #e8f2f1;
  --site-gold: #c8a34a;
  --site-surface: #ffffff;
  --site-shadow: 0 24px 60px rgba(7, 55, 57, 0.12);
  --site-shadow-sm: 0 10px 30px rgba(7, 55, 57, 0.08);
  --site-radius: 22px;
  --site-radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--site-ink);
  background: var(--site-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--site-teal); text-decoration: none; }
a:hover { color: var(--site-teal-deep); }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* ---- Top navigation ---------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 246, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--site-line);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  color: var(--site-ink);
  letter-spacing: -0.01em;
}
.site-brand img { width: 34px; height: 34px; border-radius: 9px; }
.site-brand small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--site-muted); letter-spacing: 0.02em; }
.site-nav-links { display: flex; align-items: center; gap: 4px; }
.site-nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--site-muted);
  transition: background 0.15s, color 0.15s;
}
.site-nav-links a:hover { background: var(--site-teal-soft); color: var(--site-teal-deep); }
.site-nav-links a.is-active { color: var(--site-teal-deep); background: var(--site-teal-soft); }
.site-nav-cta {
  padding: 10px 18px !important;
  background: var(--site-teal);
  color: #fff !important;
  box-shadow: var(--site-shadow-sm);
}
.site-nav-cta:hover { background: var(--site-teal-deep) !important; color: #fff !important; }
.nav-toggle { display: none; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
}
.btn-primary { background: var(--site-teal); color: #fff; box-shadow: var(--site-shadow-sm); }
.btn-primary:hover { background: var(--site-teal-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--site-teal-deep); border-color: var(--site-line); }
.btn-ghost:hover { background: var(--site-teal-soft); color: var(--site-teal-deep); }

/* ---- Generic section --------------------------------------------------- */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--site-teal);
  margin: 0 0 12px;
}
h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.15; color: var(--site-ink); }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0 0 16px; }
.lead { font-size: 1.12rem; color: var(--site-muted); max-width: 62ch; }

/* ---- Hero -------------------------------------------------------------- */
.hero { padding: 68px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 14px 0 18px; }
.hero .lead { font-size: 1.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--site-teal-deep);
  box-shadow: var(--site-shadow-sm);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-portrait {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--site-shadow);
  border: 6px solid #fff;
  aspect-ratio: 4 / 5;
  background: var(--site-teal-soft);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Stat strip -------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--site-teal-deep);
  color: #fff;
  border-radius: var(--site-radius);
  padding: 30px 26px;
  box-shadow: var(--site-shadow);
}
.stat-strip .stat strong { display: block; font-size: 2rem; letter-spacing: -0.02em; }
.stat-strip .stat span { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }
.stat-strip .stat b { color: var(--site-gold); }

/* ---- Cards ------------------------------------------------------------- */
.card-grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 28px;
  box-shadow: var(--site-shadow-sm);
}
.card h3 { font-size: 1.2rem; margin: 0 0 8px; }
.card p { color: var(--site-muted); margin: 0 0 14px; }
.card .card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--site-teal-soft);
  color: var(--site-teal-deep);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---- Product / company cards ------------------------------------------ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 30px;
  box-shadow: var(--site-shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--site-shadow); }
.product-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.product-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--site-teal); background: var(--site-teal-soft);
  padding: 5px 11px; border-radius: 999px;
}
.product-card h3 { font-size: 1.35rem; margin: 8px 0 6px; }
.product-role { font-size: 0.9rem; color: var(--site-gold); font-weight: 700; margin: 0 0 12px; }
.product-card p { color: var(--site-muted); margin: 0 0 16px; }
.product-features { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.product-features li { position: relative; padding-left: 24px; color: var(--site-ink); font-size: 0.94rem; }
.product-features li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--site-teal); font-weight: 800;
}
.product-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--site-teal-deep);
}
.product-link:hover { gap: 10px; }

/* ---- Split content ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.prose p { color: var(--site-muted); margin: 0 0 16px; }
.prose p strong { color: var(--site-ink); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--site-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
}

/* ---- Feature panel (teal) --------------------------------------------- */
.panel-teal {
  background: linear-gradient(140deg, var(--site-teal) 0%, var(--site-teal-deep) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 52px 46px;
  box-shadow: var(--site-shadow);
}
.panel-teal h2 { color: #fff; }
.panel-teal .lead { color: rgba(255, 255, 255, 0.82); }

/* ---- Timeline ---------------------------------------------------------- */
.timeline-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.timeline-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--site-line);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-weight: 800; color: var(--site-teal); font-size: 1.05rem; }
.timeline-item h3 { font-size: 1.15rem; margin: 0 0 6px; }
.timeline-item p { color: var(--site-muted); margin: 0; }

/* ---- Contact / hire ---------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-tile {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--site-line);
  border-radius: var(--site-radius-sm); padding: 18px 20px;
  box-shadow: var(--site-shadow-sm);
  color: var(--site-ink); font-weight: 600;
}
.contact-tile:hover { border-color: var(--site-teal); color: var(--site-teal-deep); }
.contact-tile .ct-icon {
  width: 40px; height: 40px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px; background: var(--site-teal-soft); font-size: 1.2rem;
}
.contact-tile small { display: block; color: var(--site-muted); font-weight: 500; font-size: 0.82rem; }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band {
  text-align: center;
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: 28px;
  padding: 52px 32px;
  box-shadow: var(--site-shadow-sm);
}
.cta-band h2 { margin: 0 0 12px; }
.cta-band .lead { margin: 0 auto 26px; }

/* ---- FAQ accordion ----------------------------------------------------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 34px; }
.faq-group-title {
  font-size: 1.3rem;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--site-teal-soft);
  color: var(--site-teal-deep);
}
.faq-item {
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-sm);
  margin-bottom: 10px;
  box-shadow: var(--site-shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--site-ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--site-teal-deep); }
.faq-mark {
  flex: none;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--site-teal-soft);
  color: var(--site-teal-deep);
  font-size: 1.15rem; font-weight: 700; line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 20px; }
.faq-answer p { margin: 0; color: var(--site-muted); line-height: 1.65; }

/* ---- Footer ------------------------------------------------------------ */
.site-foot {
  background: var(--site-teal-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 30px;
  margin-top: 40px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-foot h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; }
.site-foot a { color: rgba(255, 255, 255, 0.78); display: block; padding: 5px 0; }
.site-foot a:hover { color: #fff; }
.foot-brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; margin-bottom: 14px; }
.foot-brand img { width: 34px; height: 34px; border-radius: 9px; }
.foot-note { max-width: 40ch; color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
}

/* ---- Skill cloud ------------------------------------------------------- */
.skill-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-chip {
  font-size: 0.98rem;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--site-surface);
  color: var(--site-teal-deep);
  border: 1px solid var(--site-line);
  box-shadow: var(--site-shadow-sm);
}

/* ---- Blog ------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  overflow: hidden;
  box-shadow: var(--site-shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
  color: var(--site-ink);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--site-shadow); color: var(--site-ink); }
.blog-card-cover { aspect-ratio: 16 / 9; overflow: hidden; background: var(--site-teal-soft); }
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-cover-blank {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--site-teal) 0%, var(--site-teal-deep) 100%);
}
.blog-card-cover-blank span { color: rgba(255,255,255,0.85); font-weight: 800; letter-spacing: 0.14em; font-size: 0.8rem; }
.blog-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card-tag { align-self: flex-start; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--site-teal); background: var(--site-teal-soft); padding: 4px 10px; border-radius: 999px; }
.blog-card-body h3 { font-size: 1.2rem; margin: 2px 0 0; line-height: 1.25; }
.blog-card-body p { color: var(--site-muted); margin: 0; font-size: 0.94rem; }
.blog-card-meta { margin-top: auto !important; color: var(--site-muted); font-size: 0.82rem; }

/* Blog post */
.post-wrap { max-width: 760px; margin: 0 auto; }
.post-back { font-weight: 700; color: var(--site-teal-deep); }
.post-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin: 8px 0 12px; line-height: 1.1; }
.post-meta { color: var(--site-muted); font-size: 0.95rem; margin: 0 0 26px; }
.post-cover { border-radius: 22px; overflow: hidden; margin-bottom: 30px; box-shadow: var(--site-shadow); }
.post-cover img { width: 100%; display: block; }
.post-body { font-size: 1.1rem; line-height: 1.75; color: #26302f; }
.post-body p { margin: 0 0 20px; }
.post-body h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.3rem; margin: 30px 0 12px; }
.post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--site-teal); text-decoration: underline; }
.post-body img { max-width: 100%; border-radius: 14px; margin: 10px 0 20px; }
.post-body blockquote { margin: 24px 0; padding: 12px 22px; border-left: 4px solid var(--site-teal); background: var(--site-teal-soft); border-radius: 0 12px 12px 0; color: var(--site-teal-deep); }
.post-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 40px; padding: 24px 28px;
  background: var(--site-teal-soft); border: 1px solid var(--site-line); border-radius: 20px;
}
.post-cta strong { display: block; font-size: 1.1rem; }
.post-cta span { color: var(--site-muted); }

/* ---- Resources -------------------------------------------------------- */
.res-group { margin-bottom: 40px; }
.res-group-title { font-size: 1.4rem; margin: 0 0 18px; padding-bottom: 10px; border-bottom: 2px solid var(--site-teal-soft); color: var(--site-teal-deep); }
.res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.res-card {
  display: flex; flex-direction: column;
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  overflow: hidden;
  box-shadow: var(--site-shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.res-card:hover { transform: translateY(-3px); box-shadow: var(--site-shadow); }
.res-thumb { aspect-ratio: 4 / 3; overflow: hidden; background: var(--site-teal-soft); }
.res-thumb img { width: 100%; height: 100%; object-fit: cover; }
.res-thumb-blank { display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--site-teal); }
.res-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.res-card-body h3 { font-size: 1.1rem; margin: 0; }
.res-card-body p { color: var(--site-muted); margin: 0; font-size: 0.9rem; }
.res-dl { margin-top: auto; align-self: flex-start; padding: 10px 18px; font-size: 0.9rem; }
.res-thumb-link { display: block; }

/* Resource detail */
.res-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.res-hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 8px 0 0; line-height: 1.08; }
.res-hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.res-hero-file { color: var(--site-muted); font-size: 0.9rem; }
.res-hero-preview { border-radius: 22px; overflow: hidden; box-shadow: var(--site-shadow); border: 1px solid var(--site-line); }
.res-hero-preview img { width: 100%; display: block; }
@media (max-width: 900px) { .res-hero { grid-template-columns: 1fr; gap: 28px; } }

/* Live preview embed (browser-window mockup) */
.live-frame { border: 1px solid var(--site-line); border-radius: 16px; overflow: hidden; box-shadow: var(--site-shadow); margin: 10px 0 20px; background: #fff; }
.live-frame .lf-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; border-bottom: 1px solid var(--site-line); background: #f2f5f4; }
.live-frame .lf-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d3d8d6; display: inline-block; }
.live-frame .lf-bar span { margin-left: 10px; font-size: 0.82rem; color: var(--site-muted); font-weight: 600; }
.live-frame iframe { width: 100%; height: 600px; border: 0; display: block; background: #fff; }
.live-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 26px; }
@media (max-width: 640px) { .live-frame iframe { height: 440px; } }

/* Gated download card */
.dl-card { margin-top: 28px; padding: 24px; border: 1px solid var(--site-line); border-radius: 20px; background: var(--site-surface); box-shadow: var(--site-shadow-sm); max-width: 460px; }
.dl-title { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 4px; }
.dl-sub { color: var(--site-muted); font-size: 0.92rem; margin: 0 0 16px; }
.dl-form { display: flex; flex-direction: column; gap: 10px; }
.dl-form input { padding: 13px 15px; border: 1px solid var(--site-line); border-radius: 12px; font: inherit; background: #fff; color: var(--site-ink); }
.dl-form input:focus { outline: none; border-color: var(--site-teal); }
.dl-form .btn { justify-content: center; margin-top: 2px; }
.dl-note { color: var(--site-muted); font-size: 0.82rem; margin: 12px 0 0; }
.dl-banner { padding: 12px 15px; border-radius: 12px; font-weight: 600; font-size: 0.92rem; margin-bottom: 16px; }
.dl-ok { background: #e6f4ec; color: #0b6b3a; }
.dl-err { background: #fdecEB; color: #b3261e; }

/* Buttons inside article/resource body must keep their own colours
   (the generic `.post-body a` link style would otherwise hide the label). */
.post-body a.btn { text-decoration: none; }
.post-body a.btn-primary { color: #fff; }
.post-body a.btn-primary:hover { color: #fff; }
.post-body a.btn-ghost, .post-body a.btn-out { color: var(--site-teal-deep); }

/* ---- UTM Link Builder tool -------------------------------------------- */
.utm-wrap { max-width: 1000px; margin: 0 auto; }
.utm-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; align-items: start; }
.utm-form { background: var(--site-surface); border: 1px solid var(--site-line); border-radius: var(--site-radius); padding: 26px; box-shadow: var(--site-shadow-sm); }
.utm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.utm-field { display: block; margin-bottom: 16px; }
.utm-field > span { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.utm-field > span em { color: var(--site-accent, #ff4d2e); font-style: normal; color: var(--site-teal); }
.utm-field input { width: 100%; padding: 12px 14px; border: 1px solid var(--site-line); border-radius: 11px; font: inherit; background: #fff; color: var(--site-ink); }
.utm-field input:focus { outline: none; border-color: var(--site-teal); }
.utm-field small { display: block; color: var(--site-muted); font-size: 0.78rem; margin-top: 5px; }
.utm-check { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--site-muted); font-weight: 600; }
.utm-check input { width: auto; }
.utm-output { background: linear-gradient(150deg, var(--site-teal) 0%, var(--site-teal-deep) 100%); color: #fff; border-radius: var(--site-radius); padding: 26px; box-shadow: var(--site-shadow); position: sticky; top: 90px; }
.utm-out-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin: 0 0 12px; }
.utm-result { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 14px 16px; font-family: "SF Mono", "Fira Mono", Consolas, monospace; font-size: 0.9rem; line-height: 1.5; word-break: break-all; min-height: 84px; color: rgba(255,255,255,0.7); }
.utm-result.has-url { color: #fff; }
.utm-actions { display: flex; gap: 10px; margin-top: 16px; }
.utm-actions .btn { flex: 1; justify-content: center; }
.utm-output .btn-primary { background: #fff; color: var(--site-teal-deep); }
.utm-output .btn-primary:hover { background: #fff; color: var(--site-teal-deep); opacity: 0.9; }
.utm-output .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.utm-output .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.utm-output .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.utm-copied { text-align: center; font-weight: 700; margin: 12px 0 0; color: #d7f7e2; }
.utm-note { margin-top: 30px; max-width: 760px; }
.utm-note h2 { font-size: 1.5rem; margin: 0 0 12px; }
.utm-note p { color: var(--site-muted); }
.utm-platforms { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .utm-platforms { grid-template-columns: 1fr; } }
.utm-cheat { margin-top: 34px; background: var(--site-surface); border: 1px solid var(--site-line); border-radius: 18px; padding: 26px; box-shadow: var(--site-shadow-sm); }
.utm-cheat h3 { font-size: 1.2rem; margin: 0 0 14px; }
.cheat-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; padding: 9px 0; border-bottom: 1px solid var(--site-line); }
.cheat-row:last-child { border-bottom: none; }
.cheat-row > span { font-family: "SF Mono","Fira Mono",Consolas,monospace; font-size: 0.82rem; font-weight: 700; color: var(--site-teal-deep); background: var(--site-teal-soft); padding: 3px 9px; border-radius: 7px; }
.cheat-row em { font-style: normal; color: var(--site-muted); font-size: 0.92rem; margin-left: 4px; }
.card code, .utm-note code, .cheat-row code { font-family: "SF Mono","Fira Mono",Consolas,monospace; font-size: 0.85em; background: var(--site-teal-soft); color: var(--site-teal-deep); padding: 2px 6px; border-radius: 6px; white-space: nowrap; }
@media (max-width: 820px) { .utm-grid { grid-template-columns: 1fr; } .utm-output { position: static; } }
@media (max-width: 640px) { .utm-row { grid-template-columns: 1fr; } }

/* ---- Contact map embed ------------------------------------------------- */
.map-embed { border-radius: var(--site-radius); overflow: hidden; border: 1px solid var(--site-line); box-shadow: var(--site-shadow-sm); background: var(--site-teal-soft); min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.contact-tile .ct-icon { text-transform: none; }

/* ---- RankStreet reviews / rating -------------------------------------- */
.rs-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 1.15rem; }
.rs-rating strong { font-weight: 800; }
.rs-rating .muted { color: var(--site-muted); }
.stars { display: inline-flex; gap: 2px; color: #f5a623; font-size: 1.15rem; letter-spacing: 1px; }
.stars .star-off { color: rgba(20,18,16,.18); }
.stars-sm { font-size: 0.95rem; }
.rs-reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.rs-review { margin: 0; background: var(--site-surface); border: 1px solid var(--site-line); border-radius: var(--site-radius); padding: 26px; box-shadow: var(--site-shadow-sm); display: flex; flex-direction: column; }
.rs-review blockquote { margin: 12px 0 18px; font-size: 1.02rem; line-height: 1.6; color: var(--site-ink); }
.rs-review figcaption { margin-top: auto; }
.rs-review figcaption strong { display: block; }
.rs-review figcaption span { color: var(--site-muted); font-size: 0.9rem; }

/* ---- WhatsApp floating chat widget ------------------------------------- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 62px;
  height: 62px;
  padding: 0 22px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37,211,102,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37,211,102,0.55); color: #fff; }
.wa-fab svg { flex: none; }
.wa-fab-label { font-weight: 700; font-size: 0.98rem; white-space: nowrap; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .hero-portrait { max-width: 360px; margin: 0 auto; }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 36px); }
  .wa-fab { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); min-width: 56px; width: 56px; height: 56px; padding: 0; gap: 0; }
  .wa-fab-label { display: none; }
  .section { padding: 44px 0; }
  .hero { padding: 22px 0 14px; }
  /* Hero: photo LEFT, text RIGHT — two columns on phones */
  .hero-grid { grid-template-columns: minmax(140px, 43%) minmax(0, 1fr); gap: 16px; align-items: stretch; }
  .hero-portrait {
    order: 1;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 200px;
    aspect-ratio: auto;
    margin: 0;
    border-width: 4px;
    border-radius: 18px;
  }
  .hero-portrait img { height: 100%; }
  .hero-grid > div:first-child { order: 2; min-width: 0; }
  .hero h1 { font-size: 1.3rem; line-height: 1.16; margin: 6px 0 9px; }
  .hero .lead { font-size: 0.88rem; }
  .hero-badges { gap: 7px; margin: 14px 0 16px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 11px; }
  .lead { font-size: 1rem; }
  .section h2 { font-size: 1.55rem; }
  h1 { letter-spacing: -0.02em; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 9px; margin-top: 16px; }
  .hero-cta-row .btn { width: 100%; padding: 13px 18px; font-size: 0.95rem; }
  .cols-2, .cols-3, .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card { padding: 18px 16px; }
  .card h3 { font-size: 1.08rem; }
  .card p { font-size: 0.9rem; }
  .card-icon { margin-bottom: 12px; width: 42px; height: 42px; font-size: 1.15rem; }
  .contact-tile { padding: 14px; gap: 11px; }
  .contact-tile .ct-icon { width: 36px; height: 36px; font-size: 1.05rem; }
  .contact-tile small { overflow-wrap: anywhere; font-size: 0.78rem; }
  /* Venture cards: compact for 2-up */
  .product-card { padding: 16px 15px; border-radius: 18px; }
  .product-card h3 { font-size: 1.05rem; margin: 6px 0 4px; overflow-wrap: anywhere; }
  .product-tag { font-size: 0.62rem; padding: 4px 8px; }
  .product-role { font-size: 0.78rem; margin-bottom: 8px; }
  .product-card p { font-size: 0.84rem; margin-bottom: 12px; }
  .product-features { gap: 6px; margin-bottom: 14px; }
  .product-features li { font-size: 0.8rem; padding-left: 20px; }
  .product-link { font-size: 0.85rem; overflow-wrap: anywhere; }
  .panel-teal { padding: 36px 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-year { font-size: 0.95rem; }
  .site-nav-links { display: none; }
  .site-nav-links.is-open {
    display: flex; position: absolute; top: 100%; right: 20px; left: 20px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: 1px solid var(--site-line); border-radius: 16px;
    padding: 10px; box-shadow: var(--site-shadow);
  }
  .site-nav-links.is-open a { padding: 12px 14px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid var(--site-line); background: #fff; cursor: pointer;
    font-size: 1.3rem; color: var(--site-teal-deep);
  }
}
