:root {
  --blue-dark: #1E3A8A;
  --blue: #3B82F6;
  --blue-accent: #0EA5E9;
  --white: #FFFFFF;
  --bg-light: #F1F5F9;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --line: rgba(30, 58, 138, 0.12);
  --line-strong: rgba(30, 58, 138, 0.2);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-large: 0 28px 64px rgba(15, 23, 42, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(59, 130, 246, 0.14), transparent 18%),
    linear-gradient(180deg, #F8FBFF 0%, var(--bg-light) 45%, #FAFCFF 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(59, 130, 246, 0.2);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  padding: 12px 16px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 999px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-heading,
.process-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-accent));
}

.section-tag-inverse {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.section-tag-inverse::before {
  background: var(--white);
}

.section-title,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-text,
.about-copy p,
.contact-copy p {
  margin: 0;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 28px rgba(59, 130, 246, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 24px 36px rgba(59, 130, 246, 0.28);
}

.btn-secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: rgba(59, 130, 246, 0.32);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 16px 28px rgba(10, 27, 80, 0.16);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-dark), var(--blue-accent));
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--blue-accent));
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--text-dark);
}

.site-nav a[aria-current="page"] {
  color: var(--text-dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding-top: 72px;
}

.hero-layout,
.split-layout,
.why-layout,
.contact-layout,
.footer-layout {
  display: grid;
  gap: 36px;
}

.hero-layout {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
}

.hero-copy,
.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-intro {
  margin: 0 0 28px;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  padding: 12px 16px;
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.page-hero {
  padding-top: 60px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 36px;
  align-items: stretch;
}

.page-hero-copy h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-chip-row span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(59, 130, 246, 0.14);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.page-summary-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: clamp(360px, 42vw, 460px);
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(150deg, #0F172A 0%, var(--blue-dark) 52%, var(--blue-accent) 100%);
  box-shadow: var(--shadow-large);
}

.page-summary-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.page-summary-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.page-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-summary-grid div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 104px;
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.page-summary-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.page-summary-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.profile-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.profile-summary-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.profile-summary-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.profile-summary-item span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 620px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #0F172A 0%, var(--blue-dark) 48%, var(--blue-accent) 100%);
  box-shadow: var(--shadow-large);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.3;
}

.visual-glow-one {
  top: -50px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.26);
}

.visual-glow-two {
  bottom: 80px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.12);
}

.profile-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 42px rgba(4, 17, 45, 0.24);
}
.mini-tag,
.result-type {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-panel {
  position: relative;
  inset: auto;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 30px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-card-head {
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-card-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(4, 17, 45, 0.22);
}

.brand-card-copy {
  min-width: 0;
  text-align: center;
}

.brand-card-label {
  display: inline-flex;
  justify-content: center;
  margin: 0 0 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-expertise {
  width: 100%;
  max-width: 520px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-expertise-title {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.brand-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-expertise-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 700;
}

.profile-panel h2,
.contact-card h3,
.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.profile-text {
  max-width: 540px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 520px;
}

.profile-metrics div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.metric-value {
  display: block;
  font-weight: 800;
  font-size: 1.06rem;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  padding-bottom: 20px;
}

.who-section {
  padding-top: 56px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.audience-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.audience-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.audience-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.trust-strip-inner,
.service-card,
.feature-card,
.result-card,
.process-card,
.testimonial-card,
.faq-item,
.contact-card,
.about-visual-card,
.stat-band {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border-radius: 24px;
}

.trust-strip-inner p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-weight: 700;
}

.about-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.ai-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: start;
}

.ai-copy {
  padding: 6px 0;
}

.ai-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.ai-pillars div {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.ai-pillars strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.ai-pillars span {
  color: var(--text-muted);
}

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

.stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stack-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.ai-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(14, 165, 233, 0.08));
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.ai-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.ai-card p {
  margin: 0;
  color: var(--text-muted);
}

.about-visual {
  min-height: 460px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.18), transparent 22%),
    linear-gradient(155deg, #DCEAFE 0%, var(--white) 48%, #C7DDFE 100%);
  box-shadow: var(--shadow-large);
  display: flex;
  align-items: flex-start;
}

.about-visual-card {
  max-width: 340px;
  padding: 26px;
  border-radius: 24px;
}

.mini-tag {
  color: var(--blue-dark);
}

.about-visual-card h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  line-height: 1.15;
}

.about-visual-card p {
  margin: 0;
  color: var(--text-muted);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
  padding: 22px;
  border-radius: 24px;
}

.stat-band strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.stat-band span {
  color: var(--text-muted);
}

.founder-note {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.founder-note strong {
  font-family: "Sora", sans-serif;
}

.founder-note p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.services-grid,
.results-grid,
.testimonials-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.experience-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.experience-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.experience-card h3 {
  margin: 14px 0 10px;
  font-family: "Sora", sans-serif;
}

.experience-card p {
  margin: 0;
  color: var(--text-muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.proof-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.proof-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proof-card h3 {
  margin: 14px 0 10px;
  font-family: "Sora", sans-serif;
}

.proof-card p {
  margin: 0;
  color: var(--text-muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-detail-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.service-detail-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.service-detail-top h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.service-detail-top p {
  margin: 0;
  color: var(--text-muted);
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.service-chip-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-detail-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-accent);
}

.service-note-line {
  margin: 0;
  color: var(--text-muted);
}

.service-note-line strong {
  color: var(--text-dark);
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 700;
}

.service-detail-link::after {
  content: "->";
  transition: transform 0.2s ease;
}

.service-detail-link:hover::after {
  transform: translateX(4px);
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(14, 165, 233, 0.1));
  box-shadow: var(--shadow-soft);
}

.services-note p {
  margin: 0;
  color: var(--text-muted);
}

.services-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.service-card,
.feature-card,
.result-card,
.process-card,
.testimonial-card,
.engagement-card,
.faq-item,
.contact-card {
  border-radius: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card,
.result-card,
.testimonial-card,
.engagement-card {
  padding: 26px;
}

.service-card h3,
.feature-card h3,
.result-card h3,
.process-card h3,
.testimonial-card span,
.faq-question span:first-child {
  font-family: "Sora", sans-serif;
}

.service-card p,
.feature-card p,
.result-card p,
.process-card p,
.testimonial-card p,
.faq-answer p,
.site-footer p {
  color: var(--text-muted);
}

.service-icon,
.process-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.14), rgba(14, 165, 233, 0.22));
  color: var(--blue-dark);
  font-weight: 800;
}

.service-card a,
.result-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 700;
}

.service-card a::after,
.result-card a::after {
  content: "->";
  transition: transform 0.2s ease;
}

.service-card a:hover::after,
.result-card a:hover::after {
  transform: translateX(4px);
}

.service-card:hover,
.feature-card:hover,
.result-card:hover,
.process-card:hover,
.testimonial-card:hover,
.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.why-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.why-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  box-shadow: var(--shadow-large);
  position: sticky;
  top: 108px;
}

.why-panel h2 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.why-panel p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.why-list li {
  position: relative;
  padding-left: 22px;
}

.why-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BFDBFE;
}

.why-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.why-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.process-card {
  padding: 28px;
}

.result-number {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  color: var(--blue-dark);
}

.results-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.results-intro strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
}

.results-intro p {
  margin: 0;
  color: var(--text-muted);
}

.results-mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.results-mini-chips span,
.case-study-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.case-study-card {
  display: flex;
  flex-direction: column;
}

.case-study-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.case-study-body {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.case-line span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-line p {
  margin: 0;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-card span {
  display: block;
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.engagement-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.engagement-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.engagement-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.engagement-card span {
  color: var(--blue-dark);
  font-weight: 700;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--blue-dark);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(0deg);
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.contact-section {
  padding-top: 0;
}

.contact-layout {
  grid-template-columns: 1fr 0.94fr;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 58%, var(--blue-accent) 100%);
  box-shadow: var(--shadow-large);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-card {
  padding: 30px;
}

.contact-card p {
  margin: 0 0 24px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-points div {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.contact-points strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  color: var(--white);
}

.contact-points span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
}

.contact-form-card .btn-outline-light {
  color: var(--blue-dark);
  border-color: rgba(30, 58, 138, 0.18);
  background: rgba(241, 245, 249, 0.84);
}

.contact-form-card .btn-outline-light:hover {
  background: var(--white);
  border-color: rgba(30, 58, 138, 0.32);
}

.lead-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.honey-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field span {
  font-weight: 700;
  color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 16px;
  background: rgba(241, 245, 249, 0.8);
  padding: 14px 16px;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(14, 165, 233, 0.48);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  background: var(--white);
  outline: none;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.94rem;
}

.form-note {
  color: var(--text-muted);
}

.form-status {
  color: var(--blue-dark);
  font-weight: 700;
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 120;
  display: none;
  gap: 10px;
  width: min(calc(100% - 1.5rem), 520px);
  padding: 10px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 22px;
  background: rgba(248, 251, 255, 0.94);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.mobile-sticky-link {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 16px;
  font-weight: 800;
}

.mobile-sticky-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.mobile-sticky-secondary {
  background: rgba(241, 245, 249, 0.92);
  color: var(--blue-dark);
  border: 1px solid rgba(30, 58, 138, 0.14);
}

.contact-mail {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--blue-dark);
}

.site-footer {
  padding: 32px 0 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-portrait {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  padding: 4px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: linear-gradient(145deg, var(--blue-dark), var(--blue-accent));
  box-shadow: var(--shadow-soft);
}

.footer-brand-copy {
  min-width: 0;
}

.footer-layout {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
  padding-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-large);
}

.legal-shell h1,
.legal-shell h2 {
  font-family: "Sora", sans-serif;
}

.legal-shell h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-shell h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-muted);
}

.legal-shell ul {
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  margin: 0 0 20px;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-visual,
  .service-card,
  .feature-card,
  .result-card,
  .process-card,
  .testimonial-card {
    animation: fade-up 0.8s ease both;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 0.08s;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 0.16s;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 0.24s;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .page-hero-layout,
  .about-layout,
  .ai-layout,
  .why-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .ai-grid,
  .services-grid,
  .service-detail-grid,
  .results-grid,
  .testimonials-grid,
  .process-grid,
  .engagement-grid,
  .audience-grid,
  .experience-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line-strong);
    background: rgba(248, 251, 255, 0.96);
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  body.nav-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .page-summary-card,
  .page-summary-grid div {
    min-height: auto;
  }

  .page-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-grid,
  .services-grid,
  .service-detail-grid,
  .results-grid,
  .testimonials-grid,
  .process-grid,
  .engagement-grid,
  .why-grid,
  .profile-metrics,
  .stat-band,
  .ai-pillars,
  .form-grid,
  .audience-grid,
  .experience-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .services-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip-inner {
    text-align: center;
    justify-content: center;
  }

  .page-chip-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    padding: 20px;
  }

  .page-summary-card {
    padding: 24px;
  }

  .profile-panel {
    position: static;
  }

  .brand-card-head {
    flex-direction: column;
    align-items: center;
  }

  .brand-card-copy {
    text-align: center;
  }

  .contact-layout {
    padding: 24px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-layout {
    gap: 24px;
  }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  body.has-mobile-cta {
    padding-bottom: 92px;
  }
}
