:root {
  --bg: #f5f7fb;
  --bg-strong: #eef2f9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --text: #111a2f;
  --muted: #667085;
  --accent: #ff982f;
  --accent-soft: rgba(255, 152, 47, 0.16);
  --line: rgba(241, 151, 57, 0.26);
  --shadow-lg: 0 28px 80px rgba(16, 24, 40, 0.12);
  --shadow-md: 0 22px 45px rgba(17, 26, 47, 0.08);
  --shadow-sm: 0 10px 24px rgba(17, 26, 47, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 173, 91, 0.2), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(143, 176, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 48%, #eef2f8 100%);
}

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

.reveal {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0ms;
}

.reveal-delay-2 {
  transition-delay: 90ms;
}

.reveal-delay-3 {
  transition-delay: 180ms;
}

.reveal-delay-4 {
  transition-delay: 270ms;
}

.reveal-delay-5 {
  transition-delay: 360ms;
}

.page-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 30;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px; /* Reduced vertical padding */
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(17, 26, 47, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transform: scale(2.2);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(17, 26, 47, 0.72);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.primary-btn {
  color: #fff;
  background: linear-gradient(145deg, #ffae57, #ff8719);
  box-shadow: 0 16px 32px rgba(255, 145, 39, 0.28);
}

.nav-cta {
  min-height: 44px; /* Reduced button height for slimmer navbar */
  padding: 0 22px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 110px);
  padding: 88px 0 40px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 220px;
  border-top: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.82;
}

.hero-line-top {
  top: 68px;
  transform: rotate(-1.3deg);
}

.hero-line-mid {
  top: 270px;
  transform: rotate(1.6deg);
}

.hero-line-low {
  top: 520px;
  transform: rotate(-0.8deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
}

.hero-glow-left {
  top: 120px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(255, 177, 102, 0.22);
}

.hero-glow-right {
  top: 180px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: rgba(171, 197, 255, 0.24);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(17, 26, 47, 0.06);
  color: rgba(17, 26, 47, 0.74);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-content h1 {
  width: min(1100px, 100%);
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content h1 .text-dark {
  color: var(--text);
}

.hero-content h1 .text-accent {
  color: var(--accent);
}

.hero-content h1 .text-accent-soft {
  background: linear-gradient(135deg, #ffb35d 0%, #ff8b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-deep-soft {
  color: #344054;
}

.hero-content > p {
  width: min(760px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.primary-btn,
.secondary-btn {
  min-height: 58px;
  padding: 0 28px;
}

.primary-btn:hover,
.secondary-btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(17, 26, 47, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(17, 26, 47, 0.05);
  color: var(--text);
}

.hero-visual {
  position: relative;
  width: min(1080px, 100%);
  margin-top: 28px;
  padding: 38px 26px 10px;
}

.visual-panel {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 253, 0.86)),
    linear-gradient(135deg, rgba(255, 162, 72, 0.1), rgba(163, 194, 255, 0.08));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.visual-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(241, 151, 57, 0.14);
}

.visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 700;
}

.visual-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #32d583;
  box-shadow: 0 0 0 6px rgba(50, 213, 131, 0.14);
}

.live {
  top: 24px;
  left: 24px;
}

.visual-orb {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 230px;
  height: 230px;
  border-radius: 34% 66% 56% 44% / 42% 42% 58% 58%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.2) 28%, transparent 32%),
    radial-gradient(circle at 35% 30%, #ffc07a 0%, #ff9633 30%, #ff7f11 58%, #f16600 100%);
  box-shadow:
    inset -18px -22px 36px rgba(171, 72, 2, 0.22),
    inset 22px 22px 28px rgba(255, 255, 255, 0.35),
    0 26px 56px rgba(255, 132, 30, 0.34);
}

.visual-orb::before,
.visual-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-orb::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.visual-orb::after {
  top: 18%;
  left: 18%;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(2px);
}

.visual-copy {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(560px, calc(100% - 64px));
  transform: translateX(-50%);
}

.visual-copy h2 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.05em;
}

.visual-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visual-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.visual-card-left {
  left: -6px;
  bottom: 44px;
}

.visual-card-right {
  right: -6px;
  top: 58px;
}

.card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb662, #ff8f1a);
  box-shadow: 0 0 0 8px rgba(255, 152, 47, 0.14);
}

.visual-card strong {
  font-size: 1rem;
}

.visual-card small {
  color: var(--muted);
  line-height: 1.55;
}

.services-section {
  position: relative;
  padding: 92px 0 36px;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 50%;
  width: min(860px, 84%);
  height: 380px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 82, 0.12), transparent 64%);
  filter: blur(26px);
  pointer-events: none;
}

.section-heading {
  position: relative;
  width: min(840px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(17, 26, 47, 0.05);
  color: rgba(17, 26, 47, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-heading h2 {
  margin: 18px 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.section-heading p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

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

.service-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 253, 0.88)),
    linear-gradient(135deg, rgba(255, 164, 77, 0.08), rgba(157, 186, 255, 0.06));
  box-shadow: 0 24px 46px rgba(17, 26, 47, 0.08);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(241, 151, 57, 0.12);
  pointer-events: none;
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 252, 0.92)),
    radial-gradient(circle at top right, rgba(255, 171, 82, 0.18), transparent 38%);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 228, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 26px rgba(255, 160, 54, 0.16);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.service-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 26, 47, 0.86);
  font-weight: 700;
}

.service-card span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb662, #ff8f1a);
  box-shadow: 0 0 0 8px rgba(255, 152, 47, 0.12);
}

.process-section {
  position: relative;
  padding: 96px 0 52px;
}

.process-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 220px;
  width: min(1040px, 88%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(241, 151, 57, 0.28) 18%,
    rgba(182, 196, 235, 0.6) 50%,
    rgba(241, 151, 57, 0.28) 82%,
    transparent 100%
  );
  pointer-events: none;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-card {
  position: relative;
  padding: 30px 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9)),
    linear-gradient(135deg, rgba(255, 168, 85, 0.09), rgba(168, 193, 255, 0.06));
  box-shadow: 0 24px 42px rgba(17, 26, 47, 0.08);
  text-align: left;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(241, 151, 57, 0.1);
  pointer-events: none;
}

.process-step {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  padding: 0 16px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 244, 232, 0.96), rgba(255, 255, 255, 0.92));
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 24px rgba(255, 160, 54, 0.14);
}

.process-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.why-section {
  position: relative;
  margin-top: 78px;
  padding: 118px 38px 86px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 253, 0.92)),
    radial-gradient(circle at top left, rgba(255, 168, 85, 0.08), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(176, 198, 255, 0.14), transparent 24%);
  box-shadow: 0 28px 56px rgba(17, 26, 47, 0.08);
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 167, 79, 0.14);
  filter: blur(70px);
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 22px;
  bottom: 22px;
  border-radius: 30px;
  border: 1px solid rgba(241, 151, 57, 0.1);
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 122px;
}

.why-copy h2 {
  margin: 18px 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.why-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.why-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9)),
    linear-gradient(135deg, rgba(255, 165, 80, 0.08), rgba(170, 194, 255, 0.06));
  box-shadow: 0 24px 42px rgba(17, 26, 47, 0.08);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(241, 151, 57, 0.1);
  pointer-events: none;
}

.why-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.98), rgba(255, 255, 255, 0.92));
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 24px rgba(255, 160, 54, 0.14);
}

.why-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.why-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-section {
  position: relative;
  padding: 96px 0 48px;
}

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

.faq-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.9)),
    linear-gradient(135deg, rgba(255, 165, 80, 0.06), rgba(170, 194, 255, 0.05));
  box-shadow: 0 22px 40px rgba(17, 26, 47, 0.07);
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(241, 151, 57, 0.1);
  pointer-events: none;
}

.faq-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.faq-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.final-cta-section {
  padding: 92px 0 80px;
}

.final-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 56px;
  border-radius: 40px;
  border: 1px solid rgba(255, 187, 122, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 172, 92, 0.14), rgba(255, 146, 33, 0.08)),
    linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(255, 246, 237, 0.92));
  box-shadow: 0 28px 60px rgba(255, 145, 39, 0.14);
  overflow: hidden;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  bottom: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 165, 80, 0.18);
  pointer-events: none;
}

.final-cta-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 150, 45, 0.14);
  filter: blur(28px);
  pointer-events: none;
}

.final-cta-copy,
.final-cta-actions {
  position: relative;
  z-index: 1;
}

.final-cta-copy {
  width: min(680px, 100%);
}

.final-pill {
  background: rgba(255, 255, 255, 0.72);
}

.final-cta-copy h2 {
  margin: 18px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.final-cta-copy p {
  margin: 0;
  color: rgba(52, 64, 84, 0.92);
  font-size: 1.04rem;
  line-height: 1.85;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.final-btn {
  min-width: 232px;
}

.final-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 166, 82, 0.18);
}

.site-footer {
  margin-top: 28px;
  padding: 28px 0 18px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 0 28px;
  border-top: 1px solid rgba(17, 26, 47, 0.08);
}

.footer-brand {
  width: min(430px, 100%);
}

.footer-brand-link {
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(620px, 100%);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-column a,
.footer-column span {
  color: rgba(17, 26, 47, 0.72);
  line-height: 1.7;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 26, 47, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(17, 26, 47, 0.64);
  font-size: 0.95rem;
}

.agent-nudge {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(118, 229, 198, 0.35);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(12, 91, 158, 0.98), rgba(11, 172, 150, 0.96));
  box-shadow: 0 22px 48px rgba(10, 75, 128, 0.28);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.agent-nudge.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  animation: nudgeIn 700ms cubic-bezier(0.22, 1, 0.36, 1) both,
    nudgePulse 2400ms ease-in-out 1400ms infinite;
}

.agent-nudge:hover,
.agent-nudge:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(10, 75, 128, 0.34);
}

.agent-nudge.is-dismissed {
  display: none;
}

.agent-nudge-photo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
  box-shadow: 0 10px 22px rgba(255, 145, 39, 0.22);
}

.agent-nudge-badge {
  position: absolute;
  top: -4px;
  left: 48px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: #20c997;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(32, 201, 151, 0.28);
}

.agent-nudge-copy {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.agent-nudge-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.agent-nudge-copy span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

body:not(.agent-widget-open) chat-widget,
body:not(.agent-widget-open) div[data-chat-widget],
body:not(.agent-widget-open) [data-chat-widget],
body:not(.agent-widget-open) iframe[src*="leadconnector"],
body:not(.agent-widget-open) iframe[src*="chat-widget"] {
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes nudgeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes nudgePulse {
  0%,
  100% {
    box-shadow: 0 22px 48px rgba(17, 26, 47, 0.16);
  }

  50% {
    box-shadow: 0 24px 54px rgba(255, 145, 39, 0.25);
  }
}

@media (max-width: 980px) {
  .navbar {
    padding: 16px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 72px;
  }

  .hero-visual {
    padding-inline: 0;
  }

  .visual-card-left,
  .visual-card-right {
    position: static;
    margin-top: 16px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-section::before {
    display: none;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-copy {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 36px;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1320px);
    padding-top: 14px;
  }

  .navbar {
    border-radius: 26px;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    transform-origin: center center;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 12vw, 4.3rem);
  }

  .hero-content > p {
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .visual-panel {
    min-height: 430px;
  }

  .visual-orb {
    width: 190px;
    height: 190px;
    top: 44%;
  }

  .visual-copy {
    width: calc(100% - 40px);
  }

  .services-section {
    padding-top: 76px;
  }

  .service-card {
    padding: 24px;
  }

  .process-section {
    padding-top: 76px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 24px;
  }

  .why-section {
    margin-top: 56px;
    padding: 92px 22px 68px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 24px;
  }

  .faq-section,
  .final-cta-section {
    padding-top: 76px;
  }

  .faq-card {
    padding: 24px;
  }

  .final-cta-card {
    padding: 32px 22px;
    border-radius: 30px;
  }

  .final-cta-card::before {
    left: 14px;
    right: 14px;
    top: 14px;
    bottom: 14px;
    border-radius: 22px;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-btn,
  .final-secondary {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .agent-nudge {
    right: 12px;
    bottom: 12px;
    padding-right: 14px;
  }

  .agent-nudge-photo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .agent-nudge-badge {
    left: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .agent-nudge {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }
}
