:root {
  --blue: #1a6fc4;
  --blue-hover: #155da0;
  --blue-light: #e8f1fb;
  --blue-mid: #cce0f5;
  --text-dark: #1a1f2e;
  --text-body: #4a5568;
  --text-muted: #8a94a6;
  --border: #e2e8f0;
  --bg-white: #ffffff;
  --bg-light: #f7f9fc;
  --bg-section: #f0f4f9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(26,111,196,.085) 0, rgba(26,111,196,0) 34rem),
    radial-gradient(circle at 12% 42%, rgba(26,111,196,.045) 0, rgba(26,111,196,0) 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 34%, #f4f9fd 68%, #ffffff 100%);
  color: var(--text-body);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.lucide { width: 1em; height: 1em; flex: 0 0 auto; stroke-width: 2; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 70px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; color: var(--text-dark); font-size: clamp(38px, 4.4vw, 56px); font-weight: 700; line-height: 1.08; letter-spacing: 0; }
h2 { margin-bottom: 16px; color: var(--text-dark); font-size: clamp(27px, 2.7vw, 34px); font-weight: 700; line-height: 1.2; letter-spacing: 0; }
h3 { margin-bottom: 12px; color: var(--text-dark); font-size: 18px; font-weight: 600; line-height: 1.35; letter-spacing: 0; }
.fv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 28px; border-radius: 6px; border: 1.5px solid transparent;
  cursor: pointer; font-size: 15px; font-weight: 600; line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.fv-btn .lucide { width: 17px; height: 17px; }
.fv-btn:hover { transform: translateY(-1px); }
.fv-btn--primary { color: #fff; background: var(--blue); }
.fv-btn--primary:hover { background: var(--blue-hover); }
.fv-btn--outline { color: var(--blue); background: transparent; border-color: var(--blue); }
.fv-btn--outline:hover { color: #fff; background: var(--blue); }
.fv-btn--ghost { color: var(--blue); background: transparent; border-color: rgba(26,111,196,.26); }
.fv-btn--ghost:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.card {
  position: relative;
  min-width: 0;
  background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 28px;
  box-shadow: 0 1px 2px rgba(26,31,46,.03);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(26,111,196,.28); box-shadow: 0 12px 28px rgba(26,111,196,.10); transform: translateY(-2px); }

.site-nav { position: sticky; top: 0; z-index: 40; height: 68px; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { position: relative; height: 68px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; min-width: 0; }
.logo-img { display: block; width: auto; height: 38px; max-width: min(240px, 42vw); object-fit: contain; }
.logo-mark {
  width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue);
  background: var(--blue-light); border-radius: 6px; font-size: 18px; font-weight: 700; line-height: 1;
}
.logo-text { color: var(--text-dark); font-size: 14px; font-weight: 600; letter-spacing: .05em; white-space: nowrap; }
.nav-cta-group { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}
.nav-cta .lucide { width: 15px; height: 15px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 28px); margin: 0; padding: 0; list-style: none; }
.nav-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-body); font-size: 14px; font-weight: 500; transition: color .2s ease; }
.nav-links a .lucide { display: none; width: 19px; height: 19px; color: var(--blue); }
.nav-links a:hover { color: var(--blue); }
.hamburger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg-white); color: var(--text-dark); cursor: pointer; font-size: 24px; line-height: 1;
  box-shadow: 0 8px 22px rgba(26,31,46,.06);
}
.hamburger .lucide { width: 24px; height: 24px; }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 24%, rgba(26,111,196,.10) 0, rgba(26,111,196,0) 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 64%, #f4f9fd 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% 42%;
  z-index: -1;
  height: 22rem;
  border-radius: 999px;
  background: rgba(26,111,196,.08);
  filter: blur(36px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.48fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(58px, 6.5vw, 84px);
  padding-bottom: clamp(52px, 5.5vw, 72px);
}
.hero-copy {
  width: min(100%, 780px);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 11px;
  border: 1px solid rgba(26,111,196,.16);
  border-radius: 999px;
  color: #24517f;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(26,111,196,.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-kicker .lucide {
  width: 15px;
  height: 15px;
  color: var(--blue);
}
.hero-copy h1,
.hero-copy p,
.stats-row-number,
.plan-title,
.section-head h2,
.center-head h2 {
  overflow-wrap: normal;
  word-break: normal;
}
.hero-copy p {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(26,111,196,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 30px 70px rgba(26,31,46,.12);
  backdrop-filter: blur(16px);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(26,111,196,.14));
}
.hero-panel-head {
  display: grid;
  gap: 7px;
  padding: 2px 3px 5px;
}
.hero-panel-head strong {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.25;
}
.hero-panel-badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.hero-panel-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(226,232,240,.78);
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(26,31,46,.05);
}
.hero-panel-row .lucide {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 12px;
}
.hero-panel-row strong,
.hero-panel-row small { display: block; }
.hero-panel-row strong { color: var(--text-dark); font-size: 15px; line-height: 1.3; }
.hero-panel-row small { margin-top: 3px; color: var(--text-muted); font-size: 12px; line-height: 1.35; }
.hero-panel-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 2px;
}
.hero-panel-footer div {
  min-width: 0;
  padding: 11px 10px;
  border-radius: 12px;
  background: #f4f8fd;
}
.hero-panel-footer strong,
.hero-panel-footer span { display: block; }
.hero-panel-footer strong {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.1;
}
.hero-panel-footer span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
}

.about-strip {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 66px 0 70px;
  background:
    radial-gradient(circle at 76% 8rem, rgba(26,111,196,.045) 0, rgba(26,111,196,0) 32rem),
    linear-gradient(180deg, #f4f9fd 0%, #f7fbff 55%, #f8fbfe 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.05fr);
  gap: clamp(38px, 5vw, 68px);
  align-items: center;
}
.about-statement { padding-left: 0; }
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.about-kicker .lucide { width: 15px; height: 15px; }
.about-quote {
  max-width: 34rem;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}
.about-content {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(226,232,240,.72);
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 18px 44px rgba(26,31,46,.045);
  backdrop-filter: blur(14px);
}
.about-content > p {
  margin: 0;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.75;
}
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.about-point {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(26,111,196,.12);
  border-radius: 999px;
  color: var(--text-dark);
  background: #fff;
  box-shadow: 0 8px 20px rgba(26,111,196,.06);
}
.about-point .lucide {
  width: 17px;
  height: 17px;
  color: var(--blue);
}
.about-point strong {
  min-width: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}
.stats-row {
  position: relative;
  padding-top: 56px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f8fbfe 0%, #f7fbff 100%);
}
.stats-row-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.82);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(26,31,46,.055);
  text-align: left;
}
.stats-row-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.stats-row-item + .stats-row-item {
  border-left: 1px solid rgba(226,232,240,.82);
}
.stats-row-item::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: rgba(26,111,196,.12);
  transform: scaleX(.45);
  transform-origin: left;
  transition: transform .2s ease, background .2s ease;
}
.stats-row-item:hover::after {
  background: var(--blue);
  transform: scaleX(1);
}
.stat-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  padding: 8px;
  color: var(--blue);
  background: linear-gradient(135deg, #e8f1fb, #f7fbff);
  border-radius: 11px;
}
.stats-row-number {
  display: block;
  max-width: 100%;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.16;
}
.stats-row-label { margin-bottom: 7px; color: var(--text-dark); font-size: 14px; font-weight: 650; }
.stats-row-text { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.48; }

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(26,111,196,.055) 0, rgba(26,111,196,0) 32rem),
    linear-gradient(180deg, #f7fbff 0%, #f8fbfe 100%);
}
.section-head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: end; margin-bottom: 36px; }
.section-head h2 { margin-bottom: 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.services .card {
  overflow: hidden;
  min-height: 286px;
  padding: 32px 30px;
  border-color: rgba(226,232,240,.82);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(26,31,46,.055);
}
.services .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(26,111,196,.18));
  opacity: .55;
}
.services .card:hover {
  border-color: rgba(26,111,196,.22);
  box-shadow: 0 24px 54px rgba(26,111,196,.10);
}
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue); background: linear-gradient(135deg, #e8f1fb, #f7fbff); border-radius: 14px; font-size: 24px; }
.service-icon .lucide { width: 24px; height: 24px; }
.services .card h3 { margin-bottom: 14px; font-size: 19px; line-height: 1.32; }
.services .card p { margin-bottom: 0; color: var(--text-body); font-size: 15px; line-height: 1.72; }
.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(26,111,196,.055) 0, rgba(26,111,196,0) 34rem),
    linear-gradient(180deg, #f8fbfe 0%, #f7fbff 100%);
}
.center-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.pricing .center-head { margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 26px;
  border-color: rgba(226,232,240,.84);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(26,31,46,.055);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(26,111,196,.24), rgba(26,111,196,0));
}
.pricing-card.featured {
  border: 1px solid rgba(26,111,196,.46);
  background:
    linear-gradient(180deg, rgba(232,241,251,.75) 0%, rgba(255,255,255,.95) 28%),
    #fff;
  box-shadow: 0 28px 70px rgba(26,111,196,.16);
  transform: translateY(-10px);
}
.pricing-card.featured::before {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), rgba(26,111,196,.2));
}
.pricing-card.featured:hover { transform: translateY(-12px); }
.badge {
  position: absolute;
  top: 16px;
  right: 18px;
  left: auto;
  transform: none;
  padding: 7px 11px;
  color: var(--blue);
  background: #e8f1fb;
  border: 1px solid rgba(26,111,196,.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.plan-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  padding: 8px;
  color: var(--text-muted);
  background: #f4f7fb;
  border-radius: 14px;
}
.plan-icon.blue {
  color: var(--blue);
  background: var(--blue-light);
}
.plan-icon.dark {
  width: 44px;
  height: 44px;
  color: var(--text-dark);
  background: #f4f7fb;
}
.plan-title { margin-bottom: 12px; overflow-wrap: anywhere; color: var(--text-dark); font-size: clamp(25px, 2.5vw, 29px); font-weight: 750; line-height: 1.15; }
.featured .plan-title { color: var(--blue); font-size: clamp(29px, 2.8vw, 34px); }
.price-label, .vat-note { margin-bottom: 7px; color: var(--text-muted); font-size: 12px; }
.price { margin-bottom: 8px; color: var(--text-dark); font-size: 26px; font-weight: 750; line-height: 1.15; }
.featured .price { font-size: 31px; }
.pricing-card .fv-btn { width: 100%; min-height: 46px; margin-top: 20px; }
.divider { width: 100%; height: 1px; margin: 28px 0 26px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.features { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.features li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--text-body); font-size: 14px; line-height: 1.5; }
.features .lucide { width: 18px; height: 18px; color: var(--blue); margin-top: 1px; }
.features strong { color: var(--text-dark); font-weight: 700; }

.blog-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(26,111,196,.055) 0, rgba(26,111,196,0) 32rem),
    linear-gradient(180deg, #f8fbfe 0%, #f7fbff 100%);
}
.section-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.section-link .lucide { width: 16px; height: 16px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(26,31,46,.055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.blog-card:hover {
  border-color: rgba(26,111,196,.22);
  box-shadow: 0 24px 54px rgba(26,111,196,.10);
  transform: translateY(-2px);
}
.blog-card-link,
.blog-card-empty {
  display: grid;
  min-height: 236px;
  align-content: start;
  padding: 28px;
}
.blog-date {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.blog-card h3 { margin-bottom: 12px; font-size: 19px; line-height: 1.32; }
.blog-card p { margin-bottom: 22px; color: var(--text-body); font-size: 15px; line-height: 1.65; }
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.blog-read .lucide { width: 16px; height: 16px; }

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(26,111,196,.07) 0, rgba(26,111,196,0) 34rem),
    linear-gradient(180deg, #f7fbff 0%, #f4f9fd 100%);
}
.contact .center-head { margin-bottom: 44px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.form-card {
  width: 100%;
  margin: 0;
  padding: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(26,31,46,.07);
  backdrop-filter: blur(14px);
}
.cal-card {
  min-height: 600px;
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(26,31,46,.07);
}
#my-cal-inline-30min { min-height: 600px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid textarea { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(203,213,225,.88); border-radius: 10px; padding: 13px 14px;
  color: var(--text-dark); background: rgba(255,255,255,.92); font-size: 15px; outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,111,196,.12); }
textarea { min-height: 116px; resize: vertical; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 18px 0 22px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  /* !important perrašo components.css taisyklę, kuri paslepia input'ą
     (position:absolute; opacity:0; width:0; height:0) — kad ir kokia
     būtų failų įkėlimo tvarka ar naršyklės talpykla */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  position: static !important;
  opacity: 1 !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 2px solid #9aa7b8;
  border-radius: 6px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.checkbox input[type="checkbox"]:hover { border-color: var(--blue); }
.checkbox input[type="checkbox"]:checked {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  /* balta varnelė (SVG) — patikima visose naršyklėse */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") !important;
}
.checkbox input[type="checkbox"]:focus-visible,
.checkbox input[type="checkbox"]:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(26,111,196,.16);
}
.checkbox span { padding-top: 1px; }
.checkbox a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox a:hover { color: var(--blue-hover); }

.fv-btn:disabled,
.fv-btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}
.form-card .fv-btn { width: 100%; min-height: 50px; }

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 5%, rgba(26,111,196,.05) 0, rgba(26,111,196,0) 32rem),
    linear-gradient(180deg, #f7fbff 0%, #f8fbfe 100%);
}
.process .center-head { margin-bottom: 52px; }
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(26,111,196,0), rgba(26,111,196,.22), rgba(26,111,196,0));
}
.step-card {
  position: relative;
  grid-column: span 2;
  min-height: 238px;
  padding: 34px 30px 30px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(226,232,240,.86);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(26,31,46,.05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.step-card:hover {
  border-color: rgba(26,111,196,.22);
  box-shadow: 0 24px 56px rgba(26,111,196,.09);
  transform: translateY(-2px);
}
.step-card:nth-child(4) { grid-column: 2 / span 2; }
.step-card:nth-child(5) { grid-column: 4 / span 2; }
.step-card::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -18px;
  left: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 6px solid #f7fbff;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(26,111,196,.22);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}
.steps-grid { counter-reset: step; }
.step-number { margin-bottom: 12px; color: var(--blue); font-size: 10px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.step-card h3 { margin-bottom: 14px; font-size: 19px; line-height: 1.3; }
.step-card p { color: var(--text-body); font-size: 15px; line-height: 1.7; }
.step-card p:last-child { margin-bottom: 0; }
.vision {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(26,111,196,.065) 0, rgba(26,111,196,0) 34rem),
    linear-gradient(180deg, #f4f9fd 0%, #f7fbff 100%);
}
.vision.section { padding: 54px 0; }
.vision-grid { display: grid; grid-template-columns: minmax(0, 40fr) minmax(0, 60fr); gap: clamp(30px, 5vw, 58px); align-items: center; }
.vision-grid > div {
  position: relative;
  padding-left: 24px;
}
.vision-grid > div::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), rgba(26,111,196,.16));
}
.vision-grid h2 { margin-bottom: 0; font-size: clamp(27px, 3vw, 36px); line-height: 1.12; }
.quote {
  position: relative;
  margin: 0;
  padding: 28px 30px 26px;
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 54px rgba(26,31,46,.07);
  backdrop-filter: blur(14px);
}
.quote::before {
  content: "“";
  position: absolute;
  top: -24px;
  right: 28px;
  color: rgba(26,111,196,.14);
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
}
.quote p { position: relative; margin-bottom: 18px; color: var(--text-dark); font-size: clamp(18px, 1.8vw, 22px); font-weight: 650; line-height: 1.48; }
.quote cite { position: relative; color: var(--text-muted); font-size: 14px; font-style: italic; }

.footer {
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 12% 0%, rgba(26,111,196,.16), rgba(26,111,196,0) 25rem),
    #141a29;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding-top: 42px;
  padding-bottom: 34px;
}
.footer-main > div { min-width: 0; }
.footer-brand p { max-width: 18rem; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.55; }
.footer-logo {
  display: block;
  width: auto;
  height: 34px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-title { margin-bottom: 12px; color: rgba(255,255,255,.46); font-size: 10px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.footer p, .footer a { display: block; margin: 0 0 7px; max-width: 100%; overflow-wrap: anywhere; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.42; }
.footer a:hover { color: var(--blue-mid); }
.footer strong { color: rgba(255,255,255,.88); font-weight: 650; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  text-align: left;
  font-size: 12px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.footer-legal a {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

/* Global polish: one page background, lighter surfaces, fewer visual breaks. */
main {
  background: transparent;
}
.hero,
.about-strip,
.stats-row,
.services,
.pricing,
.blog-section,
.contact,
.process,
.vision {
  background: transparent !important;
}
.hero::before,
.hero-panel::before,
.services::before,
.pricing::before,
.contact::before,
.process::before,
.vision::before {
  display: none !important;
}
.hero-panel,
.about-content,
.stats-row-grid,
.services .card,
.pricing-card,
.blog-card,
.form-card,
.cal-card,
.step-card,
.quote,
.single-post-content {
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 28px rgba(26,31,46,.045);
}
.hero-panel,
.form-card,
.cal-card,
.quote {
  backdrop-filter: blur(10px);
}
.card:hover,
.services .card:hover,
.blog-card:hover,
.step-card:hover {
  box-shadow: 0 16px 34px rgba(26,111,196,.075);
  transform: translateY(-1px);
}
.pricing-card.featured {
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 42px rgba(26,111,196,.10);
  transform: translateY(-6px);
}
.pricing-card.featured:hover {
  transform: translateY(-8px);
}
.hero-panel-row,
.hero-panel-footer div,
.about-point,
.stat-icon,
.service-icon,
.plan-icon,
.blog-date {
  background: rgba(232,241,251,.72);
}
.section-head,
.center-head {
  margin-bottom: 34px;
}

/* ============================================================
   BLOG POST (single.php)
   ============================================================ */
.single-post-page {
  min-height: 70vh;
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at 72% 6%, rgba(26,111,196,.08) 0, rgba(26,111,196,0) 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
/* Reading column — centred, comfortable measure */
.single-post-shell {
  max-width: 820px;
  margin: 0 auto;
}
.single-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  transition: gap .2s ease;
}
.single-back:hover { gap: 12px; }
.single-back .lucide { width: 16px; height: 16px; }

.single-post-head {
  margin-bottom: 26px;
  text-align: center;
}
.single-post-head .eyebrow { margin-bottom: 12px; }
.single-post-head h1 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.12;
}
.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.single-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.single-post-meta-item a { color: var(--blue); }
.single-post-meta-item .lucide { width: 15px; height: 15px; color: var(--blue); }

.single-post-cover {
  max-width: 900px;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(26,31,46,.08);
}
.single-post-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-post-content {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(26,31,46,.055);
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.8;
}
.single-post-content > *:first-child { margin-top: 0; }
.single-post-content > *:last-child { margin-bottom: 0; }
.single-post-content p { margin: 0 0 22px; }
/* Nice intro paragraph */
.single-post-content > p:first-of-type {
  color: var(--text-dark);
  font-size: 19px;
  line-height: 1.7;
}
.single-post-content h2 {
  margin: 40px 0 16px;
  font-size: clamp(23px, 2.4vw, 29px);
  line-height: 1.25;
}
.single-post-content h3 {
  margin: 32px 0 12px;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.3;
}
.single-post-content h4 { margin: 26px 0 10px; color: var(--text-dark); font-size: 17px; }
.single-post-content ul,
.single-post-content ol { margin: 0 0 22px; padding-left: 4px; list-style: none; }
.single-post-content ul li,
.single-post-content ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  line-height: 1.7;
}
.single-post-content ul li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.single-post-content ol { counter-reset: fv-ol; }
.single-post-content ol li { counter-increment: fv-ol; }
.single-post-content ol li::before {
  content: counter(fv-ol);
  position: absolute;
  top: .05em;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.single-post-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,111,196,.35);
}
.single-post-content a:hover { text-decoration-color: var(--blue); }
.single-post-content strong { color: var(--text-dark); font-weight: 700; }
.single-post-content img {
  height: auto;
  margin: 26px 0;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(26,31,46,.10);
}
.single-post-content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: rgba(232,241,251,.55);
  color: var(--text-dark);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}
.single-post-content blockquote p:last-child { margin-bottom: 0; }
.single-post-content pre {
  margin: 24px 0;
  padding: 18px 20px;
  overflow-x: auto;
  border-radius: 12px;
  background: #141a29;
  color: #e6edf6;
  font-size: 14px;
  line-height: 1.6;
}
.single-post-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(26,111,196,.09);
  color: var(--blue-hover);
  font-size: .92em;
}
.single-post-content pre code { padding: 0; background: transparent; color: inherit; }
.single-post-content hr { margin: 34px 0; border: 0; border-top: 1px solid var(--border); }
.single-post-content figure { margin: 26px 0; }
.single-post-content figcaption {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}
.single-post-content .wp-block-table,
.single-post-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 15px;
}
.single-post-content table th,
.single-post-content table td {
  padding: 11px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.single-post-content table th {
  background: var(--blue-light);
  color: var(--text-dark);
  font-weight: 700;
}
.single-post-content table tr:nth-child(even) td { background: rgba(247,249,252,.7); }

/* Tags */
.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 13px;
}
.single-post-tags .lucide { width: 15px; height: 15px; color: var(--blue); }
.single-post-tags a {
  padding: 6px 12px;
  border: 1px solid rgba(26,111,196,.16);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.single-post-tags a:hover { color: #fff; background: var(--blue); }

/* Inline CTA under the article */
.single-post-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 820px;
  margin: 30px auto 0;
  padding: 26px 30px;
  border: 1px solid rgba(26,111,196,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232,241,251,.85), rgba(255,255,255,.9));
  box-shadow: 0 16px 38px rgba(26,111,196,.08);
}
.single-post-cta strong { display: block; color: var(--text-dark); font-size: 18px; }
.single-post-cta p { margin: 4px 0 0; color: var(--text-body); font-size: 14px; }
.single-post-cta .fv-btn { flex: 0 0 auto; }

/* "More posts" section reuses .blog-grid / .blog-card */
.single-post-more { margin-top: 60px; }
.single-post-more .section-head { margin-bottom: 30px; }

/* ============================================================
   BLOG ARCHIVE + LEGAL / CONTENT PAGES (index.php)
   ============================================================ */
.blog-archive,
.content-page {
  min-height: 60vh;
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at 72% 6%, rgba(26,111,196,.07) 0, rgba(26,111,196,0) 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.content-page-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.content-page-head h1 { margin-bottom: 14px; }
.content-page-lead {
  margin: 0;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.6;
}
.blog-pagination { margin-top: 44px; }
.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-body);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.blog-pagination a:hover { color: var(--blue); border-color: var(--blue-mid); background: var(--blue-light); }
.blog-pagination .current {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

/* Legal / content page reading column */
.content-shell { max-width: 820px; margin: 0 auto; }
.content-shell-center { text-align: center; }
.content-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.content-body {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(26,31,46,.055);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
}
.content-body > *:first-child { margin-top: 0; }
.content-body > *:last-child { margin-bottom: 0; }
.content-body p { margin: 0 0 20px; }
.content-body h2 { margin: 34px 0 14px; font-size: clamp(21px, 2.2vw, 26px); }
.content-body h3 { margin: 26px 0 10px; font-size: 19px; }
.content-body ul,
.content-body ol { margin: 0 0 20px; padding-left: 22px; }
.content-body li { margin-bottom: 8px; line-height: 1.7; }
.content-body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,111,196,.35);
}
.content-body a:hover { text-decoration-color: var(--blue); }
.content-body strong { color: var(--text-dark); }
.content-body table { width: 100%; margin: 20px 0; border-collapse: collapse; font-size: 15px; }
.content-body th,
.content-body td { padding: 10px 13px; border: 1px solid var(--border); text-align: left; }
.content-body th { background: var(--blue-light); color: var(--text-dark); font-weight: 700; }

@media (max-width: 1180px) {
  .container { max-width: 980px; }
  .pricing-card {
    padding: 28px 22px;
  }
  .pricing-grid { gap: 18px; }
}

@media (max-width: 980px) {
  .container { max-width: 760px; padding: 0 28px; }
  h1 { font-size: clamp(38px, 6.6vw, 48px); }
  .nav-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-menu-wrap, .nav-cta-group { display: none; }
  .hamburger { display: grid; place-items: center; }
  .nav-menu-wrap.is-open {
    position: fixed;
    left: 28px;
    right: 28px;
    top: 74px;
    display: block;
    padding: 8px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(226,232,240,.86);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(26,31,46,.13);
    backdrop-filter: blur(16px);
  }
  .nav-menu-wrap.is-open .nav-links { display: grid; gap: 4px; justify-content: stretch; }
  .nav-menu-wrap.is-open .nav-links li { min-width: 0; }
  .nav-menu-wrap.is-open a {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 12px;
    color: var(--text-dark);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 650;
  }
  .nav-menu-wrap.is-open a:hover {
    color: var(--blue);
    border-color: var(--blue-mid);
    background: var(--blue-light);
  }
  .nav-menu-wrap.is-open a .lucide { display: block; }
  .about-grid, .vision-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-statement { padding-left: 0; }
  .about-content { padding: 22px; }
  .vision-grid { align-items: start; }
  .footer-main { grid-template-columns: 1.2fr .8fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 58px; padding-bottom: 54px; }
  .hero-copy { width: 100%; }
  .hero-copy p { max-width: 100%; }
  .hero-panel { width: min(100%, 36rem); max-width: none; }
  .stats-row-grid, .cards-grid, .pricing-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-row-item + .stats-row-item { border-left: 0; }
  .stats-row-item:nth-child(even) { border-left: 1px solid rgba(226,232,240,.82); }
  .stats-row-item:nth-child(n+3) { border-top: 1px solid rgba(226,232,240,.82); }
  .pricing-card.featured, .pricing-card.featured:hover { transform: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .step-card, .step-card:nth-child(4), .step-card:nth-child(5) { grid-column: auto; }
  .step-card { min-height: auto; }
}

@media (max-width: 680px) {
  body { font-size: 15px; line-height: 1.65; }
  .container { max-width: none; padding: 0 22px; }
  .section { padding: 48px 0; }
  h1 { font-size: clamp(29px, 8.2vw, 36px); line-height: 1.12; margin-bottom: 16px; }
  h2 { font-size: clamp(24px, 6.8vw, 30px); }
  h3 { font-size: 17px; }
  .eyebrow { max-width: 100%; font-size: 10px; letter-spacing: .06em; line-height: 1.5; }
  .fv-btn { width: 100%; min-height: 48px; padding-right: 18px; padding-left: 18px; font-size: 15px; }
  .site-nav { height: 60px; }
  .nav-inner { height: 60px; }
  .logo-img { height: 34px; max-width: 210px; }
  .hamburger { width: 42px; height: 42px; }
  .nav-menu-wrap.is-open { left: 18px; right: 18px; top: 68px; padding: 8px; }
  .hero { background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%); }
  .hero::before { inset: auto -30% -22% 16%; height: 16rem; filter: blur(30px); }
  .hero-grid { gap: 28px; padding-top: 36px; padding-bottom: 42px; }
  .hero-kicker {
    margin-bottom: 14px;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: .055em;
  }
  .hero-kicker .lucide { width: 13px; height: 13px; }
  .hero-panel {
    gap: 10px;
    padding: 13px;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(26,31,46,.10);
  }
  .hero-panel-head,
  .hero-panel-footer { display: none; }
  .hero-panel-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 11px;
    border-radius: 12px;
  }
  .hero-panel-row .lucide { width: 38px; height: 38px; border-radius: 11px; }
  .hero-panel-row strong { font-size: 14px; }
  .hero-panel-row small { font-size: 11px; }
  .hero-copy p { max-width: 100%; margin-bottom: 22px; font-size: 15px; line-height: 1.62; }
  .hero-actions { display: grid; gap: 12px; }
  .about-strip { padding: 42px 0; }
  .about-grid { gap: 20px; }
  .about-statement { padding-left: 0; }
  .about-kicker { margin-bottom: 12px; font-size: 10px; letter-spacing: .075em; }
  .about-quote { font-size: 22px; line-height: 1.3; }
  .about-content { padding: 18px; border-radius: 16px; }
  .about-content > p { font-size: 15px; line-height: 1.65; }
  .about-points { display: grid; gap: 8px; margin-top: 16px; }
  .about-point { width: 100%; border-radius: 12px; padding: 11px 12px; }
  .contact .center-head { margin-bottom: 30px; }
  .contact-grid { gap: 18px; }
  .form-card { padding: 22px; border-radius: 16px; }
  .pricing .center-head { margin-bottom: 34px; }
  .pricing-card { padding: 26px 20px; border-radius: 16px; }
  .pricing-card.featured { box-shadow: 0 18px 44px rgba(26,111,196,.12); }
  .badge { top: 14px; right: 14px; font-size: 11px; }
  .plan-icon { width: 42px; height: 42px; margin-bottom: 18px; }
  .plan-title { padding-right: 0; }
  .featured .plan-title { padding-right: 74px; }
  .price { font-size: 24px; }
  .featured .price { font-size: 27px; }
  .stats-row { padding-top: 38px; padding-bottom: 46px; }
  .stats-row-grid, .cards-grid, .pricing-grid, .blog-grid, .form-grid, .steps-grid, .footer-main, .contact-grid { grid-template-columns: 1fr; }
  .stats-row-grid { width: calc(100% - 36px); margin-right: auto; margin-left: auto; border-radius: 16px; }
  .stats-row-item {
    min-height: auto;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
  }
  .stats-row-item + .stats-row-item,
  .stats-row-item:nth-child(even) {
    border-left: 0;
  }
  .stats-row-item:nth-child(n+2) {
    border-top: 1px solid rgba(226,232,240,.82);
  }
  .stats-row-item::after { display: none; }
  .stat-icon { grid-row: span 3; margin-bottom: 0; }
  .cal-card { border-radius: 16px; }
  .cal-card, #my-cal-inline-30min { min-height: 560px; }
  .stats-row-number { font-size: 25px; }
  .stats-row-label { margin-bottom: 4px; }
  .stats-row-text { grid-column: 2; }
  .card { padding: 22px; }
  .services .card { min-height: auto; padding: 26px 22px; border-radius: 14px; }
  .blog-card-link,
  .blog-card-empty { min-height: auto; padding: 24px 22px; }
  .section-link { margin-top: -14px; }
  .service-icon { width: 46px; height: 46px; margin-bottom: 18px; }
  .pricing-card .fv-btn { margin-top: 14px; }
  .divider { margin: 22px 0; }
  .features { gap: 10px; }
  .process .center-head { margin-bottom: 34px; }
  .step-card { min-height: auto; padding: 30px 22px 22px; border-radius: 16px; }
  .step-card:hover { transform: none; }
  .step-card::before {
    top: -16px;
    left: 20px;
    width: 38px;
    height: 38px;
    border-width: 5px;
    font-size: 14px;
  }
  .step-card h3 { font-size: 18px; }
  .step-card p { font-size: 15px; line-height: 1.62; }
  .vision-grid > div { padding-left: 18px; }
  .vision-grid > div::before { width: 2px; }
  .vision.section { padding: 42px 0; }
  .vision-grid h2 { font-size: 27px; }
  .quote { padding: 22px 20px 20px; border-radius: 16px; }
  .quote::before { top: -14px; right: 18px; font-size: 72px; }
  .quote p { margin-bottom: 14px; font-size: 17px; line-height: 1.55; }
  .footer-main { grid-template-columns: 1fr; gap: 22px; padding-top: 34px; padding-bottom: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-logo { height: 32px; margin-bottom: 12px; }
  .footer-title { margin-bottom: 10px; }
  .footer p, .footer a { margin-bottom: 6px; }
  .footer-bottom { display: grid; gap: 12px; padding-top: 16px; padding-bottom: 18px; }
  .footer-legal { justify-content: flex-start; gap: 10px 12px; }
  .section-head { grid-template-columns: 1fr; }
  .single-post-page { padding: 40px 0 58px; }
  .blog-archive, .content-page { padding: 40px 0 58px; }
  .single-post-content { padding: 22px; border-radius: 16px; font-size: 16px; line-height: 1.75; }
  .single-post-content > p:first-of-type { font-size: 17px; }
  .single-post-content h2 { margin-top: 30px; }
  .content-body { padding: 22px; border-radius: 16px; }
  .single-back { margin-bottom: 22px; }
  .single-post-head { margin-bottom: 22px; }
  .single-post-head h1 { margin-bottom: 16px; }
  .single-post-cover { border-radius: 16px; margin-bottom: 24px; }
  .single-post-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border-radius: 16px;
  }
  .single-post-cta .fv-btn { width: 100%; }
  .single-post-more { margin-top: 46px; }
  .content-page-head { margin-bottom: 30px; }
  .content-page-lead { font-size: 16px; }
}

@media (max-width: 390px) {
  .container { padding: 0 18px; }
  h1 { font-size: 29px; line-height: 1.13; }
  .hero-grid { padding-top: 32px; gap: 24px; }
  .hero-copy p { font-size: 14px; line-height: 1.6; }
  .hero-kicker { font-size: 9px; }
  .logo-text { font-size: 11px; letter-spacing: .035em; }
}
