:root {
  --blue-950: #061a3d;
  --blue-900: #08275f;
  --blue-800: #0b3b91;
  --blue-700: #0b4fc4;
  --blue-600: #156ee8;
  --blue-500: #3b8cff;
  --blue-100: #e7f1ff;
  --blue-50: #f5f9ff;
  --white: #ffffff;
  --ink: #102033;
  --muted: #60708a;
  --line: #d9e6f7;
  --success: #128c7e;
  --shadow: 0 30px 90px rgba(6, 26, 61, 0.16);
  --soft-shadow: 0 18px 50px rgba(6, 26, 61, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(217, 230, 247, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 16px 44px rgba(6, 26, 61, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 14px 30px rgba(21, 110, 232, 0.25);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blue-50);
}

.language-switcher button {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-900);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--blue-700);
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-600);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(11, 79, 196, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
}

.section {
  padding: 112px 0;
}

.section-tint {
  background: var(--blue-50);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero {
  padding: 164px 0 112px;
}

.page-hero {
  padding: 148px 0 92px;
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 61, 0.96), rgba(8, 39, 95, 0.86), rgba(21, 110, 232, 0.42)),
    var(--hero-image, url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80")) center/cover;
}

.hero-bg::after,
.page-hero-bg::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(180deg, rgba(6, 26, 61, 0), rgba(6, 26, 61, 0.64));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.64fr);
  gap: 68px;
  align-items: center;
}

.page-hero .container {
  position: relative;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #cfe4ff;
  background: rgba(255, 255, 255, 0.1);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-deep .eyebrow {
  color: #acd2ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  color: var(--blue-950);
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-subtitle,
.page-subtitle {
  max-width: 740px;
  margin: 28px 0 0;
  color: #e2efff;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-large {
  min-height: 66px;
  padding: 0 34px;
  font-size: 1.05rem;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 18px 42px rgba(18, 102, 227, 0.32);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
}

.full-width {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.92rem;
  font-weight: 800;
}

.academy-card,
.hero-panel,
.service-card,
.testimonial,
.pricing-card,
.contact-form,
.package-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.hero-panel {
  overflow: hidden;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel-media {
  display: grid;
  min-height: 235px;
  align-content: end;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 26, 61, 0.08), rgba(6, 26, 61, 0.82)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.hero-panel-media span,
.hero-panel-media strong {
  display: block;
}

.hero-panel-media span {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel-media strong {
  font-size: 2rem;
  line-height: 1.05;
}

.hero-panel-body {
  padding: 30px;
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8d3f8;
  box-shadow: 0 22px 54px rgba(6, 26, 61, 0.12);
}

.featured-training-card {
  min-height: 430px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(21, 110, 232, 0.16);
  background: var(--white);
}

.training-card-image {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(135deg, #ecf6ff 0%, #ffffff 46%, #dbeafe 100%);
  transform: scale(1);
  transition: transform 220ms ease, filter 220ms ease;
}

.training-card-image::after {
  position: absolute;
  inset: auto 20px 18px 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.18));
  content: "";
}

.training-card-image::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 79, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 79, 196, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.45;
}

.photo-training-image {
  background: var(--blue-50);
}

.photo-training-image::before {
  display: none;
}

.photo-training-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-training-card:hover .training-card-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.visual-panel,
.visual-dashboard,
.search-ad,
.conversion-chart,
.browser-mock,
.seo-card,
.lead-card {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(21, 110, 232, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(6, 26, 61, 0.13);
  backdrop-filter: blur(12px);
}

.visual-map {
  position: absolute;
  inset: 18px 18px 18px 18px;
  z-index: 1;
  border: 1px solid rgba(21, 110, 232, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(21, 110, 232, 0.13) 49%, rgba(21, 110, 232, 0.13) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(21, 110, 232, 0.12) 49%, rgba(21, 110, 232, 0.12) 51%, transparent 52%),
    #f8fbff;
}

.map-pin {
  position: absolute;
  left: 42%;
  top: 32%;
  width: 28px;
  height: 28px;
  border: 6px solid var(--blue-700);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(11, 79, 196, 0.28);
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(11, 79, 196, 0.16);
}

.road-one {
  left: 18px;
  right: 28px;
  top: 118px;
  height: 10px;
  transform: rotate(-10deg);
}

.road-two {
  left: 52px;
  top: 18px;
  width: 10px;
  height: 144px;
  transform: rotate(18deg);
}

.visual-google-profile .visual-panel {
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 5px;
  width: 58%;
  padding: 14px;
}

.visual-panel strong,
.visual-dashboard strong,
.search-ad strong,
.conversion-chart strong,
.browser-mock strong,
.seo-card strong,
.lead-card strong {
  color: var(--blue-950);
}

.visual-panel span,
.visual-panel small,
.search-ad small {
  color: var(--muted);
  font-weight: 800;
}

.visual-dashboard {
  left: 20px;
  top: 22px;
  width: 66%;
  padding: 16px;
}

.metric-pill {
  display: inline-flex;
  margin: 10px 6px 10px 0;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 0.74rem;
  font-weight: 900;
}

.visual-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 58px;
}

.visual-bars i {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-800));
}

.visual-bars i:nth-child(1) { height: 34%; }
.visual-bars i:nth-child(2) { height: 64%; }
.visual-bars i:nth-child(3) { height: 48%; }
.visual-bars i:nth-child(4) { height: 86%; }

.lead-card {
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  min-width: 112px;
  padding: 14px;
  color: var(--muted);
  font-weight: 900;
}

.lead-card strong {
  font-size: 1.65rem;
}

.search-ad {
  left: 22px;
  right: 22px;
  top: 24px;
  display: grid;
  gap: 6px;
  padding: 16px;
}

.search-ad span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
}

.conversion-chart {
  left: 42px;
  right: 42px;
  bottom: 24px;
  padding: 14px;
}

.visual-line {
  height: 48px;
  margin-top: 8px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 0 42%, var(--blue-600) 43% 48%, transparent 49%),
    linear-gradient(180deg, var(--blue-50), var(--white));
}

.browser-mock {
  left: 22px;
  top: 24px;
  width: 68%;
  padding: 16px;
}

.browser-mock > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--blue-300);
}

.browser-mock strong {
  display: block;
  margin-top: 14px;
}

.site-layout-lines {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.site-layout-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--blue-100);
}

.site-layout-lines i:nth-child(1) { width: 88%; }
.site-layout-lines i:nth-child(2) { width: 66%; }
.site-layout-lines i:nth-child(3) { width: 76%; }

.seo-card {
  right: 22px;
  bottom: 24px;
  display: grid;
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 900;
}

.seo-card strong {
  font-size: 1.7rem;
}

.ai-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 110, 232, 0.18);
  box-shadow: 0 18px 38px rgba(6, 26, 61, 0.13);
  font-weight: 900;
}

.main-node {
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  transform: translate(-50%, -50%);
}

.node-one { left: 26px; top: 28px; width: 70px; height: 46px; }
.node-two { right: 26px; top: 34px; width: 80px; height: 46px; }
.node-three { right: 46px; bottom: 28px; width: 82px; height: 46px; }

.workflow-line {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(11, 79, 196, 0.35);
  transform-origin: left center;
}

.line-one { left: 88px; top: 72px; width: 92px; transform: rotate(24deg); }
.line-two { right: 86px; top: 76px; width: 88px; transform: rotate(150deg); }
.line-three { right: 92px; bottom: 68px; width: 92px; transform: rotate(212deg); }

.training-card-body {
  display: flex;
  min-height: 240px;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.training-card-body h3 {
  margin-top: 0;
}

.training-card-body p {
  flex: 1;
}

.service-icon,
.number-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--blue-700);
  background: var(--blue-100);
  font-weight: 900;
}

.course-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 18px 36px rgba(21, 110, 232, 0.22);
  font-size: 1.35rem;
  font-weight: 900;
}

.stats-grid,
.trust-badge-grid,
.story-grid,
.case-grid,
.dashboard-grid,
.video-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card,
.trust-card,
.story-card,
.case-card,
.dashboard-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.stat-card {
  padding: 28px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.trust-badge-grid {
  grid-template-columns: repeat(5, 1fr);
}

.trust-card,
.story-card,
.case-card,
.dashboard-card,
.video-card {
  padding: 28px;
}

.trust-card span,
.story-card span,
.case-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.story-grid,
.case-grid,
.video-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-photo {
  min-height: 220px;
  margin: -28px -28px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 61, 0.05), rgba(6, 26, 61, 0.55)),
    var(--photo) center/cover;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.before-after div {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--blue-50);
}

.before-after strong {
  display: block;
  color: var(--blue-950);
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 26, 61, 0.18), rgba(6, 26, 61, 0.86)),
    var(--video-image) center/cover;
}

.video-card h3,
.video-card p {
  color: var(--white);
}

.play-button {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 58px;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--white);
  font-weight: 900;
}

.dashboard-grid {
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
}

.dashboard-preview {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--blue-950);
  background: var(--white);
}

.progress-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--blue-100);
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-600);
}

.calendly-box {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-50);
}

.resource-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.search-box {
  position: relative;
}

.search-box input {
  min-height: 60px;
  padding-left: 48px;
  box-shadow: var(--soft-shadow);
}

.search-box::before {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid var(--blue-700);
  border-radius: 50%;
}

.search-box::after {
  position: absolute;
  left: 32px;
  top: 34px;
  z-index: 1;
  content: "";
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-700);
  transform: rotate(45deg);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--blue-700);
  background: var(--blue-700);
  transform: translateY(-1px);
}

.resource-category {
  margin-top: 54px;
}

.resource-category[hidden],
.resource-card[hidden] {
  display: none;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.resource-card {
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto auto auto 1fr auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.toolkit-card {
  min-height: 650px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(21, 110, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(236, 246, 255, 0.55), rgba(255, 255, 255, 0) 34%),
    var(--white);
}

.toolkit-cover {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(6, 26, 61, 0.02), rgba(6, 26, 61, 0.72)),
    var(--cover-image) center/cover;
}

.status-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(6, 26, 61, 0.62);
  box-shadow: 0 14px 28px rgba(6, 26, 61, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.status-free {
  background: rgba(13, 148, 136, 0.9);
}

.status-premium {
  background: rgba(11, 79, 196, 0.9);
}

.status-student {
  background: rgba(6, 26, 61, 0.9);
}

.toolkit-cover .resource-icon {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.toolkit-card-body {
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto auto auto 1fr auto;
  height: 100%;
  padding: 28px;
}

.toolkit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.toolkit-card h3 {
  margin-top: 0;
  font-size: 1.45rem;
}

.toolkit-card .button {
  align-self: end;
}

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

.resource-assets span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(21, 110, 232, 0.16);
  border-radius: 14px;
  color: var(--blue-900);
  background: var(--blue-50);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.toolkit-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-self: end;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: #b8d3f8;
  box-shadow: 0 24px 58px rgba(6, 26, 61, 0.12);
}

.resource-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 16px 34px rgba(21, 110, 232, 0.22);
  font-size: 1.1rem;
  font-weight: 900;
}

.resource-type {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.empty-state {
  display: none;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--blue-50);
  text-align: center;
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.service-card p,
.testimonial p,
.info-card p,
.course-list p,
.package-card p,
.contact-copy p,
.faq-list p {
  color: var(--muted);
}

.service-card .button {
  margin-top: auto;
}

.why-grid,
.course-list,
.benefit-grid,
.package-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.why-grid {
  grid-template-columns: repeat(5, 1fr);
}

.why-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(6, 26, 61, 0.055);
}

.why-item span {
  display: block;
  color: var(--blue-950);
  font-weight: 900;
}

.section-deep {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 61, 0.98), rgba(8, 39, 95, 0.98)),
    var(--blue-950);
}

.section-deep h2 {
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 30px;
}

.section-deep .testimonial {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.section-deep .testimonial p {
  color: #e5efff;
}

.testimonial strong {
  display: block;
  color: var(--blue-950);
}

.section-deep .testimonial strong {
  color: #acd2ff;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}

.stars span {
  width: 14px;
  height: 14px;
  background: #f7c948;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 56%, 82% 100%, 50% 72%, 18% 100%, 31% 56%, 0 35%, 38% 35%);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(6, 26, 61, 0.055);
}

summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 21px;
  right: 24px;
  content: "+";
  color: var(--blue-700);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.whatsapp-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.whatsapp-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.whatsapp-box h2 {
  color: var(--white);
}

.whatsapp-box p {
  max-width: 720px;
  color: #e2efff;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: 108px;
}

.course-list {
  grid-template-columns: 1fr;
}

.course-list div,
.benefit-grid .info-card {
  padding: 25px;
}

.course-list span {
  display: block;
  color: var(--blue-950);
  font-size: 1.08rem;
  font-weight: 900;
}

.course-list p {
  margin: 8px 0 0;
}

.lesson-stack {
  display: grid;
  gap: 28px;
}

.lesson-section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.lesson-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.lesson-section h3 {
  margin-top: 28px;
}

.lesson-section p {
  color: var(--muted);
}

.lesson-section ul,
.lesson-section ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--ink);
}

.lesson-section li {
  padding-left: 4px;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card,
.package-card {
  padding: 34px;
}

.price {
  margin: 6px 0 14px;
  color: var(--blue-950);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 900;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--blue-600);
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 6px;
  content: "";
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 70px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(18, 102, 227, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 800;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--success);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.24);
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  background: #0f766b;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.32);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.floating-whatsapp::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--white);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #0f766b;
}

.site-footer {
  padding: 34px 0;
  color: #d8e7ff;
  background: var(--blue-950);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    max-height: calc(100vh - 92px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .language-switcher {
    justify-content: center;
    margin-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .page-layout,
  .contact-grid,
  .whatsapp-box {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .testimonial-grid,
  .benefit-grid,
  .package-grid,
  .why-grid,
  .stats-grid,
  .trust-badge-grid,
  .story-grid,
  .case-grid,
  .video-grid,
  .dashboard-grid,
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resource-toolbar {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand span:last-child {
    max-width: 188px;
    line-height: 1.08;
  }

  .hero,
  .page-hero {
    padding-top: 134px;
    padding-bottom: 76px;
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.08rem;
  }

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

  .button,
  .button-large {
    min-height: 62px;
    padding: 0 20px;
  }

  .hero-panel-body,
  .service-card,
  .testimonial,
  .pricing-card,
  .package-card,
  .contact-form,
  .info-card,
  .course-list div,
  .why-item {
    padding: 24px;
  }

  .service-grid,
  .testimonial-grid,
  .benefit-grid,
  .package-grid,
  .why-grid,
  .stats-grid,
  .trust-badge-grid,
  .story-grid,
  .case-grid,
  .video-grid,
  .dashboard-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 3.1rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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