:root {
  --primary: #1a73e8;
  --primary-dark: #135fbe;
  --background: #f8fafc;
  --background-strong: #eef5ff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.84);
  --text: #111827;
  --muted: #3f4d5e;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #22c55e;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(26, 115, 232, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--background) 54%, #edf4ff 100%);
  padding-bottom: 94px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.28);
  outline-offset: 3px;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.1), transparent 18%);
}

.container {
  position: relative;
  width: min(1160px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0 14px;
}

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

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-family: inherit;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #59a2ff);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brand-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 4px;
  color: #4a5a6d;
  font-size: 0.82rem;
}

.site-nav {
  display: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted);
  font-weight: 700;
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.site-nav a::after,
.footer-links a::after,
.footer-legal a::after,
.know-more::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.footer-links a:hover,
.contact-link:hover {
  color: var(--primary);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(26, 115, 232, 0.16);
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-legal a:hover::after,
.footer-legal a:focus-visible::after,
.know-more:hover::after,
.know-more:focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 12%,
    rgba(255, 255, 255, 0.22) 34%,
    transparent 56%
  );
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
}

.button:hover::before {
  transform: translateX(140%);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #4c99ff);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(26, 115, 232, 0.22);
}

.button-primary:hover {
  box-shadow:
    0 20px 36px rgba(26, 115, 232, 0.28),
    0 0 0 8px rgba(26, 115, 232, 0.08);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  border-color: rgba(26, 115, 232, 0.18);
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.08),
    0 0 0 8px rgba(26, 115, 232, 0.06);
}

.button-disabled {
  cursor: default;
  pointer-events: none;
  background: linear-gradient(135deg, #7aaef4, #9bc2f7);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.16);
}

.button-disabled:hover,
.button-disabled:focus-visible,
.button-disabled:active {
  transform: none;
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.16);
}

.button-header {
  display: none;
}

.hero-section {
  padding: 30px 0 26px;
}

.hero-grid,
.about-grid {
  display: grid;
  gap: 22px;
}

.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 10px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.14), rgba(96, 165, 250, 0.12));
  border: 1px solid rgba(26, 115, 232, 0.12);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(26, 115, 232, 0.1);
  overflow: hidden;
  animation: badgeFloat 4.6s ease-in-out infinite;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: 0 0 0 6px rgba(26, 115, 232, 0.1);
}

.badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.22) 36%, transparent 60%);
  transform: translateX(-135%);
  animation: badgeShine 5.4s ease-in-out infinite;
}

.badge-soft {
  background: rgba(26, 115, 232, 0.08);
}

.hero-copy h1,
.section-head h2,
.about-copy h2,
.page-hero h1,
.why-card h2 {
  margin: 16px 0 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-logo-slot {
  display: inline-flex;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 30px rgba(26, 115, 232, 0.12);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  padding: 8px 4px;
}

.hero-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.hero-title-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), #59a2ff);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-logo-image {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  max-width: 12ch;
  margin: 0;
}

.hero-tagline {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(0.82rem, 3.4vw, 1.12rem);
  font-weight: 700;
}

.hero-text,
.hero-subtext,
.section-head p,
.why-copy p,
.service-card p,
.about-copy p,
.contact-card p,
.footer-copy,
.page-hero p,
.detail-card p,
.detail-list li {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text,
.hero-subtext {
  max-width: 58ch;
  font-size: 1rem;
}

.hero-subtext {
  margin-top: 10px;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .button {
  width: 100%;
  max-width: 240px;
}

.hero-note {
  margin: 14px 0 0;
  color: #445469;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.12);
}

.hero-media {
  display: flex;
}

.media-card,
.service-card,
.about-panel,
.contact-card,
.detail-card,
.mini-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-card {
  width: 100%;
  padding: 14px;
  border-radius: 28px;
}

.why-card {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(26, 115, 232, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.96);
}

.media-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.media-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.why-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.hero-why-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 40px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.hero-why-list li strong {
  font-weight: 800;
}

.hero-why-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
  transform: translateY(-50%);
}

.section {
  padding: 54px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(231, 241, 255, 0.52));
}

.section-head {
  max-width: 680px;
}

.section-head .badge,
.about-copy .badge,
.why-card .badge,
.service-detail-head .badge {
  margin-bottom: 4px;
}

.service-grid,
.contact-grid,
.detail-grid,
.mini-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.service-card,
.contact-card,
.detail-card,
.mini-panel {
  padding: 22px;
  border-radius: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(26, 115, 232, 0.12);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-card h3,
.contact-card h3,
.detail-card h2,
.mini-panel h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.24;
}

.service-card p,
.contact-card p,
.detail-card p {
  margin: 12px 0 0;
}

.know-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 800;
  transition: transform 0.24s ease, color 0.24s ease;
}

.know-more::after {
  left: 0;
  right: 40px;
  bottom: -4px;
}

.know-more:hover,
.know-more:focus-visible {
  transform: translateX(3px);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.services-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.services-mini-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.12), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(26, 115, 232, 0.12);
  box-shadow: 0 14px 28px rgba(26, 115, 232, 0.08);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow: hidden;
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.services-mini-title::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: 0 0 0 6px rgba(26, 115, 232, 0.08);
}

.services-mini-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.22) 34%, transparent 56%);
  transform: translateX(-140%);
  animation: badgeShine 5.2s ease-in-out infinite;
}

.services-hero p {
  max-width: 72ch;
  font-size: 0.96rem;
}

.services-focus {
  width: 100%;
  max-width: 820px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero .container {
  align-items: flex-start;
}

.about-hero-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero-line {
  max-width: 34ch;
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.45;
  font-weight: 700;
}

.about-focus {
  max-width: 760px;
}

.about-focus p {
  max-width: 60ch;
}

.about-lead-card,
.about-story-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow);
}

.about-lead-card {
  max-width: 78ch;
  margin-top: 8px;
  padding: 22px 24px;
  border-radius: 24px;
}

.about-lead-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.84;
}

.about-story-grid,
.about-bottom-grid {
  margin-top: 28px;
}

.about-story-card {
  padding: 22px 24px;
  border-radius: 24px;
}

.about-story-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-story-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.founder-card {
  overflow: hidden;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}

.founder-media {
  max-width: 180px;
  flex: 0 0 112px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 115, 232, 0.1), rgba(26, 115, 232, 0.04));
  border: 1px solid rgba(26, 115, 232, 0.08);
  box-shadow: 0 16px 30px rgba(26, 115, 232, 0.1);
}

.founder-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-copy h3 {
  margin: 0;
}

.founder-name {
  margin: 8px 0 0 !important;
  color: var(--text) !important;
  font-size: 1rem !important;
  font-weight: 700;
  line-height: 1.4 !important;
}

.founder-link {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.about-highlight {
  max-width: 76ch;
  margin-top: 28px;
}

.mission-card {
  background:
    radial-gradient(circle at top right, rgba(26, 115, 232, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.97);
}

.mission-quote {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(236, 244, 255, 0.85);
  color: var(--text);
  font-weight: 700;
  line-height: 1.7;
}

.contact-page-card .contact-link-large {
  display: inline-flex;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  word-break: break-word;
}

.contact-info-block,
.contact-text-block {
  padding: 4px 0;
}

.contact-info-block h3,
.contact-text-block h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.contact-info-block p,
.contact-text-block p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.contact-text-block.compact-lines p {
  margin-top: 3px;
  line-height: 1.42;
}

.contact-text-block.compact-lines p:first-of-type {
  margin-top: 8px;
}

.company-link-line {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.42;
}

.contact-info-accent {
  position: relative;
  padding-left: 18px;
}

.contact-info-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 4px;
  height: calc(100% - 0.3rem);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), #60a5fa);
}

.contact-info-block .contact-link-large {
  display: inline-flex;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  word-break: break-word;
}

.contact-link-inline {
  display: inline;
  margin-top: 0;
  margin-left: 6px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: inherit;
  color: var(--primary);
}

.legal-meta-card p {
  margin: 8px 0 0;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 20px;
  max-width: 74ch;
}

.legal-list li {
  color: var(--muted);
  line-height: 1.76;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-contact-block p {
  margin: 8px 0 0;
}

.services-inline-headline {
  display: inline-block;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 700;
}

.services-hero-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  width: 100%;
  max-width: 780px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.services-hero-copy h2 {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.2;
}

.services-hero-copy p {
  margin: 12px 0 0;
}

.services-summary-list {
  display: grid;
  gap: 12px;
}

.summary-item {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 800;
  font-size: 0.94rem;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.service-tab {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.service-tab.active {
  background: linear-gradient(135deg, var(--primary), #4c99ff);
  color: #ffffff;
}

.services-detail-stack {
  display: grid;
  gap: 26px;
}

.services-detail-section .container {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.service-essay[hidden] {
  display: none !important;
}

.service-detail-block {
  scroll-margin-top: 112px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-detail-block.featured {
  background:
    radial-gradient(circle at top right, rgba(26, 115, 232, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.96);
}

.service-essay {
  scroll-margin-top: 112px;
  padding: 30px 0 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-essay.featured {
  padding-top: 0;
  border-top: 0;
}

.service-detail-head h2 {
  margin: 14px 0 0;
  font-size: clamp(1.22rem, 2.6vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-detail-subtitle {
  margin: 10px 0 0;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-detail-block > p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-essay > p {
  max-width: 74ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.service-detail-head,
.service-essay > p,
.service-essay h3,
.service-note {
  max-width: 74ch;
}

.service-essay h3 {
  margin: 28px 0 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.service-info-grid,
.detail-columns {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.essay-list-block {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.essay-highlight {
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 4px solid var(--primary);
  border-radius: 0 20px 20px 0;
  background: rgba(236, 244, 255, 0.78);
}

.essay-highlight p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.detail-panel,
.info-card,
.important-note {
  padding: 20px;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.detail-panel h3,
.info-card h3,
.important-note h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.detail-panel p,
.info-card p,
.important-note p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-note {
  margin-top: 24px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
}

.about-essay .service-detail-head {
  margin-bottom: 6px;
}

.about-split p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
}

.feature-list li,
.detail-steps li {
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-list li {
  padding-left: 22px;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.feature-list-inline {
  margin-top: 14px;
}

.detail-steps {
  margin: 16px 0 0;
  padding-left: 20px;
  max-width: 74ch;
}

.detail-steps li + li {
  margin-top: 10px;
}

.cta-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.closing-essay {
  padding-top: 8px;
}

.arrow {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.12);
}

.about-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
}

body.sidebar-open {
  overflow: hidden;
}

.sidebar-root {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
}

.sidebar-root.is-open {
  pointer-events: auto;
  visibility: visible;
}

.sidebar-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.28s ease;
}

.sidebar-root.is-open .sidebar-overlay {
  opacity: 1;
}

.sidebar-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 390px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #1a73e8 0%, #1667d9 42%, #0f4fa8 100%);
  box-shadow: -24px 0 54px rgba(10, 44, 92, 0.22);
  transform: translateX(104%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidebar-root.is-open .sidebar-drawer {
  transform: translateX(0);
}

.sidebar-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sidebar-title {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sidebar-close {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 2px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link:focus-visible {
  color: #ffffff;
  padding-left: 6px;
}

.sidebar-link.is-active {
  color: #ffffff;
  font-weight: 800;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.sidebar-link-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(255, 255, 255, 0.88);
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  transform: translateY(-50%) rotate(45deg);
}

.sidebar-link-card:hover,
.sidebar-link-card:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

.sidebar-link-card strong {
  font-size: 1.08rem;
}

.sidebar-link-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.sidebar-link-card.is-active {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.28);
}

.sidebar-footer-action {
  margin-top: 28px;
}

.sidebar-download-button {
  width: 100%;
  min-height: 54px;
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 18px 36px rgba(10, 44, 92, 0.2);
}

.sidebar-download-button:hover,
.sidebar-download-button:focus-visible {
  color: var(--primary);
}

.menu-page-body {
  padding-bottom: 0;
  background: linear-gradient(180deg, #edf4ff 0%, #dfeeff 100%);
}

.menu-page-body .site-bg {
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.24), transparent 20%);
}

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

.menu-drawer-shell {
  min-height: 100vh;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.menu-page-dismiss {
  position: absolute;
  inset: 0;
  display: block;
}

.menu-drawer {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  min-height: 100vh;
  padding: 22px 18px 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #1a73e8 0%, #1667d9 42%, #0f4fa8 100%);
  box-shadow: -24px 0 54px rgba(10, 44, 92, 0.22);
}

.menu-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.menu-title {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.menu-close {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
}

.menu-links {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.menu-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68px;
  padding: 0 22px;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.menu-link-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(255, 255, 255, 0.88);
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  transform: translateY(-50%) rotate(45deg);
}

.menu-link-card:hover,
.menu-link-card:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

.menu-link-card strong {
  font-size: 1.08rem;
}

.menu-footer-action {
  margin-top: 28px;
}

.menu-download-button {
  width: 100%;
  min-height: 54px;
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 18px 36px rgba(10, 44, 92, 0.2);
}

.menu-download-button:hover,
.menu-download-button:focus-visible {
  color: var(--primary);
}

.button-header-lite {
  display: none;
}

.about-chip {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 700;
}

.button-inline {
  margin-top: 10px;
}

.contact-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 800;
  word-break: break-word;
}

.contact-meta {
  display: inline-flex;
  margin-top: 14px;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer {
  padding: 24px 0 42px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.56);
}

.footer-shell {
  display: grid;
  gap: 18px;
}

.footer-brand-block {
  max-width: 320px;
  padding-left: 28px;
}

.footer-brand {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-copy,
.footer-meta {
  margin: 8px 0 0;
  color: #445469;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-nav-block {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.footer-links a {
  position: relative;
  transition: transform 0.24s ease, color 0.24s ease;
}

.footer-links a::after,
.footer-legal a::after {
  left: 0;
  right: 0;
  bottom: -5px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-1px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.84rem;
}

.footer-legal a {
  position: relative;
  opacity: 0.92;
  transition: transform 0.24s ease, color 0.24s ease, opacity 0.24s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  transform: translateY(-1px);
  color: var(--primary);
  opacity: 1;
}

.mobile-download-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.94);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.mobile-download-copy {
  display: flex;
  flex-direction: column;
}

.mobile-download-copy strong {
  font-size: 0.96rem;
}

.mobile-download-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.mobile-coming-soon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #86efac !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.45;
  white-space: normal;
}

.mobile-download-button {
  min-height: 46px;
  padding: 0 18px;
  flex: 0 0 auto;
}

.page-main {
  padding-top: 24px;
}

.page-hero {
  padding: 28px 0 10px;
}

.page-hero h1 {
  font-size: clamp(2rem, 9vw, 4rem);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.detail-card {
  scroll-margin-top: 112px;
}

.detail-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 10px;
}

.mini-grid {
  margin-top: 18px;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes badgeShine {
  0%,
  100% {
    transform: translateX(-140%);
  }

  45%,
  55% {
    transform: translateX(140%);
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(1160px, calc(100% - 48px));
  }

  .header-shell {
    align-items: center;
    gap: 16px;
    padding: 16px 0;
  }

  .site-nav {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    overflow: visible;
    gap: 22px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-nav a {
    min-height: auto;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--muted);
    box-shadow: none;
  }

  .site-nav a::after {
    left: 0;
    right: 0;
    bottom: -8px;
  }

  .menu-toggle {
    display: none;
  }

  .button-header {
    display: inline-flex;
  }

  .button-header-lite {
    display: inline-flex;
  }

  .hero-section {
    padding: 56px 0 40px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    justify-self: center;
    padding-left: 24px;
    padding-right: 12px;
  }

  .hero-logo-slot {
    align-self: flex-start;
  }

  .hero-title-row {
    justify-content: flex-start;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    width: auto;
    max-width: none;
  }

  .service-grid,
  .contact-grid,
  .detail-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-panel,
  .service-info-grid,
  .detail-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .essay-list-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero .container {
    align-items: flex-start;
    text-align: left;
  }

  .services-focus {
    max-width: 860px;
  }

  .footer-shell {
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.2fr);
    align-items: start;
    justify-content: space-between;
  }

  .footer-nav-block {
    justify-items: center;
    padding-right: 36px;
  }

  .footer-links,
  .footer-legal {
    justify-content: center;
  }

  .footer-meta {
    text-align: center;
  }

  .mobile-download-bar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .service-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
