/* =========================================================
   Solo — Free Bootstrap 5 One-Page Multipurpose Template
   Custom design layer. Palette: warm paper + ink + cobalt.
   Type: Bricolage Grotesque (display) / Inter (body).
   ========================================================= */

:root {
  /* Palette */
  --ink:        #16181f;
  --ink-2:      #2c2f39;
  --muted:      #6b6f7b;
  --muted-2:    #9a9ea9;
  --paper:      #f3f1ea;
  --surface:    #ffffff;
  --surface-2:  #faf8f2;
  --line:       #e5e1d6;
  --line-2:     #ece9df;
  --dark:       #14151b;
  --dark-2:     #1d1f27;

  --accent:      #2743e8;
  --accent-600:  #1d33bd;
  --accent-700:  #16289a;
  --accent-tint: #eaeeff;
  --accent-ink:  #ffffff;

  /* Type */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Metrics */
  --nav-h: 76px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20,21,27,.05);
  --shadow: 0 18px 44px -22px rgba(20,21,27,.32);
  --shadow-lg: 0 40px 80px -34px rgba(20,21,27,.42);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1180px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a { color: var(--accent-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--accent-700); }

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

.container { max-width: var(--maxw); }

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  left: 16px; top: -80px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---------- Reveal (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Sections ---------- */
section[id] { scroll-margin-top: var(--nav-h); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-alt { background: var(--surface-2); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.text-center .eyebrow { justify-content: center; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 18px;
}
.section-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 26px;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  border: 1.5px solid transparent;
}
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }
.btn-sm { padding: 9px 20px; font-size: .92rem; }

.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 26px -12px rgba(39,67,232,.7); }
.btn-accent:hover, .btn-accent:focus { background: var(--accent-600); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(39,67,232,.8); }
.btn-accent:active { transform: translateY(0); }

.btn-outline-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-ink:hover, .btn-outline-ink:focus { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  height: var(--nav-h);
  background: transparent;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(243,241,234,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-nav .container { display: flex; align-items: center; }

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding: 0;
}
.navbar-brand:hover { color: var(--ink); }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-word { line-height: 1; }

.site-nav .navbar-nav { gap: 2px; }
.site-nav .nav-link {
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.site-nav .nav-link:hover { color: var(--ink); }
.site-nav .nav-link.active { color: var(--accent-600); }
.site-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Toggler */
.navbar-toggler {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 9px 11px;
  background: var(--surface);
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.toggler-bar + .toggler-bar { margin-top: 5px; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .site-nav { background: rgba(243,241,234,.9); backdrop-filter: saturate(160%) blur(12px); border-bottom-color: var(--line); }
  .navbar-collapse {
    background: var(--surface);
    margin: 12px -12px -12px;
    padding: 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .site-nav .nav-link { padding: 12px 14px; font-size: 1.05rem; }
  .site-nav .nav-link.active::after { display: none; }
  .site-nav .nav-link.active { background: var(--accent-tint); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(60px, 9vw, 120px);
  background:
    radial-gradient(1100px 520px at 88% -10%, var(--accent-tint) 0%, rgba(234,238,255,0) 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--surface-2) 100%);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 800;
  margin: 0 0 22px;
}
.hero-lead {
  font-size: 1.28rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding: 0; margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-2);
  font-size: 1.02rem;
}
.hero-trust li:first-child {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Hero abstract visual */
.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-blob {
  position: absolute;
  width: 92%; aspect-ratio: 1;
  right: -6%; top: 4%;
  background: conic-gradient(from 210deg at 60% 40%, var(--accent) 0deg, #6f83ff 120deg, #b9c4ff 220deg, var(--accent) 360deg);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(2px);
  opacity: .92;
  animation: blobMorph 16s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; transform: rotate(0deg); }
  50% { border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; transform: rotate(8deg); }
}
.hv-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(closest-side, #000 60%, transparent 100%);
          mask-image: radial-gradient(closest-side, #000 60%, transparent 100%);
  opacity: .5;
}
.hv-panel {
  position: relative;
  z-index: 3;
  width: min(340px, 78%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}
.hv-panel-top { display: flex; gap: 7px; margin-bottom: 18px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.hv-dot:first-child { background: #ff6b5e; }
.hv-dot:nth-child(2) { background: #ffce4f; }
.hv-dot:nth-child(3) { background: #34d17a; }
.hv-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  padding: 12px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.hv-bar { flex: 1; height: var(--h); background: #d9def6; border-radius: 5px 5px 0 0; }
.hv-bar--accent { background: var(--accent); }
.hv-line { height: 10px; background: var(--line-2); border-radius: 6px; margin-bottom: 9px; }
.hv-line--lg { width: 80%; }
.hv-line--sm { width: 45%; margin-bottom: 0; }

.hv-chip {
  position: absolute;
  z-index: 4;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hv-chip--1 { left: -2%; top: 16%; animation: floatY 6s ease-in-out infinite; }
.hv-chip--2 { right: 2%; bottom: 12%; flex-direction: row; align-items: center; gap: 8px; animation: floatY 7s ease-in-out infinite reverse; }
.hv-chip-k { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--accent-600); }
.hv-chip-l { font-size: .78rem; color: var(--muted); font-weight: 500; }
.hv-chip-icon { color: #ffb020; font-size: 1.2rem; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hv-ring {
  position: absolute;
  z-index: 1;
  width: 96px; height: 96px;
  right: 8%; top: -2%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  opacity: .12;
}
@media (prefers-reduced-motion: reduce) {
  .hv-blob, .hv-chip--1, .hv-chip--2 { animation: none; }
}
@media (max-width: 991.98px) {
  .hero-visual { min-height: 360px; margin-top: 24px; }
}

/* ---------- About ---------- */
.about-media { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 5/4;
}
.about-badge {
  position: absolute;
  left: -14px; bottom: -22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.about-badge-k { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: #fff; line-height: 1; }
.about-badge-l { font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.3; }

.highlights { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.highlights li { display: flex; gap: 14px; align-items: flex-start; }
.hl-icon {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--accent-tint);
  color: var(--accent-600);
  border-radius: 11px;
}
.highlights strong { color: var(--ink); font-weight: 700; }
.highlights div { color: var(--muted); }

/* ---------- Services ---------- */
.service-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent-600);
  margin-bottom: 20px;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.service-card:hover .service-icon { background: var(--accent); color: #fff; }
.service-card h3 { font-size: 1.32rem; margin: 0 0 10px; }
.service-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Work / Portfolio ---------- */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-2);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: all .18s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.work-item { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.work-item.hide { display: none; }

.work-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.work-card:hover img { transform: scale(1.06); }
.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(20,21,27,.82) 0%, rgba(20,21,27,.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  color: #fff;
}
.work-card:hover .work-overlay, .work-card:focus-visible .work-overlay { opacity: 1; }
.work-cat {
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #b9c4ff; margin-bottom: 4px;
}
.work-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }

/* ---------- Metrics ---------- */
.metrics {
  background: var(--dark);
  color: #fff;
  padding: clamp(56px, 7vw, 90px) 0;
}
.metric-k {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.metric-suffix { color: #8ea0ff; }
.metric-l { color: rgba(255,255,255,.6); margin: 12px 0 0; font-size: .98rem; font-weight: 500; }

/* ---------- Team ---------- */
.team-card {
  margin: 0;
  text-align: center;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.team-card h3 { font-size: 1.18rem; margin: 0 0 3px; }
.team-card figcaption > p { color: var(--accent-600); font-weight: 600; font-size: .9rem; margin: 0; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.team-social a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  transition: all .18s var(--ease);
}
.team-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Pricing ---------- */
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 26px;
}
.billing-opt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-2);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s var(--ease);
}
.billing-opt.is-active { background: var(--ink); color: #fff; }
.save-pill {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--accent-tint);
  color: var(--accent-600);
  padding: 2px 8px;
  border-radius: 999px;
}
.billing-opt.is-active .save-pill { background: rgba(255,255,255,.16); color: #b9c4ff; }

.price-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.price-card--featured .price-name,
.price-card--featured .price-figure,
.price-card--featured .price-amt,
.price-card--featured .price-cur { color: #fff; }
.price-card--featured .price-desc { color: rgba(255,255,255,.6); }
.price-card--featured .price-feat li { color: rgba(255,255,255,.82); }
.price-card--featured .price-per { color: rgba(255,255,255,.5); }
.price-card--featured .price-feat li::before { background: rgba(143,160,255,.2); color: #b9c4ff; }

.price-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name { font-size: 1.4rem; margin: 0 0 6px; }
.price-desc { color: var(--muted); font-size: .95rem; margin: 0 0 22px; min-height: 44px; }
.price-figure {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.price-cur { font-size: 1.4rem; font-weight: 700; align-self: flex-start; margin-top: 8px; color: var(--ink); }
.price-amt { font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 800; color: var(--ink); line-height: 1; }
.price-per { font-family: var(--font-body); font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 13px;
  flex: 1;
}
.price-feat li { position: relative; padding-left: 30px; color: var(--ink-2); font-size: .97rem; }
.price-feat li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--accent-tint);
  color: var(--accent-600);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
}
.price-feat em { font-style: italic; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--surface-2); }
.slider { max-width: 820px; margin: 0 auto; }
.slider-viewport { overflow: hidden; }
.slider-track {
  list-style: none;
  display: flex;
  padding: 0; margin: 0;
  transition: transform .55s var(--ease);
}
@media (prefers-reduced-motion: reduce) { .slider-track { transition: none; } }
.slide { flex: 0 0 100%; padding: 4px; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  margin: 0;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.quote > p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.quote-by { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.quote-by img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.quote-by span { display: flex; flex-direction: column; line-height: 1.35; }
.quote-by strong { color: var(--ink); font-weight: 700; }
.quote-by span { color: var(--muted); font-size: .92rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.slider-arrow {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: all .18s var(--ease);
}
.slider-arrow:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.slider-dots { display: flex; gap: 9px; }
.slider-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.slider-dots button.is-active { background: var(--accent); width: 26px; border-radius: 5px; }

/* ---------- Blog / News ---------- */
.post-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-media { display: block; overflow: hidden; aspect-ratio: 8/5; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 24px; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-600); background: var(--accent-tint);
  padding: 4px 10px; border-radius: 999px;
}
.post-read { font-size: .85rem; color: var(--muted-2); }
.post-card h3 { font-size: 1.24rem; margin: 0 0 8px; line-height: 1.25; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--accent-600); }
.post-body p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-info { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 20px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent-600);
}
.contact-info strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.contact-info div { color: var(--muted); }
.contact-info a { color: var(--muted); }
.contact-info a:hover { color: var(--accent-600); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.form-label .opt { color: var(--muted-2); font-weight: 400; }
.form-control, .form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: .98rem;
  color: var(--ink);
  background-color: var(--surface-2);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(39,67,232,.12);
  background-color: var(--surface);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-check-input { border-color: var(--muted-2); }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(39,67,232,.12); border-color: var(--accent); }
.form-check-label { color: var(--muted); font-size: .95rem; }
.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .form-select:invalid, .form-select.is-invalid { border-color: #e0463c; }
.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .form-select:valid { border-color: var(--line); background-image: none; }
.form-status { margin: 16px 0 0; font-weight: 600; color: var(--accent-600); }
.form-status.error { color: #d13c31; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.68);
  padding: clamp(56px, 7vw, 84px) 0 30px;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: #fff; letter-spacing: -0.03em; margin-bottom: 16px;
}
.footer-brand:hover { color: #fff; }
.footer-brand .brand-mark { color: var(--accent); }
.footer-note { color: rgba(255,255,255,.55); font-size: .95rem; max-width: 320px; margin: 0 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  transition: all .18s var(--ease);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

.footer-title { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .95rem; }
.footer-links a:hover { color: #fff; }

.footer-sub { display: flex; gap: 8px; }
.footer-sub .form-control { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.footer-sub .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-sub .form-control:focus { background: rgba(255,255,255,.1); border-color: var(--accent); box-shadow: none; }
.footer-sub .btn { flex: none; padding: 12px 16px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.45); }
.footer-legal { list-style: none; display: flex; gap: 22px; padding: 0; margin: 0; }
.footer-legal a { color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-legal a:hover { color: #fff; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 1040;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px) scale(.9);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background-color .18s var(--ease);
}
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { background: var(--accent); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,16,21,.92);
  backdrop-filter: blur(6px);
  padding: 24px;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lb-stage { margin: 0; max-width: 1000px; width: 100%; text-align: center; }
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-caption { margin-top: 16px; color: #fff; display: flex; flex-direction: column; gap: 2px; }
.lb-cat { color: #b9c4ff; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.lb-title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.lb-close, .lb-nav {
  position: absolute;
  z-index: 2;
  display: grid; place-items: center;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .18s var(--ease);
}
.lb-close { top: 20px; right: 20px; width: 46px; height: 46px; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close:hover, .lb-nav:hover { background: var(--accent); }
@media (max-width: 575.98px) {
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 767.98px) {
  body { font-size: 1rem; }
  .about-badge { left: 10px; padding: 14px 18px; }
  .about-badge-k { font-size: 2rem; }
  .hero-trust { gap: 8px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
