:root {
  --navy-950: #1F2937;
  --navy-900: #1F2937;
  --navy-800: #1F2937;
  --navy-700: #1F2937;
  --navy-600: #1F2937;
  --navy-500: rgba(31, 41, 55, 0.72);
  --navy-300: rgba(242, 242, 242, 0.64);
  --navy-200: rgba(242, 242, 242, 0.78);
  --gray-100: #F2F2F2;
  --gray-50: #FFFFFF;
  --gray-0: #FFFFFF;
  --gray-300: rgba(31, 41, 55, 0.16);
  --gray-400: rgba(31, 41, 55, 0.38);
  --gold-700: #D18A1F;
  --gold-600: #D18A1F;
  --gold-500: #D18A1F;
  --gold-100: rgba(209, 138, 31, 0.18);
  --gold-50: rgba(209, 138, 31, 0.10);
  --success-500: #1F2937;
  --danger-500: #D18A1F;
  --shadow-sm: 0 1px 3px rgba(31, 41, 55, 0.08), 0 1px 2px rgba(31, 41, 55, 0.04);
  --shadow-md: 0 4px 12px rgba(31, 41, 55, 0.08), 0 2px 4px rgba(31, 41, 55, 0.04);
  --shadow-lg: 0 12px 28px rgba(31, 41, 55, 0.12), 0 4px 8px rgba(31, 41, 55, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1200px;
  --header-height: 86px;
  --font-body: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--gray-100);
  color: var(--navy-700);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4, .btn, .nav-links a, .logo, .hero-logo-pill, .eyebrow, .step-num, .num {
  font-family: var(--font-display);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section, .hero { scroll-margin-top: 104px; }
.section {
  padding: 100px 0;
  position: relative;
}
.section-soft { background: var(--gray-100); }
.gold { color: var(--gold-500); }

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(209, 138, 31, 0.16), transparent 28%),
    var(--gray-100);
  transition: opacity .55s ease, visibility .55s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-mark {
  display: grid;
  place-items: center;
  gap: 26px;
}
.preloader-mark img {
  width: clamp(190px, 22vw, 330px);
  filter: drop-shadow(0 18px 32px rgba(31, 41, 55, 0.16));
  animation: yiaPreloadLogo 1.45s ease-in-out infinite;
}
.preloader-mark span {
  width: min(220px, 48vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.12);
}
.preloader-mark span::before {
  content: '';
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-500);
  animation: yiaPreloadBar 1.1s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(242, 242, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}
.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  width: clamp(120px, 11vw, 180px);
  height: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-600);
  transition: color .18s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold-600); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 0.16);
  background: #FFFFFF;
  color: var(--navy-800);
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: var(--gold-500);
  color: #FFFFFF;
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--gold-600); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}
.contact .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-white {
  background: #FFFFFF;
  color: var(--navy-800);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 41, 55, 0.28), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(209, 138, 31, 0.12), transparent 18%),
    linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: #FFFFFF;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 1fr);
  align-items: center;
  gap: 48px;
}
.hero-copy { position: relative; z-index: 1; }
.hero-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-200);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}
.hero-logo-pill::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(209, 138, 31, 0.15);
}
.hero h1 {
  margin: 28px 0 18px;
  font-size: clamp(2.9rem, 2rem + 4vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 650px;
}
.hero-sub {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.04rem, 0.96rem + 0.35vw, 1.28rem);
  color: var(--navy-200);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.microcopy {
  margin-top: 18px;
  color: var(--navy-300);
  font-size: 0.96rem;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  border: 1px solid rgba(209, 138, 31, 0.2);
  box-shadow: 0 0 0 72px rgba(209, 138, 31, 0.04);
  right: 26px;
  top: 70px;
}
.dashboard-card {
  position: relative;
  width: min(100%, 520px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 70px rgba(31, 41, 55, 0.42);
  overflow: hidden;
  z-index: 1;
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
}
.dash-dots { display: flex; gap: 8px; }
.dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}
.dash-panel {
  margin: 0 22px 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy-800);
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.kpi {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--gray-50);
}
.kpi small {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-500);
  font-size: 0.88rem;
  font-weight: 600;
}
.kpi strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  letter-spacing: -0.03em;
}
.kpi.good strong { color: var(--success-500); }
.chart {
  margin-top: 16px;
  padding: 14px 12px 6px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--gray-0) 0%, rgba(209, 138, 31, 0.08) 100%);
  border: 1px solid rgba(31, 41, 55, 0.08);
}
.chart svg { width: 100%; height: auto; display: block; }
.dash-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}
.dash-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.09);
  background: #FFFFFF;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-700);
  background: var(--gold-50);
}
.float-note {
  position: absolute;
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.25;
  z-index: 2;
}
.float-note span {
  display: block;
  margin-top: 6px;
  color: var(--navy-500);
  font-size: 0.88rem;
  font-weight: 600;
}
.float-note.one { left: -8px; top: 116px; }
.float-note.two { right: -18px; bottom: 64px; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.section-title {
  margin: 0;
  max-width: 780px;
  color: var(--navy-900);
  font-size: clamp(2.35rem, 1.75rem + 2vw, 4.25rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}
.section-title span { color: var(--gold-500); }
.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.12rem;
  color: var(--navy-500);
}

.audience-grid,
.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}
.quote-box {
  position: relative;
  padding: 34px 32px;
  border-radius: 28px;
  background: var(--navy-800);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}
.quote-box::after {
  content: '❝';
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(209, 138, 31, 0.26);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
}
.quote-box h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 1.5rem + 1vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.quote-box p {
  margin: 0;
  color: var(--navy-200);
}
.mini-checks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.mini-checks li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}
.mini-checks li strong,
.mini-checks li span {
  display: block;
}
.mini-checks li strong {
  color: var(--gray-0);
  font-size: 1.04rem;
}
.mini-checks li span {
  margin-top: 4px;
  color: var(--navy-200);
  font-weight: 500;
}
.mini-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-500);
  font-weight: 700;
}
.pain-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.pain-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: var(--shadow-sm);
}
.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--gray-0);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}
.pain-item h3,
.benefit-card h3,
.service-card h3,
.step h3,
.contact h2,
.form-card h3,
.faq-item summary,
.about-copy h2 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 1.6rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.pain-item p,
.benefit-card p,
.service-card p,
.step p,
.faq-item p,
.contact p,
.about-copy p,
.field label,
.form-small {
  margin: 0;
  color: var(--navy-500);
}

.steps,
.benefit-grid,
.services-grid,
.cred-grid {
  display: grid;
  gap: 18px;
}
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 42px; }
.step,
.benefit-card,
.service-card,
.form-card,
.faq-item,
.photo-card {
  background: #FFFFFF;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.step,
.benefit-card,
.service-card { padding: 30px 24px; }
.step-num,
.num {
  display: block;
  margin-bottom: 18px;
  color: rgba(31, 41, 55, 0.1);
  font-size: clamp(2.8rem, 2rem + 1vw, 4rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.step { position: relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(31, 41, 55, 0.2);
  font-size: 1.15rem;
  font-weight: 700;
}

.benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 40px; }
.benefit-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefits-dark {
  overflow: hidden;
  background: var(--navy-800);
  color: var(--gray-0);
}
.benefits-dark .section-title {
  max-width: 960px;
  color: var(--gray-0);
}
.benefits-dark .section-title span {
  color: var(--gold-500);
}
.benefits-dark .section-intro {
  color: var(--navy-200);
}
.benefits-list {
  display: grid;
  gap: 0;
  margin-top: 44px;
}
.benefits-dark .benefit-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid rgba(242, 242, 242, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.benefits-dark .benefit-card:first-child {
  padding-top: 0;
}
.benefits-dark .benefit-card h3 {
  color: var(--gray-0);
  font-size: 1.35rem;
}
.benefits-dark .benefit-card p {
  color: var(--navy-200);
  max-width: 940px;
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(209, 138, 31, 0.16);
  color: var(--gold-500);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-head {
  display: block;
}
.services-head .section-intro {
  max-width: 460px;
  margin-top: 0;
}
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), rgba(209, 138, 31, 0));
}
.service-card.featured {
  background: linear-gradient(180deg, var(--gray-0) 0%, rgba(209, 138, 31, 0.08) 100%);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--navy-800);
  color: var(--gray-0);
  box-shadow: inset 0 0 0 2px rgba(209, 138, 31, 0.32), 0 8px 18px rgba(31, 41, 55, 0.12);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tagline {
  margin-bottom: 12px;
  color: var(--gold-600);
  font-size: 0.92rem;
  font-weight: 700;
}
.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--navy-700);
}
.service-card li { margin-top: 8px; }
.service-card .dash-items {
  list-style: none;
  padding-left: 0;
}
.service-card .dash-items li {
  display: flex;
  gap: 10px;
}
.service-card .dash-items li::before {
  content: '—';
  color: var(--gold-500);
  font-weight: 800;
}

.photo-card {
  overflow: hidden;
  padding: 0;
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.about-copy {
  padding-top: 6px;
}
.about-name {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}
.about-role {
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--gold-600);
  font-weight: 700;
}
.about-copy h2 {
  font-size: clamp(2.4rem, 1.8rem + 1.5vw, 3.7rem);
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  color: var(--navy-700);
  font-weight: 700;
}
.about-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.about-list li::before {
  content: '—';
  color: var(--gold-500);
  font-weight: 800;
}
.cred-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}
.cred {
  padding: 16px 18px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(31, 41, 55, 0.08);
  color: var(--navy-700);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.faq-list { display: grid; gap: 16px; }
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  position: relative;
  font-size: 1.15rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  font-size: 1.4rem;
  font-weight: 800;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 0 24px 22px;
}

.contact {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #FFFFFF;
}
.contact h2 {
  color: #FFFFFF;
  font-size: clamp(2.4rem, 1.9rem + 1.5vw, 3.8rem);
}
.contact p,
.contact .contact-note { color: var(--navy-200); }
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.contact-note { margin-top: 16px; }
.form-card {
  padding: 30px;
  border-radius: 28px;
}
.form-card h3 { font-size: 1.85rem; }
.form-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-700);
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 55, 0.16);
  border-radius: 16px;
  background: #FFFFFF;
  color: var(--navy-800);
  padding: 16px 18px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(209, 138, 31, 0.18);
}
.form-submit { width: 100%; }
.form-message {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}
.form-message.success {
  background: rgba(31, 41, 55, 0.10);
  color: var(--success-500);
}
.form-message.error {
  background: rgba(209, 138, 31, 0.12);
  color: var(--danger-500);
}
.form-small { margin-top: 16px; font-size: 0.92rem; }
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 52px 0;
  background: var(--gray-100);
  color: var(--navy-700);
  border-top: 5px solid var(--gold-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(360px, 1.35fr) auto minmax(150px, 0.7fr);
  align-items: center;
  gap: 30px;
}
.footer-logo img { width: clamp(150px, 13vw, 220px); }
.footer-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: center;
}
.footer-copy a,
.footer-phone {
  color: var(--navy-800);
  font-weight: 800;
}
.footer-copy a:hover,
.footer-copy a:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible { color: var(--gold-500); }
.footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: #FFFFFF;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.social-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(209, 138, 31, 0.45);
}
.footer-phone {
  justify-self: end;
  white-space: nowrap;
}

@keyframes yiaPreloadLogo {
  0%, 100% { transform: translateY(0) scale(1); opacity: .96; }
  50% { transform: translateY(-8px) scale(1.025); opacity: 1; }
}

@keyframes yiaPreloadBar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(240%); }
}

@media (max-width: 1100px) {
  .hero .container,
  .audience-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .services-grid,
  .steps,
  .benefit-grid,
  .benefit-grid-three {
    grid-template-columns: 1fr;
  }
  .step:not(:last-child)::after { display: none; }
  .services-head {
    display: block;
  }
  .services-head .section-intro { margin-top: 18px; }
  .hero-visual {
    min-height: 540px;
  }
  .hero-orbit {
    width: 460px;
    height: 460px;
    inset: 60px auto auto 50%;
    transform: translateX(-50%);
  }
  .float-note.one { left: 26px; }
  .float-note.two { right: 12px; }
  .photo-card img { min-height: 420px; }
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-phone { justify-self: center; }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 12px);
    padding: 18px;
    background: rgba(242, 242, 242, 0.98);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn { display: none; }
  .hero { padding-top: 60px; }
  .hero h1 { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .float-note { padding: 14px 16px; }
}

@media (max-width: 720px) {
  .section { padding: 74px 0; }
  .container { width: min(100% - 24px, var(--container)); }
  .hero-cta,
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn,
  .hero-cta .btn,
  .contact-buttons .btn { width: 100%; }
  .hero-visual {
    min-height: 470px;
  }
  .hero-orbit {
    width: 340px;
    height: 340px;
    box-shadow: 0 0 0 36px rgba(209, 138, 31, 0.04);
  }
  .dashboard-card {
    width: 100%;
  }
  .float-note.one {
    top: 26px;
    left: 8px;
  }
  .float-note.two {
    right: 8px;
    bottom: 10px;
  }
  .form-card { padding: 22px; }
  .pain-item { grid-template-columns: 1fr; }
  .pain-icon { margin-bottom: 6px; }
  .benefits-dark .benefit-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }
  .site-footer { padding: 44px 0; }
  .footer-grid { gap: 22px; }
  .footer-copy { gap: 10px; }
  .footer-socials { gap: 12px; }
  .cred-grid { grid-template-columns: 1fr; }
}

/* Motion / parallax restored */
@media (prefers-reduced-motion: no-preference) {
  body.motion-ready .motion-reveal,
  body.motion-ready .motion-parallax {
    --reveal-x: 0px;
    --reveal-y: 0px;
    --parallax-y: 0px;
    --hover-y: 0px;
    will-change: transform, opacity, filter;
  }

  body.motion-ready .motion-reveal {
    --reveal-y: 32px;
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y) + var(--hover-y)), 0);
    transition:
      opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
      filter 760ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease;
    transition-delay: var(--motion-delay, 0ms);
  }

  body.motion-ready .motion-reveal[data-reveal="left"] {
    --reveal-x: -34px;
    --reveal-y: 8px;
  }

  body.motion-ready .motion-reveal[data-reveal="right"] {
    --reveal-x: 34px;
    --reveal-y: 8px;
  }

  body.motion-ready .motion-reveal[data-reveal="scale"] {
    --reveal-y: 18px;
    transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y) + var(--hover-y)), 0) scale(.96);
  }

  body.motion-ready .motion-reveal.is-visible {
    --reveal-x: 0px;
    --reveal-y: 0px;
    opacity: 1;
    filter: blur(0);
  }

  body.motion-ready .motion-reveal[data-reveal="scale"].is-visible {
    transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y) + var(--hover-y)), 0) scale(1);
  }

  body.motion-ready .motion-parallax:not(.motion-reveal),
  body.motion-ready .motion-reveal.motion-parallax.is-visible:not([data-reveal="scale"]) {
    transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y) + var(--hover-y)), 0);
  }

  .dashboard-card {
    animation: yiaFloatCard 7s ease-in-out infinite;
  }

  .float-note.one {
    animation: yiaFloatNoteOne 5.8s ease-in-out infinite;
  }

  .float-note.two {
    animation: yiaFloatNoteTwo 6.4s ease-in-out infinite;
  }

  .hero-orbit {
    animation: yiaPulseRing 8s ease-in-out infinite;
  }

  .chart svg path:last-child {
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    animation: yiaChartDraw 1.7s cubic-bezier(0.16, 1, 0.3, 1) .45s forwards;
  }

  .pain-item,
  .step,
  .benefit-card,
  .service-card,
  .cred,
  .faq-item {
    --hover-y: 0px;
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease;
  }

  .pain-item:hover,
  .step:hover,
  .benefit-card:hover,
  .service-card:hover,
  .cred:hover,
  .faq-item:hover {
    --hover-y: -6px;
    border-color: rgba(209, 138, 31, 0.28);
    box-shadow: var(--shadow-md);
  }

  .quote-box::after {
    animation: yiaQuotePulse 4.8s ease-in-out infinite;
  }

  @keyframes yiaFloatCard {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
  }

  @keyframes yiaFloatNoteOne {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(10px, -12px, 0); }
  }

  @keyframes yiaFloatNoteTwo {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-10px, 10px, 0); }
  }

  @keyframes yiaPulseRing {
    0%, 100% {
      opacity: .88;
      box-shadow: 0 0 0 72px rgba(209, 138, 31, 0.04);
    }
    50% {
      opacity: 1;
      box-shadow: 0 0 0 92px rgba(209, 138, 31, 0.055);
    }
  }

  @keyframes yiaChartDraw {
    to { stroke-dashoffset: 0; }
  }

  @keyframes yiaQuotePulse {
    0%, 100% { opacity: .72; transform: translate3d(0, 0, 0); }
    50% { opacity: 1; transform: translate3d(-4px, 4px, 0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
