:root {
  --sf-bg: #f8fafc;
  --sf-bg-soft: #fafaf8;
  --sf-text: #07111f;
  --sf-muted: #475569;
  --sf-line: #e2e8f0;
  --sf-blue: #2563eb;
  --sf-green: #22c55e;
  --sf-blue-soft: #dbeafe;
  --sf-green-soft: #dcfce7;
  --sf-navy: #0b1220;
  --sf-radius: 22px;
  --sf-radius-sm: 14px;
  --sf-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  --sf-header-height: 82px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(250, 250, 248, 0.98)), var(--sf-bg);
  color: var(--sf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text,
.sf-skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sf-skip-link:focus {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--sf-shadow);
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.sf-shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.sf-section {
  padding: 86px 0;
}

.sf-section.tight {
  padding: 34px 0 62px;
}

.sf-section.dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.26), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(34, 197, 94, 0.16), transparent 26%),
    linear-gradient(135deg, #07111f, #0b1220 52%, #0d1829);
}

.sf-section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.sf-section.dark > * {
  position: relative;
}

.sf-site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.sf-header-inner {
  min-height: var(--sf-header-height);
  width: min(100% - 36px, 1220px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.sf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.sf-logo-frame {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--sf-line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.sf-logo-frame img,
.custom-logo-link img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sf-brand-text {
  display: grid;
  line-height: 1.05;
}

.sf-brand-text strong {
  font-size: .98rem;
  letter-spacing: 0;
}

.sf-brand-text small {
  color: var(--sf-muted);
  font-size: .72rem;
  margin-top: 4px;
}

.sf-nav,
.sf-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sf-nav > li {
  position: relative;
}

.sf-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  color: #1f2937;
  font-size: .91rem;
  font-weight: 650;
}

.sf-nav a:hover,
.sf-nav a:focus-visible {
  background: #eff6ff;
  color: var(--sf-blue);
}

.sf-dropdown,
.sf-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--sf-shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: .18s ease;
}

.has-dropdown:hover .sf-dropdown,
.has-dropdown:focus-within .sf-dropdown,
.sf-nav li:hover > .sub-menu,
.sf-nav li:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.sf-dropdown a,
.sf-nav .sub-menu a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
}

.sf-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.sf-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--sf-line);
  border-radius: 999px;
  color: var(--sf-muted);
  font-size: .78rem;
  font-weight: 750;
  background: rgba(255, 255, 255, .78);
}

.sf-language-switcher ul {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.sf-button:hover {
  transform: translateY(-1px);
}

.sf-button-primary,
.sf-button-header {
  background: var(--sf-blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.sf-button-secondary {
  background: #fff;
  color: var(--sf-text);
  border-color: var(--sf-line);
}

.sf-button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.sf-button-light {
  background: #fff;
  color: var(--sf-text);
}

.sf-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--sf-line);
  border-radius: 999px;
  background: #fff;
}

.sf-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--sf-text);
}

.sf-mobile-panel {
  width: min(100% - 36px, 1220px);
  margin: 0 auto 16px;
  padding: 18px;
  border: 1px solid var(--sf-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--sf-shadow);
}

.sf-mobile-nav {
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  gap: 6px;
  margin-bottom: 14px;
}

.sf-mobile-nav li,
.sf-mobile-nav a {
  width: 100%;
}

.sf-mobile-nav a {
  display: flex;
  padding: 11px 12px;
  border-radius: 12px;
  background: #f8fafc;
  font-weight: 750;
}

.sf-mobile-nav .sf-dropdown,
.sf-mobile-nav .sub-menu {
  position: static;
  display: grid;
  min-width: 0;
  padding: 6px 0 0 14px;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.sf-hero,
.sf-page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
}

.sf-hero::before,
.sf-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(219, 234, 254, 0.82), transparent 31%),
    radial-gradient(circle at 84% 8%, rgba(220, 252, 231, 0.70), transparent 28%);
  pointer-events: none;
}

.sf-hero-grid,
.sf-page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 52px;
}

.sf-page-hero.compact {
  padding: 72px 0 48px;
}

.sf-hero-copy h1,
.sf-page-hero h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: .96;
  letter-spacing: 0;
}

.sf-page-hero h1 {
  font-size: clamp(2.55rem, 4.4vw, 4.7rem);
}

.sf-about-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
}

.sf-team-mini {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(219, 234, 254, .9), transparent 36%),
    radial-gradient(circle at 84% 18%, rgba(220, 252, 231, .72), transparent 30%),
    rgba(255, 255, 255, .86);
  box-shadow: var(--sf-shadow);
}

.sf-team-mini-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
}

.sf-team-mini-header span {
  color: var(--sf-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sf-team-mini-header strong {
  max-width: 180px;
  text-align: right;
  font-size: .92rem;
  line-height: 1.25;
}

.sf-team-mini-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.sf-team-mini-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--sf-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

.sf-hero-copy p,
.sf-page-hero p,
.sf-section-intro p,
.sf-dark-intro p {
  color: var(--sf-muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.sf-hero-copy > p {
  max-width: 710px;
  font-size: 1.14rem;
}

.sf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sf-blue);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sf-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sf-green);
}

.sf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.sf-trust-note {
  margin-top: 14px;
  color: var(--sf-muted);
  font-size: .92rem !important;
}

.sf-hero-visual {
  position: relative;
  min-height: 520px;
}

.sf-visual-orbit {
  position: absolute;
  inset: 7%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 52%),
    conic-gradient(from 120deg, rgba(37, 99, 235, 0.16), rgba(34, 197, 94, 0.18), rgba(37, 99, 235, 0.16));
  filter: blur(16px);
  opacity: .9;
  animation: sfFloat 7s ease-in-out infinite;
}

.sf-visual-path {
  position: absolute;
  inset: 20% 7% auto;
  height: 150px;
  border-radius: 999px;
  border-top: 2px solid rgba(37, 99, 235, .22);
  transform: rotate(-8deg);
}

.sf-visual-path span {
  position: absolute;
  top: -6px;
  left: 6%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--sf-green);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, .15);
  animation: sfPathMove 7s ease-in-out infinite;
}

.sf-visual-panel {
  position: relative;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--sf-shadow);
  backdrop-filter: blur(18px);
}

.sf-visual-head,
.sf-flow-node,
.sf-dashboard-card {
  border: 1px solid var(--sf-line);
  background: rgba(255, 255, 255, 0.88);
}

.sf-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 17px;
  color: var(--sf-muted);
  font-size: .82rem;
  font-weight: 800;
}

.sf-visual-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.sf-flow-node {
  min-height: 92px;
  padding: 12px;
  border-radius: 16px;
}

.sf-flow-node span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--sf-blue);
  font-size: .72rem;
  font-weight: 850;
}

.sf-flow-node strong {
  display: block;
  font-size: .84rem;
  line-height: 1.25;
}

.sf-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sf-dashboard-card {
  min-height: 132px;
  padding: 16px;
  border-radius: 20px;
}

.sf-dashboard-card.wide {
  grid-column: 1 / -1;
}

.sf-dashboard-card small {
  color: var(--sf-muted);
  font-weight: 800;
}

.sf-chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 72px;
  margin-top: 16px;
}

.sf-chart-bars i {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--sf-blue), #93c5fd);
}

.sf-chart-bars i:nth-child(1) { height: 36%; }
.sf-chart-bars i:nth-child(2) { height: 58%; }
.sf-chart-bars i:nth-child(3) { height: 44%; }
.sf-chart-bars i:nth-child(4) { height: 78%; }

.sf-chart-line {
  position: relative;
  height: 78px;
  margin-top: 12px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, transparent 46%, rgba(34, 197, 94, .52) 47%, rgba(34, 197, 94, .52) 52%, transparent 53%),
    linear-gradient(180deg, #f8fafc, #ecfdf5);
}

.sf-progress {
  height: 14px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.sf-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sf-blue), var(--sf-green));
}

.sf-outcome-grid,
.sf-card-grid {
  display: grid;
  gap: 18px;
}

.sf-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sf-outcome-card,
.sf-card,
.sf-solution-card,
.sf-form-card {
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.sf-outcome-card {
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sf-outcome-card:hover,
.sf-card:hover,
.sf-solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sf-shadow);
}

.sf-outcome-card span,
.sf-process-step span,
.sf-journey-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--sf-blue);
  font-size: .78rem;
  font-weight: 900;
}

.sf-outcome-card h3,
.sf-card h3,
.sf-card h2,
.sf-solution-card h3,
.sf-solution-card h2 {
  margin: 16px 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.sf-outcome-card p,
.sf-card p,
.sf-solution-card p,
.sf-process-step p {
  color: var(--sf-muted);
  line-height: 1.64;
}

.sf-split,
.sf-two-column,
.sf-audit-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.sf-diagnosis {
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, #eff6ff, #f8fafc 44%, #ecfdf5);
}

.sf-split h2,
.sf-section-intro h2,
.sf-dark-intro h2 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.02;
}

.sf-problem-list {
  display: grid;
  gap: 12px;
}

.sf-problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.sf-problem-item span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff;
  color: var(--sf-blue);
  font-weight: 900;
}

.sf-problem-item p {
  margin: 0;
  color: #1f2937;
  font-weight: 720;
}

.sf-system-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 20%, rgba(219, 234, 254, 0.95), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(220, 252, 231, 0.72), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(248,250,252,0.88));
  box-shadow: var(--sf-shadow);
}

.sf-journey,
.sf-process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.sf-journey-step,
.sf-process-step {
  position: relative;
  padding: 16px;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.sf-journey-step strong {
  display: block;
  margin-top: 12px;
  font-size: .94rem;
}

.sf-section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.sf-services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.sf-card-grid.services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sf-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sf-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sf-card,
.sf-solution-card {
  padding: 24px;
}

.sf-service-card.featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 18% 16%, rgba(219, 234, 254, .9), transparent 36%),
    linear-gradient(135deg, #fff, #f8fafc);
}

.sf-service-visual {
  position: relative;
  width: 100%;
  height: 126px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: 20px;
  background:
    linear-gradient(rgba(37, 99, 235, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .055) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(219, 234, 254, .96), transparent 38%),
    #fff;
  background-size: 26px 26px, 26px 26px, auto, auto;
}

.sf-service-visual .v-node,
.sf-service-visual .v-panel,
.sf-service-visual .v-line {
  position: absolute;
  display: block;
}

.sf-service-visual .v-node {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  border: 6px solid var(--sf-blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .2);
}

.sf-service-visual .node-a { left: 18%; top: 28%; }
.sf-service-visual .node-b { left: 46%; top: 54%; border-color: var(--sf-green); }
.sf-service-visual .node-c { right: 17%; top: 24%; }

.sf-service-visual .v-line {
  height: 2px;
  width: 38%;
  background: linear-gradient(90deg, rgba(37, 99, 235, .22), rgba(34, 197, 94, .42));
  transform-origin: left center;
}

.sf-service-visual .line-a { left: 24%; top: 43%; transform: rotate(23deg); }
.sf-service-visual .line-b { left: 51%; top: 51%; transform: rotate(-24deg); }

.sf-service-visual .v-panel {
  width: 68px;
  height: 38px;
  border-radius: 13px;
  border: 1px solid var(--sf-line);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.sf-service-visual .panel-a { left: 9%; bottom: 13%; }
.sf-service-visual .panel-b { right: 9%; bottom: 14%; }

.sf-service-visual-google-ads-ppc .v-panel,
.sf-service-visual-social-ads .v-panel {
  height: 54px;
  background: linear-gradient(180deg, #fff, #eff6ff);
}

.sf-service-visual-landing-pages-cro .panel-a,
.sf-service-visual-landing-pages-cro .panel-b {
  width: 86px;
  height: 60px;
  border-radius: 16px 16px 8px 8px;
}

.sf-service-visual-local-seo-reputation-growth .node-b {
  width: 28px;
  height: 28px;
  border-radius: 999px 999px 999px 4px;
  transform: rotate(-45deg);
}

.sf-service-visual-content-marketing-brand-authority .v-panel {
  width: 78px;
  height: 48px;
  border-left: 5px solid var(--sf-blue);
}

.sf-service-visual-marketing-automation-analytics .v-line {
  background: linear-gradient(90deg, rgba(34, 197, 94, .55), rgba(37, 99, 235, .38));
}

.sf-card-kicker {
  margin: 0;
  color: var(--sf-blue) !important;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sf-icon-dot {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 32%, #fff, transparent 34%),
    linear-gradient(135deg, var(--sf-blue), var(--sf-green));
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.20);
}

.sf-text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sf-blue);
  font-weight: 900;
}

.sf-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sf-solution-card:nth-child(2) {
  background:
    radial-gradient(circle at 80% 16%, rgba(220, 252, 231, .86), transparent 34%),
    rgba(255, 255, 255, .92);
}

.sf-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.sf-tag-list span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid var(--sf-line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: .82rem;
  font-weight: 750;
}

.sf-team-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(219, 234, 254, .74), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(220, 252, 231, .68), transparent 26%),
    #fff;
}

.sf-team-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.sf-team-note {
  padding: 18px;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.sf-team-note strong,
.sf-team-note span {
  display: block;
}

.sf-team-note strong {
  color: var(--sf-text);
  font-size: .92rem;
}

.sf-team-note span {
  margin-top: 6px;
  color: var(--sf-muted);
  font-size: .86rem;
  line-height: 1.55;
}

.sf-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sf-team-card {
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 52px rgba(15, 23, 42, .08);
}

.sf-team-photo {
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #ecfdf5);
}

.sf-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-team-meta {
  padding: 18px 18px 20px;
}

.sf-team-meta h3 {
  margin: 0;
  color: var(--sf-text);
  font-size: 1.18rem;
}

.sf-team-meta p {
  margin: 6px 0 0;
  color: var(--sf-muted);
  font-weight: 750;
}

.sf-dark-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.sf-dark-intro p {
  color: rgba(226, 232, 240, .86);
}

.sf-dark-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--sf-radius);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.sf-dark-card h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.18rem;
}

.sf-dark-card p {
  color: rgba(226, 232, 240, .82);
  line-height: 1.65;
}

.sf-process-line {
  position: relative;
}

.sf-process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 33px;
  height: 2px;
  background: linear-gradient(90deg, var(--sf-blue), var(--sf-green));
}

.sf-process-step {
  z-index: 1;
  background: #fff;
}

.sf-audit-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(219, 234, 254, .86), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(220, 252, 231, .72), transparent 26%),
    #f8fafc;
}

.sf-form-card {
  padding: 18px;
}

.sf-audit-form {
  display: grid;
  gap: 14px;
}

.sf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sf-audit-form label {
  display: grid;
  gap: 7px;
}

.sf-audit-form span {
  color: #334155;
  font-size: .86rem;
  font-weight: 800;
}

.sf-audit-form input,
.sf-audit-form select,
.sf-audit-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--sf-line);
  border-radius: 14px;
  background: #fff;
  color: var(--sf-text);
}

.sf-audit-form textarea {
  resize: vertical;
}

.sf-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.sf-check-list li {
  position: relative;
  padding-left: 30px;
  color: #243145;
  line-height: 1.55;
}

.sf-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sf-blue), var(--sf-green));
}

.sf-faq-list {
  display: grid;
  gap: 10px;
}

.sf-faq {
  border: 1px solid var(--sf-line);
  border-radius: 16px;
  background: #fff;
}

.sf-faq summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 850;
}

.sf-faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--sf-muted);
  line-height: 1.66;
}

.sf-readable {
  max-width: 820px;
}

.sf-readable > * {
  line-height: 1.72;
}

.sf-readable a {
  color: var(--sf-blue);
  font-weight: 800;
}

.sf-post-grid {
  display: grid;
  gap: 18px;
}

.sf-spacer {
  height: 22px;
}

.mt {
  margin-top: 22px;
}

.sf-site-footer {
  color: #d9e4f2;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, .18), transparent 30%),
    linear-gradient(135deg, #07111f, #0b1220 58%, #111827);
}

.sf-footer-cta,
.sf-footer-grid,
.sf-footer-bottom {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.sf-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sf-footer-cta h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.sf-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding: 42px 0;
}

.sf-footer-brand .sf-brand {
  color: #fff;
}

.sf-footer-brand .sf-brand small {
  color: #a8b7ca;
}

.sf-footer-brand p,
.sf-footer-bottom p {
  color: #a8b7ca;
  line-height: 1.64;
}

.sf-footer-email,
.sf-social-links a,
.sf-site-footer a {
  color: #d9e4f2;
}

.sf-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.sf-social-links a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .84rem;
}

.sf-site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: .95rem;
}

.sf-site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sf-site-footer li,
.sf-site-footer li a {
  color: #a8b7ca;
  font-size: .94rem;
  line-height: 1.45;
}

.sf-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.sf-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 99;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.sf-whatsapp-card {
  position: relative;
  width: min(330px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid var(--sf-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--sf-shadow);
}

.sf-whatsapp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sf-green), var(--sf-blue));
}

.sf-whatsapp-card strong {
  display: block;
  padding-right: 26px;
  color: var(--sf-text);
}

.sf-whatsapp-card p {
  margin: 8px 0 14px;
  color: var(--sf-muted);
  line-height: 1.5;
}

.sf-whatsapp-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-weight: 850;
}

.sf-whatsapp-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--sf-text);
  cursor: pointer;
}

.sf-whatsapp-button {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 18px 44px rgba(22, 163, 74, .35);
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sf-whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(22, 163, 74, .44);
}

.sf-whatsapp-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sfFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes sfPathMove {
  0%, 100% { transform: translateX(0); opacity: .7; }
  50% { transform: translateX(520px); opacity: 1; }
}

body.rtl,
[dir="rtl"] body {
  text-align: right;
}

body.rtl .sf-check-list li,
[dir="rtl"] .sf-check-list li {
  padding-left: 0;
  padding-right: 30px;
}

body.rtl .sf-check-list li::before,
[dir="rtl"] .sf-check-list li::before {
  left: auto;
  right: 0;
}

@media (max-width: 1080px) {
  .sf-desktop-nav {
    display: none;
  }

  .sf-header-inner {
    grid-template-columns: auto 1fr;
  }

  .sf-header-actions {
    grid-column: 2;
  }

  .sf-menu-toggle {
    display: block;
  }

  .sf-button-header,
  .sf-header-actions .sf-language-switcher {
    display: none;
  }

  .sf-hero-grid,
  .sf-page-hero-grid,
  .sf-about-hero-grid,
  .sf-split,
  .sf-two-column,
  .sf-audit-grid,
  .sf-system-panel {
    grid-template-columns: 1fr;
  }

  .sf-hero-visual {
    min-height: 440px;
  }

  .sf-outcome-grid,
  .sf-card-grid.services,
  .sf-card-grid.four,
  .sf-footer-grid,
  .sf-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-team-head {
    grid-template-columns: 1fr;
  }

  .sf-service-card.featured {
    grid-column: span 1;
  }

  .sf-journey,
  .sf-process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sf-process-line::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .sf-shell,
  .sf-footer-cta,
  .sf-footer-grid,
  .sf-footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .sf-section {
    padding: 62px 0;
  }

  .sf-hero,
  .sf-page-hero {
    padding: 56px 0 48px;
  }

  .sf-hero-copy h1,
  .sf-page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 1.02;
  }

  .sf-hero-copy p,
  .sf-page-hero p,
  .sf-section-intro p,
  .sf-dark-intro p {
    font-size: 1rem;
  }

  .sf-visual-flow,
  .sf-dashboard-grid,
  .sf-outcome-grid,
  .sf-card-grid.services,
  .sf-card-grid.three,
  .sf-card-grid.four,
  .sf-solution-grid,
  .sf-form-grid,
  .sf-footer-grid,
  .sf-team-grid {
    grid-template-columns: 1fr;
  }

  .sf-hero-visual {
    min-height: auto;
  }

  .sf-visual-panel {
    margin-top: 0;
  }

  .sf-system-panel {
    padding: 24px;
  }

  .sf-journey,
  .sf-process-line {
    grid-template-columns: 1fr;
  }

  .sf-footer-cta,
  .sf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sf-brand-text small {
    display: none;
  }

  .sf-whatsapp-button {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
/* =========================================================
   Solution Firms — Premium Hero + WhatsApp Refinement v2
   Add this at the very bottom of assets/css/theme.css
   ========================================================= */

@media (min-width: 1081px) {
  .sf-hero {
    padding-top: 86px;
    padding-bottom: 82px;
  }

  .sf-hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
    gap: 46px;
  }

  .sf-hero .sf-hero-copy {
    position: relative;
    z-index: 3;
  }

  .sf-hero .sf-hero-visual {
    min-height: 540px;
    transform: translate(18px, -16px) scale(0.90);
    transform-origin: center right;
  }

  .sf-hero .sf-hero-visual-clean-glass {
    max-width: 610px;
    border-radius: 36px;
    box-shadow:
      0 34px 84px rgba(15, 23, 42, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .sf-hero .sf-hero-visual-clean-glass::before {
    inset: 16px;
    border-radius: 30px;
  }
}

/* Premium WhatsApp behavior: icon first, card on hover/focus */
.sf-whatsapp-card {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sf-whatsapp:hover .sf-whatsapp-card,
.sf-whatsapp:focus-within .sf-whatsapp-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sf-whatsapp-button {
  position: relative;
  z-index: 2;
}

@media (max-width: 1080px) {
  .sf-hero .sf-hero-visual {
    transform: none;
  }
}

@media (max-width: 760px) {
  .sf-whatsapp-card {
    display: none;
  }
}