:root {
  --bg: #edf2f8;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: #ffffff;
  --card-border: rgba(22, 63, 125, 0.1);
  --text: #16284a;
  --muted: #67758e;
  --primary: #2d78f4;
  --primary-strong: #175fe2;
  --primary-soft: #dce9ff;
  --accent: #ff6c2f;
  --accent-soft: #ffe2d7;
  --success: #20b57b;
  --shadow: 0 26px 80px rgba(23, 55, 114, 0.13);
  --shadow-soft: 0 18px 40px rgba(23, 55, 114, 0.08);
  --radius: 34px;
  --radius-small: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 120, 244, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 108, 47, 0.05), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef3fa 100%);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

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

.section {
  padding: 110px 0;
  position: relative;
}

.section-tight {
  padding: 24px 0 12px;
}

.alt-bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(245, 248, 254, 0.95));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(245, 248, 254, 0.7);
  border-bottom: 1px solid rgba(22, 63, 125, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  gap: 0;
  min-width: 0;
}

.logo-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.logo-claims {
  color: var(--primary);
}

.logo-cure {
  color: #7db637;
}

.logo-sub {
  margin-top: 0.1rem;
  color: #707d92;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.logo-waves {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  margin-top: 0.3rem;
}

.logo-wave {
  display: block;
  height: 4px;
  border-radius: 999px;
}

.logo-wave-blue {
  width: 100%;
  background: linear-gradient(90deg, #2d78f4, #3f8fff);
}

.logo-wave-teal {
  width: 88%;
  background: linear-gradient(90deg, #2d78f4, #4fb0b8);
}

.logo-wave-green {
  width: 76%;
  background: linear-gradient(90deg, #5d9ef5, #83bc3e);
}

.footer-logo .logo-main {
  font-size: 2rem;
}

.footer-logo .logo-sub {
  font-size: 0.76rem;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.25s ease;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

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

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.55rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff8a3d);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(255, 108, 47, 0.28);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(255, 108, 47, 0.34);
  filter: saturate(1.06);
}

.button-small {
  min-height: 48px;
  padding: 0 1.25rem;
}

.button-light {
  background: #ffffff;
  color: var(--primary-strong);
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.25);
}

.button-outline {
  border: 1px solid rgba(45, 120, 244, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 255, 0.92));
  color: var(--primary-strong);
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.55rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 30px rgba(7, 27, 66, 0.16);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(7, 27, 66, 0.2);
  background: #f7f7f7;
}

.hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  color: #ffffff;
  background:
    linear-gradient(120deg, #2b75ef 0%, #2b75ef 55%, #174fa9 55%, #174fa9 80%, #ff6c2f 80%, #ff6c2f 100%);
}

.subpage-hero {
  padding: 150px 0 90px;
  color: #ffffff;
  background:
    linear-gradient(125deg, #2b75ef 0%, #2b75ef 58%, #174fa9 58%, #174fa9 80%, #ff6c2f 80%, #ff6c2f 100%);
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

.subpage-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.subpage-badge-card {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(10, 32, 83, 0.22);
  backdrop-filter: blur(12px);
}

.subpage-badge-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.hero-bg-shape,
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-left {
  width: min(72vw, 900px);
  inset: 0 auto 0 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 76% 0, 58% 100%, 0 100%);
}

.hero-bg-right {
  inset: 0 0 0 auto;
  width: 48vw;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.14), transparent 34%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-pattern {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px),
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px);
  background-size: 26px 26px, 34px 34px;
  opacity: 0.34;
}

.hero-grid,
.split-grid,
.vision-grid,
.results-grid,
.benefits-grid,
.services-grid,
.testimonials-grid,
.footer-grid,
.pricing-grid {
  display: grid;
}

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

.hero-copy,
.hero-visual,
.section-copy,
.feature-panel,
.analytics-card,
.contact-form,
.cta-card > div {
  min-width: 0;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero p,
.hero .metric-card span,
.hero .dashboard-top,
.hero .dashboard-footer small,
.hero .mini-card span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.metric-card,
.service-card,
.benefit-card,
.result-card,
.testimonial-card,
.step-card,
.info-card,
.vision-card,
.analytics-card,
.pricing-card,
.contact-form {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-small);
  background: var(--card);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  color: #ffffff;
}

.metric-card span {
  font-size: 0.92rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 60px rgba(10, 32, 83, 0.28);
  backdrop-filter: blur(18px);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.dashboard-card {
  width: min(100%, 500px);
  padding: 2rem;
}

.dashboard-top,
.dashboard-footer,
.analytics-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-top {
  margin-bottom: 1.5rem;
}

.pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

.dashboard-amount {
  margin-bottom: 1.6rem;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.85rem;
  height: 190px;
  margin-bottom: 1.9rem;
}

.chart-bars span {
  flex: 1;
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.45));
}

.chart-bars span:nth-child(1) { height: 42%; }
.chart-bars span:nth-child(2) { height: 58%; animation-delay: 0.2s; }
.chart-bars span:nth-child(3) { height: 76%; animation-delay: 0.4s; }
.chart-bars span:nth-child(4) { height: 66%; animation-delay: 0.6s; }
.chart-bars span:nth-child(5) { height: 92%; animation-delay: 0.8s; }

.dashboard-footer strong,
.mini-card strong {
  color: #ffffff;
}

.mini-card {
  position: absolute;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(14, 62, 136, 0.46);
  box-shadow: 0 24px 50px rgba(10, 32, 83, 0.22);
  backdrop-filter: blur(16px);
}

.mini-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.12rem;
}

.mini-card-top {
  top: 78px;
  left: 0;
}

.mini-card-center {
  left: 48px;
  bottom: 34px;
}

.mini-card-bottom {
  right: 8px;
  bottom: 120px;
}

.brands {
  margin-top: -24px;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(22, 63, 125, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-copy h2,
.section-heading h2,
.vision-card h2,
.cta-card h2 {
  color: var(--text);
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.vision-card .eyebrow,
.contact-section .eyebrow {
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-color: rgba(45, 120, 244, 0.12);
}

.feature-panel,
.services-grid,
.benefits-grid,
.results-grid,
.testimonials-grid,
.footer-grid,
.pricing-grid {
  gap: 1.5rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.service-card,
.benefit-card,
.result-card,
.testimonial-card,
.vision-card,
.step-card,
.analytics-card,
.pricing-card,
.contact-form {
  padding: 1.7rem;
}

.highlight-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff7f2, #ffffff);
  border-color: rgba(255, 108, 47, 0.18);
}

.highlight-card h3,
.highlight-card p {
  color: var(--text);
}

.highlight-card .icon-badge {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff9157);
  box-shadow: 0 14px 26px rgba(255, 108, 47, 0.24);
}

.icon-badge,
.service-icon,
.benefit-icon,
.pricing-tag {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  padding: 0 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(255, 255, 255, 0.95));
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 0.94rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.services-grid,
.benefits-grid,
.results-grid,
.testimonials-grid,
.pricing-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.benefit-card,
.result-card,
.testimonial-card,
.pricing-card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.result-card::before,
.testimonial-card::before,
.pricing-card::before,
.blog-card::before,
.contact-form::before,
.step-card::before,
.vision-card::before,
.analytics-card::before {
  content: "";
  position: absolute;
  inset: auto -25% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 120, 244, 0.12), transparent 70%);
  pointer-events: none;
}

.benefit-card:nth-child(2n)::before,
.pricing-card-featured::before,
.contact-form::before {
  background: radial-gradient(circle, rgba(255, 108, 47, 0.12), transparent 70%);
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(239, 245, 255, 0.8), rgba(248, 251, 255, 1));
}

.pricing-card strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.page-section-intro {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  padding: 1.7rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-small);
  background: var(--card);
  box-shadow: var(--shadow);
}

.blog-card time {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-card h3 {
  margin-bottom: 0.8rem;
}

.pricing-tag {
  min-width: auto;
  width: fit-content;
  height: auto;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}

.pricing-card-featured {
  transform: translateY(-12px);
  border-color: rgba(255, 108, 47, 0.25);
  background: linear-gradient(180deg, #ffffff, #fff6f1);
}

.pricing-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.vision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.analytics-section {
  position: relative;
}

.analytics-card {
  padding: 2rem;
}

.analytics-line {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.progress-bar {
  height: 14px;
  margin-bottom: 1.3rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(45, 120, 244, 0.08);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0;
}

.result-card small {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 1.2rem;
}

.testimonial-card span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Support Pages Content */
.content-text {
  max-width: 800px;
  margin: 0 auto;
}

.content-text h2 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

.content-text h3 {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--primary-strong);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.support-contact {
  text-align: center;
}


.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 246, 255, 0.92));
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 63, 125, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.contact-form {
  position: relative;
  overflow: hidden;
}

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

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 63, 125, 0.12);
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.95);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 120, 244, 0.35);
  box-shadow: 0 0 0 4px rgba(45, 120, 244, 0.12);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  color: var(--primary-strong);
  font-weight: 600;
}

.cta-section {
  padding-top: 24px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(45, 120, 244, 0.08);
  border-radius: 34px;
  background: linear-gradient(110deg, var(--primary) 0%, var(--primary) 62%, var(--accent) 62%, var(--accent) 100%);
  box-shadow: 0 30px 70px rgba(24, 70, 149, 0.22);
}

.cta-card h2,
.cta-card .eyebrow {
  color: #ffffff;
}

.cta-card .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-card .button-light {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-footer {
  padding: 90px 0 40px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: start;
}

.main-nav,
.hero-actions,
.contact-points,
.form-actions {
  row-gap: 0.85rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 320px;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary-strong);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: 
    transform 0.1s ease-out,
    box-shadow 0.35s ease, 
    border-color 0.35s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 45px 90px rgba(10, 32, 83, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.2s cubic-bezier(0.21, 0.6, 0.35, 1),
    transform 1.2s cubic-bezier(0.21, 0.6, 0.35, 1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.94);
}

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

/* Staggered Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

/* Button Shine Effect */
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.5s;
  pointer-events: none;
}

.button:hover::after {
  left: 100%;
  top: 100%;
}

.glass-card {
  transition: 
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 40px 80px rgba(10, 32, 83, 0.35);
}

@keyframes growWidth {
  from { width: 0; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .vision-grid,
  .subpage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .benefits-grid,
  .results-grid,
  .testimonials-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    grid-column: auto;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 1rem;
  }

  .dashboard-card {
    width: min(100%, 560px);
  }

  .pricing-card-featured {
    transform: none;
  }

  .footer-copy {
    max-width: none;
  }
}

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

  .hero-grid {
    gap: 2rem;
  }

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

  .brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .mini-card-center {
    left: 24px;
    bottom: 22px;
  }
}

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

  .header-inner {
    padding: 12px 0;
  }

  .mobile-menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(22, 63, 125, 0.08);
  }

  .main-nav.is-active {
    display: flex;
  }

  .nav-button {
    order: 2;
    margin-left: auto;
  }

  .logo {
    order: 1;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    background: linear-gradient(180deg, #2b75ef 0%, #1655bf 68%, #ff6c2f 68%, #ff6c2f 100%);
  }

  .hero-bg-left,
  .hero-bg-right {
    display: none;
  }

  .brand-strip,
  .hero-metrics,
  .services-grid,
  .benefits-grid,
  .results-grid,
  .testimonials-grid,
  .pricing-grid,
  .blog-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .text-link,
  .pricing-card .button,
  .pricing-card .button-outline {
    width: 100%;
  }

  .cta-card .button-light {
    width: auto;
  }

  .mini-card {
    position: static;
    margin-top: 1rem;
  }

  .dashboard-card {
    padding: 1.5rem;
  }

  .chart-bars {
    height: 160px;
    gap: 0.6rem;
  }

  .contact-points {
    flex-direction: column;
  }

  .contact-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 480px) and (orientation: portrait) {
  .nav-button {
    display: none;
  }
  
  .header-inner {
    padding: 12px 0;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .logo {
    order: 1 !important;
    margin: 0 !important;
    width: auto !important;
    display: flex !important;
    justify-content: flex-start !important;
    padding-left: 0.5rem !important;
  }

  .mobile-menu-toggle {
    display: block !important;
    order: 2 !important;
    margin-right: 0.5rem !important;
  }

  body {
    text-align: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Contact Us Section - Centered in Mobile Portrait */
  .contact-section .container,
  .contact-section .section-copy {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .contact-points {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Dashboard Mini Cards Layout: 2 on top, 1 on bottom */
  .hero-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 1rem;
  }

  /* We need a grid for the mini cards specifically */
  /* They are siblings of .dashboard-card */
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mini-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
  }

  /* Since they are not wrapped in a container in HTML, I'll use grid on the parent and positioning */
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dashboard-card {
    width: 100%;
    margin-bottom: 1rem;
  }

  .mini-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    margin: 0 !important;
  }

  /* To get 2 on top and 1 on bottom, I'll wrap them in a grid if I can, or use flex-wrap */
  /* Actually, I can't easily wrap them without changing HTML. Let's use CSS Grid on the parent .hero-visual */
  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dashboard-card {
    grid-column: span 2;
  }

  .mini-card-top,
  .mini-card-bottom {
    grid-column: span 1;
  }

  .mini-card-center {
    grid-column: span 2;
    width: 100%;
  }

  /* Brand Strip: 3 on top, 2 on bottom */
  .brand-strip {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 0.8rem !important;
    padding: 1.2rem !important;
    width: 100%;
  }

  .brand-strip span:nth-child(1),
  .brand-strip span:nth-child(2),
  .brand-strip span:nth-child(3) {
    grid-column: span 2;
  }

  .brand-strip span:nth-child(4),
  .brand-strip span:nth-child(5) {
    grid-column: span 3;
  }

  /* Footer Content to Left */
  .site-footer .container,
  .site-footer .footer-grid {
    text-align: left;
    align-items: flex-start;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .hero-copy,
  .section-heading,
  .section-copy,
  .page-section-intro {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  /* CTA Button Center */
  .cta-card {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .cta-card .button {
    margin: 0 auto;
  }

  /* Hero Metrics: 2 Top, 1 Bottom Centered */
  .hero-metrics {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-metrics .metric-card:nth-child(3) {
    grid-column: span 2;
    width: 100%;
  }

  .services-grid,
  .benefits-grid,
  .results-grid,
  .testimonials-grid,
  .pricing-grid,
  .blog-grid,
  .footer-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Reset Footer alignment */
  .footer-grid {
    align-items: flex-start;
    text-align: left;
  }

  .metric-card,
  .service-card,
  .benefit-card,
  .result-card,
  .testimonial-card,
  .pricing-card,
  .blog-card,
  .info-card {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer and Contact eyebrows should be left */
  .contact-section .eyebrow,
  .site-footer .eyebrow {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header-inner {
    padding: 14px 0;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo-main {
    font-size: 1.3rem;
  }

  .logo-sub {
    letter-spacing: 0.28em;
  }

  .button,
  .text-link {
    min-height: 52px;
    padding: 0 1.15rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1rem;
  }

  .brand-strip span {
    font-size: 0.92rem;
  }

  .metric-card,
  .service-card,
  .benefit-card,
  .result-card,
  .testimonial-card,
  .step-card,
  .info-card,
  .vision-card,
  .analytics-card,
  .pricing-card,
  .contact-form {
    padding: 1.3rem;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .button {
    width: 100%;
  }

  .cta-card {
    padding: 1.6rem;
  }
}

@media (orientation: portrait) and (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .vision-grid,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .feature-panel,
  .services-grid,
  .benefits-grid,
  .results-grid,
  .testimonials-grid,
  .pricing-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    position: static;
    margin-top: 1rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
