:root {
  --yts-blue: #0b63f6;
  --yts-blue-dark: #0848b7;
  --yts-cyan: #0ea5b7;
  --yts-green: #22a447;
  --yts-navy: #07152d;
  --yts-ink: #172033;
  --yts-muted: #617087;
  --yts-line: #dfe7f1;
  --yts-soft: #f4f8ff;
  --yts-soft-2: #edf5ff;
  --yts-white: #ffffff;
  --yts-warning: #fff6d9;
  --yts-radius: 22px;
  --yts-shadow: 0 24px 70px rgba(26, 54, 98, 0.13);
  --yts-shadow-small: 0 12px 32px rgba(26, 54, 98, 0.09);
  --yts-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--yts-ink);
  background: var(--yts-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 14px;
  top: -100px;
  z-index: 9999;
  background: var(--yts-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid #80b6ff; outline-offset: 3px; }
.site-container { width: min(var(--yts-container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--yts-soft); }
.section-dark { background: var(--yts-navy); color: #fff; }
.section-tight { padding: 58px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--yts-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yts-blue), var(--yts-cyan));
}
.section-dark .eyebrow { color: #8bd9ff; }
.display-title,
.page-title,
.section-title {
  margin: 0;
  color: var(--yts-navy);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.display-title { font-size: clamp(2.75rem, 6vw, 5.25rem); }
.page-title { font-size: clamp(2.45rem, 5vw, 4.5rem); }
.section-title { font-size: clamp(2rem, 4vw, 3.55rem); }
.section-dark .display-title,
.section-dark .page-title,
.section-dark .section-title { color: #fff; }
.lead {
  margin: 22px 0 0;
  color: var(--yts-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 720px;
}
.section-dark .lead { color: #bdc9db; }
.centered { text-align: center; }
.centered .lead { margin-inline: auto; }

/* Header */
.site-header-v3 {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(223, 231, 241, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yts-navy);
  text-decoration: none;
}
.site-brand img { width: 74px; height: 50px; object-fit: contain; }
.site-brand span { display: grid; line-height: 1.15; }
.site-brand strong { font-size: 0.98rem; color: #174a99; }
.site-brand small { margin-top: 4px; color: var(--yts-muted); font-size: 0.68rem; }
.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: #35425a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--yts-blue); background: var(--yts-soft); }
.primary-nav .nav-cta {
  margin-left: 6px;
  padding-inline: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--yts-blue), var(--yts-cyan));
  box-shadow: 0 10px 24px rgba(11, 99, 246, 0.2);
}
.primary-nav .nav-cta:hover,
.primary-nav .nav-cta.active { color: #fff; background: linear-gradient(135deg, var(--yts-blue-dark), #087f91); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--yts-line);
  border-radius: 12px;
  background: #fff;
  color: var(--yts-navy);
  font-size: 1.4rem;
}

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.btn-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-v3:hover { transform: translateY(-2px); }
.btn-primary-v3 {
  color: #fff;
  background: linear-gradient(135deg, var(--yts-blue), var(--yts-cyan));
  box-shadow: 0 15px 32px rgba(11, 99, 246, 0.22);
}
.btn-secondary-v3 { color: var(--yts-navy); border-color: #cbd7e7; background: #fff; }
.btn-light-v3 { color: #16488f; background: #fff; }
.btn-ghost-v3 { color: #fff; border-color: rgba(255, 255, 255, 0.38); background: transparent; }

/* Homepage hero */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 12% 15%, rgba(14, 165, 183, 0.15), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(11, 99, 246, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff, #fff);
}
.home-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--yts-line);
}
.hero-proof div { display: grid; gap: 4px; }
.hero-proof strong { color: var(--yts-navy); font-size: 0.92rem; }
.hero-proof span { color: var(--yts-muted); font-size: 0.76rem; }
.hero-visual { position: relative; min-height: 470px; }
.dashboard-card {
  position: absolute;
  inset: 20px 0 35px 20px;
  overflow: hidden;
  border: 1px solid #d6e0ef;
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--yts-shadow);
  transform: rotate(1.2deg);
}
.browser-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid var(--yts-line);
  background: #f4f7fb;
}
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #c5cfdd; }
.browser-bar span {
  margin-left: 12px;
  width: 60%;
  padding: 5px 12px;
  border: 1px solid #e5ebf3;
  border-radius: 999px;
  background: #fff;
  color: #7a8799;
  font-size: 0.68rem;
  text-align: center;
}
.dashboard-body { display: grid; grid-template-columns: 86px 1fr; height: calc(100% - 46px); }
.dashboard-side { padding: 23px 16px; background: #0b203e; }
.dashboard-side b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--yts-blue), var(--yts-cyan));
}
.dashboard-side i { display: block; height: 8px; margin: 21px 2px; border-radius: 999px; background: rgba(255, 255, 255, 0.17); }
.dashboard-main { padding: 42px 34px; background: linear-gradient(145deg, #fbfdff, #edf5ff); }
.dashboard-main .dash-label { width: 108px; height: 10px; border-radius: 99px; background: var(--yts-green); }
.dashboard-main h2 { width: 84%; height: 25px; margin: 20px 0 10px; border-radius: 7px; background: #17233b; }
.dashboard-main h2.short { width: 58%; margin-top: 0; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.dashboard-metrics div { min-height: 125px; padding: 15px; border-radius: 14px; background: #fff; box-shadow: var(--yts-shadow-small); }
.dashboard-metrics b { display: block; color: var(--yts-blue); font-size: 1.4rem; }
.dashboard-metrics span { color: var(--yts-muted); font-size: 0.7rem; }
.floating-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 15px 18px;
  border: 1px solid var(--yts-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 57, 94, 0.16);
}
.floating-note small { color: var(--yts-muted); }
.floating-note.one { left: -15px; bottom: 6px; }
.floating-note.two { right: -10px; top: 24px; }
.floating-note.two strong::before { content: "●"; margin-right: 7px; color: var(--yts-green); }

/* Layout components */
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 40px; }
.section-heading > div { max-width: 800px; }
.section-heading > a { flex: 0 0 auto; color: var(--yts-blue); font-weight: 800; text-decoration: none; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card,
.service-card,
.course-card,
.process-card,
.case-card-v3 {
  border: 1px solid var(--yts-line);
  border-radius: var(--yts-radius);
  background: #fff;
  box-shadow: var(--yts-shadow-small);
}
.service-card,
.course-card,
.process-card { padding: 28px; }
.service-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--yts-shadow); }
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--yts-blue);
  background: var(--yts-soft-2);
  font-size: 1.25rem;
  font-weight: 900;
}
.service-card h3,
.course-card h3,
.process-card h3,
.info-card h3 { margin: 0 0 10px; color: var(--yts-navy); font-size: 1.25rem; line-height: 1.25; }
.service-card p,
.course-card p,
.process-card p,
.info-card p { margin: 0; color: var(--yts-muted); }
.card-link { display: inline-flex; margin-top: 20px; color: var(--yts-blue); font-weight: 800; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.pill { padding: 7px 11px; border-radius: 999px; color: #315b95; background: #edf4ff; font-size: 0.74rem; font-weight: 800; }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 29px; color: var(--yts-muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--yts-green); font-weight: 900; }
.section-dark .check-list li { color: #c3cede; }

/* Page hero */
.page-hero-v3 {
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 10% 15%, rgba(14, 165, 183, 0.14), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(11, 99, 246, 0.13), transparent 28%),
    linear-gradient(180deg, #f7fbff, #fff);
}
.page-hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 58px; align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--yts-muted); font-size: 0.83rem; }
.breadcrumbs a { color: var(--yts-blue); text-decoration: none; }
.hero-panel {
  padding: 32px;
  border: 1px solid var(--yts-line);
  border-radius: 25px;
  background: linear-gradient(145deg, #fff, #f4f8ff);
  box-shadow: var(--yts-shadow);
}
.hero-panel h2 { margin: 0 0 10px; color: var(--yts-navy); font-size: 1.4rem; }
.hero-panel p { color: var(--yts-muted); }
.hero-panel .metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 25px; }
.metric {
  padding: 18px;
  border: 1px solid #e4eaf3;
  border-radius: 15px;
  background: #fff;
}
.metric strong { display: block; color: var(--yts-blue); font-size: 1.4rem; }
.metric span { color: var(--yts-muted); font-size: 0.78rem; }

/* Split content */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.split-grid.wide-left { grid-template-columns: 1.1fr 0.9fr; }
.content-block h2 { margin: 0 0 17px; color: var(--yts-navy); font-size: clamp(1.8rem, 3.2vw, 2.8rem); line-height: 1.12; letter-spacing: -0.035em; }
.content-block h3 { margin-top: 30px; color: var(--yts-navy); }
.content-block p { color: var(--yts-muted); }
.image-frame {
  overflow: hidden;
  border: 1px solid var(--yts-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--yts-shadow);
}
.image-frame img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Case studies */
.case-card-v3 { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; padding: 40px; }
.case-card-v3 + .case-card-v3 { margin-top: 28px; }
.case-copy h3 { margin: 15px 0; color: var(--yts-navy); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.13; letter-spacing: -0.035em; }
.case-copy p { color: var(--yts-muted); }
.case-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 25px; }
.case-meta div { padding-top: 13px; border-top: 1px solid var(--yts-line); }
.case-meta small { display: block; color: var(--yts-muted); font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; }
.case-preview {
  min-height: 390px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 28%, rgba(214, 137, 64, 0.58), transparent 28%),
    linear-gradient(135deg, #0b0c12, #3a1b12);
  box-shadow: 0 24px 55px rgba(16, 22, 36, 0.25);
}
.case-preview-top { display: flex; align-items: center; gap: 7px; height: 43px; padding: 0 13px; background: #1b1d25; }
.case-preview-top i { width: 8px; height: 8px; border-radius: 50%; background: #697080; }
.case-preview-top span { margin-left: 10px; color: #b6bdca; font-size: 0.7rem; }
.case-preview-body { padding: 58px 36px; }
.case-preview-body small { color: #e6ab58; letter-spacing: 0.13em; }
.case-preview-body h4 { margin: 14px 0; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 0.98; }
.case-preview-body h4 span { color: #e6ab58; }
.case-preview-body p { max-width: 380px; color: #d4c7bd; }

/* Course cards */
.course-groups { display: grid; gap: 36px; }
.course-group {
  padding: 34px;
  border: 1px solid var(--yts-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--yts-shadow-small);
}
.course-group h2 { margin: 0 0 22px; color: var(--yts-navy); font-size: 1.8rem; }
.course-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.course-link {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid #e2e9f2;
  border-radius: 16px;
  color: var(--yts-navy);
  background: #fbfdff;
  text-decoration: none;
}
.course-link:hover { border-color: #a6c5f8; background: #f1f7ff; }
.course-link strong { line-height: 1.3; }
.course-link span { color: var(--yts-muted); font-size: 0.78rem; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 36px auto 0; }
.faq-list details {
  border: 1px solid var(--yts-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(26, 54, 98, 0.06);
}
.faq-list summary { padding: 19px 22px; color: var(--yts-navy); font-weight: 800; cursor: pointer; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--yts-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 35px; }
.contact-card,
.form-card {
  padding: 32px;
  border: 1px solid var(--yts-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--yts-shadow-small);
}
.contact-card h2,
.form-card h2 { margin-top: 0; color: var(--yts-navy); }
.contact-list { display: grid; gap: 13px; margin-top: 24px; }
.contact-list a,
.contact-list address { padding: 16px; border-radius: 14px; color: var(--yts-ink); background: var(--yts-soft); text-decoration: none; font-style: normal; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--yts-navy); font-size: 0.85rem; font-weight: 800; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd9e7;
  border-radius: 12px;
  color: var(--yts-ink);
  background: #fff;
}
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--yts-blue); outline: 3px solid rgba(11, 99, 246, 0.12); }
.form-note { color: var(--yts-muted); font-size: 0.78rem; }
.alert { margin-bottom: 20px; padding: 14px 17px; border-radius: 12px; }
.alert-success { color: #176533; background: #eaf8ef; border: 1px solid #b9e7c8; }
.alert-error { color: #8b2c2c; background: #fff0f0; border: 1px solid #f0c0c0; }
.map-frame { margin-top: 30px; overflow: hidden; border: 1px solid var(--yts-line); border-radius: 22px; }
.map-frame iframe { display: block; width: 100%; min-height: 390px; border: 0; }

/* Pricing */
.price-card { position: relative; padding: 30px; }
.price-card.featured { border-color: #96bdf8; background: linear-gradient(180deg, #fff, #f3f8ff); }
.price-card .tag { display: inline-flex; padding: 6px 10px; border-radius: 99px; color: #245a9f; background: #eaf3ff; font-size: 0.7rem; font-weight: 800; }
.price-card .price { display: block; margin: 17px 0 4px; color: var(--yts-navy); font-size: 2rem; font-weight: 900; }
.price-card .price small { color: var(--yts-muted); font-size: 0.78rem; font-weight: 600; }

/* CTA */
.cta-v3 { padding: 80px 0; }
.cta-box-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 48px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(83, 215, 232, 0.34), transparent 22%),
    linear-gradient(135deg, #0b63f6, #082a52);
  box-shadow: var(--yts-shadow);
}
.cta-box-v3 h2 { margin: 0; color: #fff; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.07; letter-spacing: -0.04em; }
.cta-box-v3 p { margin-bottom: 0; color: #dce8fa; }
.cta-actions { display: grid; gap: 11px; min-width: 190px; }

/* Footer */
.site-footer-v3 { padding: 66px 0 24px; color: #fff; background: #061126; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 42px; }
.footer-grid section { display: grid; align-content: start; gap: 9px; }
.footer-grid h2 { margin: 0 0 10px; color: #fff; font-size: 0.96rem; }
.footer-grid p,
.footer-grid address,
.footer-grid a { color: #aebcd0; font-size: 0.87rem; font-style: normal; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-brand { color: #fff !important; font-size: 1.2rem !important; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #8998ad; font-size: 0.75rem; }

/* Small utility */
.muted { color: var(--yts-muted); }
.text-link { color: var(--yts-blue); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.notice-box { padding: 18px 20px; border: 1px solid #f0dc9e; border-radius: 14px; color: #6f5520; background: var(--yts-warning); }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.stat-strip article { padding: 22px; border: 1px solid var(--yts-line); border-radius: 16px; background: #fff; }
.stat-strip strong { display: block; color: var(--yts-blue); font-size: 1.7rem; }
.stat-strip span { color: var(--yts-muted); font-size: 0.78rem; }

@media (max-width: 1040px) {
  .primary-nav { gap: 2px; }
  .primary-nav a { padding-inline: 9px; font-size: 0.82rem; }
  .home-hero-grid,
  .page-hero-grid,
  .case-card-v3,
  .split-grid,
  .split-grid.wide-left,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; width: 100%; margin-inline: auto; }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-container { width: min(var(--yts-container), calc(100% - 28px)); }
  .nav-shell { min-height: 72px; }
  .site-brand img { width: 62px; height: 42px; }
  .site-brand small { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--yts-line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(20, 45, 85, 0.13);
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 14px; }
  .primary-nav .nav-cta { margin: 3px 0 0; text-align: center; }
  .home-hero,
  .page-hero-v3 { padding-top: 64px; }
  .section { padding: 72px 0; }
  .card-grid,
  .card-grid.two,
  .course-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading { align-items: start; flex-direction: column; }
  .cta-box-v3 { align-items: flex-start; flex-direction: column; padding: 38px 28px; }
  .cta-actions { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .dashboard-card { inset: 15px 0 34px; }
  .floating-note.one { left: 8px; }
  .floating-note.two { right: 5px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .display-title { font-size: 2.65rem; }
  .page-title { font-size: 2.35rem; }
  .section-title { font-size: 2rem; }
  .button-row { flex-direction: column; }
  .btn-v3 { width: 100%; }
  .hero-visual { min-height: 370px; }
  .dashboard-card { inset: 10px 0 40px; }
  .dashboard-body { grid-template-columns: 58px 1fr; }
  .dashboard-side { padding-inline: 8px; }
  .dashboard-side b { width: 40px; height: 40px; font-size: 0.75rem; }
  .dashboard-main { padding: 34px 18px; }
  .dashboard-metrics { grid-template-columns: 1fr; gap: 8px; margin-top: 25px; }
  .dashboard-metrics div { min-height: auto; }
  .dashboard-metrics div:nth-child(3) { display: none; }
  .floating-note { padding: 11px 13px; font-size: 0.75rem; }
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .course-list,
  .form-grid,
  .case-meta,
  .hero-panel .metric-grid,
  .stat-strip { grid-template-columns: 1fr; }
  .service-card,
  .course-card,
  .process-card,
  .course-group,
  .contact-card,
  .form-card { padding: 23px; }
  .case-card-v3 { padding: 23px; }
  .case-preview { min-height: 330px; }
  .case-preview-body { padding: 45px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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