/*
Theme Name: Khokan Portfolio
Theme URI: https://khokan.me
Author: Md Khokanuzzaman
Author URI: https://khokan.me
Description: Portfolio theme for Md Khokanuzzaman (khokan.me) showcasing mobile app projects, skills, and contact.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-theme-khokan
Domain Path: /languages
Tags: portfolio, custom-colors, custom-logo, custom-menu, featured-images, translation-ready, one-column
*/

:root {
  --bg: #040b24;
  --card: #0b1744;
  --card-dark: #081030;
  --accent: #7cd25e;
  --text: #e8edff;
  --muted: #c5cce5;
  --border: rgba(255, 255, 255, 0.06);
  color: #e8edff;
  background-color: #040920;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #040920;
  color: #e8edff;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(49, 111, 215, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 75% 10%,
      rgba(97, 85, 255, 0.12),
      transparent 26%
    ),
    linear-gradient(135deg, #050d2c 0%, #0b1240 40%, #050a24 100%);
  color: var(--text);
  overflow-x: hidden;
  overflow-x: clip;
}

.course-page {
  --course-nav-height: 64px;
  padding-top: 0;
}

.course-page.is-nav-fixed {
  padding-top: calc(var(--course-nav-height) + var(--wp-admin--admin-bar--height, 0px));
}

.page-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(108, 207, 255, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(140, 81, 255, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(124, 210, 94, 0.08),
      transparent 28%
    );
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
  transform: translateZ(0);
}

.site-header {
  position: relative;
  z-index: 60;
}

.section {
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

.section:last-of-type {
  padding-bottom: 36px;
}

.course-page .section {
  padding: 64px 0;
}

.course-page .section[id] {
  scroll-margin-top: calc(var(--course-nav-height) + 40px);
}

.course-page .course-nav {
  position: relative;
  min-height: var(--course-nav-height);
  z-index: 50;
  background: linear-gradient(180deg, rgba(10, 16, 34, 0.98), rgba(7, 12, 28, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(5, 10, 20, 0.28);
}

.course-page.is-nav-fixed .course-nav {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  right: 0;
}

.course-page .course-nav .container {
  display: flex;
  align-items: center;
  min-height: var(--course-nav-height);
}

.course-page .course-nav__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  width: 100%;
}

.course-page .course-nav__list li {
  flex: 0 0 auto;
}

.course-page .course-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 20, 45, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.course-page .course-nav__link:hover,
.course-page .course-nav__link:focus {
  border-color: rgba(124, 210, 94, 0.6);
  background: rgba(124, 210, 94, 0.18);
  color: #f3ffe9;
  transform: translateY(-1px);
}

.course-page .course-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(124, 210, 94, 0.35);
  background: rgba(9, 16, 40, 0.9);
  color: #f3ffe9;
  font-size: 18px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 60;
  box-shadow: 0 12px 24px rgba(5, 10, 20, 0.35);
}

.course-page .course-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.course-page .course-back-to-top:hover,
.course-page .course-back-to-top:focus {
  border-color: rgba(124, 210, 94, 0.7);
}

@media (max-width: 640px) {
  .course-page .course-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .course-page .course-back-to-top {
    transition: none;
  }
}

@media (max-width: 720px) {
  .course-page {
    --course-nav-height: 56px;
  }

  .course-page .section[id] {
    scroll-margin-top: calc(var(--course-nav-height) + 32px);
  }

  .course-page .course-nav__list {
    gap: 10px;
    justify-content: flex-start;
  }

  .course-page .course-nav__link {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.course-page .container {
  max-width: 1180px;
}

.course-page .section-heading {
  margin-bottom: 20px;
}

.course-page .section-heading h2 {
  margin: 0;
  font-weight: 700;
}

.course-page .section-subtitle {
  font-size: 15px;
}

.course-page .course-card + .course-grid,
.course-page .course-card + .course-grid--two {
  margin-top: 18px;
}

.course-page .course-interview .course-cta__actions,
.course-page .course-mentors .course-cta__actions {
  margin-top: 16px;
}

.course-page .course-cta__actions .section-subtitle {
  flex-basis: 100%;
  margin-top: 4px;
}

.course-page .section.course-hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(124, 210, 94, 0.18),
      rgba(4, 9, 20, 0) 48%
    ),
    radial-gradient(
      circle at 12% 8%,
      rgba(63, 138, 255, 0.12),
      rgba(4, 9, 20, 0) 50%
    ),
    linear-gradient(180deg, #0b1224 0%, #0a1123 46%, #0a0f1f 100%);
}

.course-page .section.course-hero::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto;
  height: 75%;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(124, 210, 94, 0.22),
      transparent 58%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(63, 138, 255, 0.16),
      transparent 60%
    );
  filter: blur(50px);
  opacity: 0.85;
  pointer-events: none;
}

.course-page .section.course-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 72%;
  background: radial-gradient(
    circle at 60% 50%,
    rgba(10, 18, 40, 0.6),
    transparent 62%
  );
  filter: blur(40px);
  opacity: 0.9;
  pointer-events: none;
}

.course-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.course-hero__content {
  display: grid;
  gap: 16px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.course-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.course-hero__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 20px rgba(8, 12, 24, 0.35);
}

.course-hero__org {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #b6c7f0;
}

.course-hero__title {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.course-hero__title-accent {
  color: #9cf95a;
  text-shadow: 0 0 18px rgba(156, 249, 90, 0.45);
}

.course-hero__title strong {
  color: #9cf95a;
  text-shadow: 0 0 18px rgba(156, 249, 90, 0.38);
}

.course-hero__subtitle {
  margin: 0;
  color: #b6c7f0;
  line-height: 1.7;
  font-size: 18px;
  max-width: 560px;
}

.course-hero__sticker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.course-hero__sticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  color: #eaffdb;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 210, 94, 0.18);
  border: 1px solid rgba(124, 210, 94, 0.45);
  box-shadow: 0 10px 24px rgba(124, 210, 94, 0.18);
}

.course-hero__sticker-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b0ff84;
  box-shadow: 0 0 12px rgba(176, 255, 132, 0.8);
}

.course-hero__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: #f4fbff;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.course-hero__seats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: #e9ffe2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(124, 210, 94, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.course-hero__sticker.is-ended .course-hero__countdown {
  background: rgba(255, 83, 83, 0.2);
  border-color: rgba(255, 83, 83, 0.45);
  color: #ffe6e6;
}

.course-hero__note {
  margin: 0;
  color: #c1d0f2;
  line-height: 1.6;
  font-size: 15px;
  max-width: 560px;
}

.course-hero__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-hero__highlights li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #ecf4ff;
  background: linear-gradient(120deg, rgba(62, 141, 255, 0.22), rgba(124, 210, 94, 0.22));
  border: 1px solid rgba(156, 199, 255, 0.25);
  box-shadow: 0 8px 18px rgba(15, 30, 60, 0.3);
}

.course-hero__microcopy {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  row-gap: 4px;
  font-size: 13px;
  color: #9fb1d8;
  letter-spacing: 0.01em;
  max-width: 100%;
}

.course-hero__microcopy::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, #b0ff84, #7cd25e);
  box-shadow: 0 0 12px rgba(124, 210, 94, 0.5);
}

.course-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.course-hero__actions .primary-btn {
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  box-shadow: 0 16px 32px rgba(124, 210, 94, 0.38);
}

.course-hero__card {
  background: linear-gradient(160deg, rgba(14, 22, 52, 0.96), rgba(8, 14, 34, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  max-width: 440px;
  width: 100%;
  justify-self: end;
  align-self: start;
  position: relative;
  z-index: 1;
}

.course-hero__card-title {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #e4ecff;
}

.course-hero__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.course-hero__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: #9fb0d3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.course-hero__list li:last-child {
  border-bottom: 0;
}

.course-hero__list li span {
  color: #9fb0d3;
}

.course-hero__list strong {
  color: #f4f7ff;
}

@media (max-width: 960px) {
  .course-hero__grid {
    gap: 24px;
  }

  .course-hero__card {
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .page-glow {
    inset: 0;
  }

  .course-page .section.course-hero {
    padding: 72px 0 56px;
  }

  .course-page .section:not(.course-hero) {
    padding: 48px 0;
  }

  .course-page .section-heading {
    margin-bottom: 14px;
  }

  .course-page .section-subtitle {
    font-size: 14px;
  }

  .course-hero__title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .course-hero__actions a {
    width: 100%;
    justify-content: center;
  }

  .course-hero__card {
    padding: 18px;
  }

  .course-hero__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .course-grid,
  .course-grid--two,
  .course-portfolio .course-grid,
  .course-mentors .course-grid {
    grid-template-columns: 1fr;
  }

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

  .course-cta {
    padding: 16px;
  }

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

  .course-mentor__value {
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .course-page .section:not(.course-hero) {
    padding: 56px 0;
  }

  .course-page .section-heading {
    margin-bottom: 16px;
  }
}

.course-process {
  background: linear-gradient(180deg, rgba(10, 18, 40, 0.95), rgba(7, 12, 30, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.course-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  counter-reset: step;
}

.course-step {
  position: relative;
  flex: 1 1 180px;
  padding: 18px 18px 18px 56px;
  border-radius: 16px;
  background: rgba(12, 20, 44, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.course-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0a1a35;
  background: linear-gradient(135deg, #b0ff84, #7de65a);
  box-shadow: 0 10px 24px rgba(124, 210, 94, 0.35);
}

.course-step::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 210, 94, 0.6), rgba(124, 210, 94, 0));
}

.course-step:last-child::after {
  display: none;
}

.course-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #f1f5ff;
}

.course-step .section-subtitle {
  margin: 0;
  font-size: 13px;
  color: #a9b7d6;
}

.course-discount__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.course-discount__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.course-discount__list li {
  position: relative;
  padding-left: 28px;
  color: #c7d4f0;
  font-size: 15px;
}

.course-discount__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(124, 210, 94, 0.25);
  border: 1px solid rgba(124, 210, 94, 0.6);
  box-shadow: 0 0 12px rgba(124, 210, 94, 0.4);
}

.course-discount__card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.95), rgba(7, 14, 32, 0.95));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.course-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.course-trust__card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(10, 18, 40, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.course-trust__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(124, 210, 94, 0.16);
  color: #b0ff84;
  box-shadow: inset 0 0 12px rgba(124, 210, 94, 0.3);
}

.course-trust__icon svg {
  width: 20px;
  height: 20px;
}

.course-trust__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #f1f5ff;
}

.course-trust__card .section-subtitle {
  margin: 0;
  font-size: 13px;
  color: #a9b7d6;
}

.course-batch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.course-batch__card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.95), rgba(7, 14, 34, 0.96));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 22px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.45);
  max-width: 520px;
  margin: 0 auto;
}

.course-batch__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.course-batch__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #c4d2f0;
  font-size: 15px;
}

.course-batch__list li:last-child {
  border-bottom: 0;
}

.course-batch__note {
  margin: 16px 0 0;
  font-weight: 700;
  color: #ffd79a;
  letter-spacing: 0.02em;
}

.course-payment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.course-payment__card {
  background: rgba(10, 18, 40, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.course-payment__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.course-payment__list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-weight: 600;
  color: #e3ebff;
}

.course-whatsapp-support {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4ee181 0%, #21b35c 100%);
  color: #0c2e1c;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  z-index: 120;
  max-width: 260px;
}

.course-whatsapp-support__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.course-whatsapp-support__icon svg {
  width: 22px;
  height: 22px;
}

.course-whatsapp-support__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  font-size: 12px;
}

.course-whatsapp-support__text strong {
  font-size: 13px;
  font-weight: 700;
}

.course-cta-block {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(124, 210, 94, 0.12), rgba(12, 24, 66, 0.85));
  border: 1px solid rgba(124, 210, 94, 0.28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.course-cta-block h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.course-cta-block .section-subtitle {
  margin: 0;
  font-size: 13px;
  color: #b8c6e3;
}

.course-problem__grid,
.course-who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.course-problem__list,
.course-who__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.course-problem__list li,
.course-who__list li {
  position: relative;
  padding-left: 26px;
  color: #c7d4f0;
}

.course-problem__list li::before,
.course-who__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(124, 210, 94, 0.2);
  border: 1px solid rgba(124, 210, 94, 0.6);
  box-shadow: 0 0 10px rgba(124, 210, 94, 0.35);
}

.course-who__list.is-muted li::before {
  background: rgba(255, 118, 118, 0.2);
  border-color: rgba(255, 118, 118, 0.6);
  box-shadow: 0 0 10px rgba(255, 118, 118, 0.35);
}

.course-problem__card {
  background: rgba(10, 18, 40, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.course-problem__card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.course-transformation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.course-transformation__card {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: rgba(12, 20, 46, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.course-transformation__card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.course-build__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.course-build__card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(10, 18, 40, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.course-build__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(124, 210, 94, 0.16);
  color: #b0ff84;
}

.course-build__icon svg {
  width: 20px;
  height: 20px;
}

.course-build__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.course-roadmap__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.course-roadmap__timeline li {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(12, 20, 46, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.course-social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.course-social__card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 18, 40, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  color: #d2def6;
  font-weight: 600;
}

.course-social__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(124, 210, 94, 0.16);
  color: #b0ff84;
}

.course-social__icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .course-step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .course-cta__actions a,
  .course-cta__actions button {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .course-cta-block {
    text-align: center;
    justify-content: center;
  }

  .course-whatsapp-support {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    text-align: center;
  }

  .course-whatsapp-support__text span {
    display: none;
  }
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.course-why .section-heading h2 {
  font-size: clamp(28px, 3.8vw, 36px);
}

.course-why .section-heading .section-subtitle {
  font-size: 18px;
  color: #c4d2f0;
}

.course-why .section-heading + .section-subtitle {
  margin-top: 6px;
  max-width: 720px;
  font-size: 15px;
  color: #a9b7d6;
}

.course-why__cards {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.course-why__card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 18px 18px 20px;
  display: grid;
  gap: 8px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  min-height: 116px;
}

.course-why__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #eef3ff;
  letter-spacing: 0.01em;
}

.course-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.course-why__icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.course-why__text {
  color: #aab8d8;
  line-height: 1.6;
  font-size: 14px;
}

.course-why__card.is-problem .course-why__icon {
  color: #ff7a7a;
  background: rgba(255, 122, 122, 0.12);
  border-color: rgba(255, 122, 122, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.08);
}

.course-why__card.is-solution .course-why__icon {
  color: #9cf95a;
  background: rgba(156, 249, 90, 0.14);
  border-color: rgba(156, 249, 90, 0.35);
  box-shadow: 0 0 0 4px rgba(156, 249, 90, 0.08);
}

.course-why__card.is-goal .course-why__icon {
  color: #7cc8ff;
  background: rgba(124, 200, 255, 0.14);
  border-color: rgba(124, 200, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(124, 200, 255, 0.08);
}

.course-why .course-cta {
  margin-top: 20px;
  background: linear-gradient(160deg, rgba(10, 18, 44, 0.92), rgba(7, 12, 30, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  padding: 18px 20px;
}

.course-why .course-cta .section-subtitle {
  color: #a9b7d8;
  font-size: 14px;
}

.course-why .course-cta .primary-btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
}

.course-eligibility__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.course-eligibility__col .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-eligibility__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.course-eligibility__list li {
  position: relative;
  padding-left: 26px;
  color: #c9d3ee;
  line-height: 1.6;
  font-size: 15px;
}

.course-eligibility__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.course-eligibility__col.is-yes .course-eligibility__list li::before {
  content: "✓";
  color: #0a1a10;
  background: #9cf95a;
  box-shadow: 0 0 0 4px rgba(156, 249, 90, 0.18);
}

.course-eligibility__col.is-no .course-eligibility__list li::before {
  content: "✕";
  color: #ffd7d7;
  background: rgba(255, 92, 92, 0.2);
  border: 1px solid rgba(255, 92, 92, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 92, 92, 0.12);
}

.course-structure .section-heading h2 {
  font-size: clamp(26px, 3.6vw, 34px);
}

.course-structure .section-subtitle {
  color: #9fb1d8;
  font-size: 15px;
}

.course-structure .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.92), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.course-structure .course-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.course-structure .course-card .section-subtitle {
  color: #9cf95a;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}

.course-structure .list {
  padding-left: 0;
  gap: 8px;
}

.course-structure .list li {
  padding-left: 16px;
}

.course-structure .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.course-tracks .section-heading h2 {
  font-size: clamp(26px, 3.6vw, 34px);
}

.course-tracks .section-subtitle {
  color: #9fb1d8;
  font-size: 15px;
}

.course-tracks .course-grid--two {
  gap: 20px;
}

.course-tracks .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  min-height: 240px;
}

.course-tracks .course-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.course-tracks .course-card .list {
  padding-left: 0;
  gap: 8px;
  font-size: 14px;
}

.course-tracks .course-card .list li {
  padding-left: 16px;
}

.course-tracks .course-card .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.course-tracks .course-cta__actions {
  margin-top: 16px;
  justify-content: flex-start;
}

.course-tracks .secondary-btn {
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.course-learning .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-learning .section-subtitle {
  color: #97a8cb;
  font-size: 14px;
}

.course-learning .course-grid {
  gap: 16px;
}

.course-learning .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.92), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.course-learning .course-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.course-learning .list {
  padding-left: 0;
  gap: 8px;
  font-size: 13px;
}

.course-learning .list li {
  padding-left: 16px;
}

.course-learning .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.course-curriculum .section-heading h2 {
  font-size: clamp(26px, 3.6vw, 34px);
}

.course-curriculum .section-subtitle {
  color: #9fb1d8;
  font-size: 15px;
}

.curriculum-grid {
  gap: 20px;
}

.curriculum-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 16px;
}

.curriculum-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.curriculum-card__header h3 {
  margin: 0;
  font-size: 18px;
}

.curriculum-badge {
  display: inline-flex;
  margin-top: 6px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #cdd8f5;
}

.curriculum-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.curriculum-icon svg {
  width: 32px;
  height: 32px;
}

.curriculum-icon.is-react {
  color: #61dafb;
  background: rgba(97, 218, 251, 0.12);
  border-color: rgba(97, 218, 251, 0.35);
}

.curriculum-icon.is-flutter {
  color: #60c5f7;
  background: rgba(96, 197, 247, 0.12);
  border-color: rgba(96, 197, 247, 0.35);
}

.curriculum-intro {
  margin: 0;
  color: #9fb1d8;
  font-size: 14px;
}

.curriculum-accordions {
  display: grid;
  gap: 10px;
}

.curriculum-accordion {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(10, 18, 40, 0.6);
  overflow: hidden;
}

.curriculum-accordion summary {
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e6ecff;
}

.curriculum-accordion summary::-webkit-details-marker {
  display: none;
}

.curriculum-accordion summary::after {
  content: "+";
  font-weight: 700;
  color: #9cf95a;
}

.curriculum-accordion[open] summary::after {
  content: "-";
}

.curriculum-accordion .list {
  padding: 0 16px 14px;
  font-size: 13px;
}

.curriculum-accordion .list li {
  padding-left: 16px;
}

.curriculum-accordion .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.curriculum-meta {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.curriculum-meta h4 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b7c7ea;
}

.curriculum-meta .list {
  padding-left: 0;
  gap: 8px;
  font-size: 13px;
}

.curriculum-meta .list li {
  padding-left: 16px;
}

.curriculum-meta .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.curriculum-card .course-cta__actions {
  margin-top: 4px;
  justify-content: flex-start;
}

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

.quiz-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.95), rgba(8, 14, 34, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.4);
}

.quiz-discount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(156, 249, 90, 0.16);
  border: 1px solid rgba(156, 249, 90, 0.4);
  color: #eaffdb;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}

.quiz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #9fb1d8;
  font-size: 13px;
  margin-bottom: 14px;
}

.quiz-meta__item {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.quiz-language {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #c6d3f2;
  font-size: 14px;
}

.quiz-language select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e8edff;
  padding: 6px 10px;
  border-radius: 10px;
}

.quiz-form {
  display: grid;
  gap: 18px;
}

.quiz-user {
  background: rgba(8, 16, 40, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.quiz-user__title {
  color: #eaffdb;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.quiz-user__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.quiz-user__field {
  display: grid;
  gap: 6px;
  color: #c6d3f2;
  font-size: 12px;
}

.quiz-user__note {
  margin: 0;
  color: #9fb1d8;
  font-size: 12px;
}

.quiz-question {
  background: rgba(8, 16, 40, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.quiz-question__title {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.quiz-question__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(156, 249, 90, 0.16);
  border: 1px solid rgba(156, 249, 90, 0.4);
  color: #eaffdb;
  font-weight: 700;
  font-size: 13px;
}

.quiz-question__text {
  color: #e4ecff;
  line-height: 1.6;
  font-size: 14px;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #c9d3ee;
  font-size: 13px;
}

.quiz-option input {
  accent-color: #9cf95a;
}

.quiz-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(6, 12, 30, 0.7);
  color: #e8edff;
  padding: 10px 12px;
  font-size: 13px;
  resize: vertical;
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quiz-result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(156, 249, 90, 0.12);
  border: 1px solid rgba(156, 249, 90, 0.35);
  color: #eaffdb;
  font-size: 14px;
}

.course-ai .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-ai .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-ai .course-grid--two {
  gap: 18px;
}

.course-ai .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.course-ai .course-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.course-ai .list {
  padding-left: 0;
  gap: 8px;
  font-size: 13px;
}

.course-ai .list li {
  padding-left: 16px;
}

.course-ai .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.course-ai .course-card:nth-of-type(2) ul.list:last-of-type li::before {
  background: #ff7a7a;
  box-shadow: 0 0 8px rgba(255, 122, 122, 0.45);
}

.course-projects .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-projects .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-projects .list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.course-projects .list li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border-radius: 12px;
  background: rgba(10, 18, 44, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #c8d4ef;
  font-size: 13px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
}

.course-projects .list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #9cf95a;
  box-shadow: 0 0 10px rgba(156, 249, 90, 0.55);
}

.course-portfolio .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-portfolio .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-portfolio .course-highlight {
  background: linear-gradient(135deg, rgba(124, 210, 94, 0.18), rgba(30, 65, 40, 0.25));
  border: 1px solid rgba(124, 210, 94, 0.35);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34);
}

.course-portfolio .course-highlight__text {
  font-size: 15px;
  font-weight: 600;
}

.course-portfolio .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.course-portfolio .course-grid {
  gap: 16px;
}

.course-portfolio .list {
  padding-left: 0;
  gap: 8px;
  font-size: 13px;
}

.course-portfolio .list li {
  padding-left: 16px;
}

.course-portfolio .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.course-portfolio .course-cta {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.course-interview .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-interview .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-interview .list {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.92), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  gap: 8px;
  font-size: 13px;
}

.course-interview .list li {
  padding-left: 16px;
}

.course-interview .list li::before {
  width: 6px;
  height: 6px;
  top: 9px;
  background: #9cf95a;
  box-shadow: 0 0 8px rgba(156, 249, 90, 0.55);
}

.course-mentors .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-mentors .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-mentors .course-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 520px));
  justify-content: start;
  gap: 20px;
}

.course-mentors .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  padding: 20px;
}

.course-mentor__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.course-mentor__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #9cf95a;
  background: rgba(124, 210, 94, 0.14);
  border: 1px solid rgba(156, 249, 90, 0.45);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.course-mentor__name {
  margin: 0;
  font-size: 16px;
}

.course-mentor__role {
  margin: 2px 0 0;
  color: #9fb1d8;
  font-size: 13px;
}

.course-mentor__list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.course-mentor__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  color: #c1cce7;
}

.course-mentor__label {
  color: #e8edff;
  font-weight: 600;
}

.course-mentor__label::after {
  content: ":";
  margin-left: 2px;
}

.course-mentor__value {
  color: #a9b7d8;
}

.course-mentor__message {
  margin: 8px 0 12px;
  color: #95a8cc;
  font-size: 13px;
  line-height: 1.6;
}

.course-mentor__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-mentor__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9cf95a;
  font-size: 13px;
  font-weight: 600;
}

.course-mentor__link-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 249, 90, 0.14);
  border: 1px solid rgba(156, 249, 90, 0.4);
}

.course-mentor__link-icon svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 520px) {
  .course-mentor__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.course-timeline .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-timeline .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-timeline .list {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.course-timeline .list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(10, 18, 44, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #c4d0ee;
  font-size: 13px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
}

.course-timeline .list li::before {
  display: none;
}

.course-details .list {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  gap: 0;
}

.course-details .list li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.course-details .list li:last-child {
  border-bottom: 0;
}

.course-details .list li::before {
  display: none;
}

.course-pricing .section-heading h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.course-pricing .section-subtitle {
  color: #9fb1d8;
  font-size: 14px;
}

.course-pricing .course-price {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
}

.course-pricing .course-price__item {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  flex-direction: column;
  align-items: flex-start;
}

.course-pricing .course-price__item strong {
  font-size: 20px;
}

.course-pricing .course-price__item:nth-child(2) {
  border-color: rgba(156, 249, 90, 0.5);
  box-shadow: 0 18px 36px rgba(124, 210, 94, 0.28);
}

.course-pricing .course-price__item:nth-child(2)::before {
  content: "EARLY BIRD";
  position: absolute;
  top: -10px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #9cf95a;
  color: #08151f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 18px rgba(124, 210, 94, 0.35);
}

.course-pricing .course-price p {
  grid-column: 1 / -1;
  margin: 0;
  color: #9fb1d8;
  font-size: 13px;
}

.course-pricing .course-price .course-cta__actions {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.course-enroll .course-grid {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.course-enroll .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.course-enroll .list {
  padding-left: 0;
  gap: 10px;
  font-size: 13px;
}

.course-enroll .jrc-application-form,
.course-application .jrc-application-form {
  display: grid;
  gap: 12px;
  margin: 16px 0 12px;
}

.course-application {
  font-family: "Poppins", "Roboto", "Lato", system-ui, -apple-system, sans-serif;
}

.jrc-form-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

.jrc-application-form {
  display: grid;
  gap: 18px;
}

.jrc-progress {
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
}

.jrc-progress__bar {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  width: 0%;
  transition: width 0.2s ease;
}

.jrc-progress__label {
  font-size: 12px;
  color: #b8c6e6;
}

.jrc-form-group {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(9, 14, 32, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.jrc-form-group__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #e6f0ff;
}

.jrc-form-group__fields {
  display: grid;
  gap: 14px;
}

.course-enroll .jrc-form-field label,
.course-enroll .jrc-form-field legend,
.jrc-application-form .jrc-form-field label,
.jrc-application-form .jrc-form-field legend {
  display: block;
  font-size: 13px;
  color: #d5e1ff;
  margin-bottom: 6px;
}

.course-enroll .jrc-form-field input,
.course-enroll .jrc-form-field textarea,
.course-enroll .jrc-form-field select,
.jrc-application-form .jrc-form-field input,
.jrc-application-form .jrc-form-field textarea,
.jrc-application-form .jrc-form-field select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(8, 14, 34, 0.85);
  color: #e3ebff;
  padding: 10px 12px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(10, 16, 32, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.course-enroll .jrc-form-field textarea,
.jrc-application-form .jrc-form-field textarea {
  resize: vertical;
}

.course-enroll .jrc-form-field input:focus,
.course-enroll .jrc-form-field textarea:focus,
.course-enroll .jrc-form-field select:focus,
.jrc-application-form .jrc-form-field input:focus,
.jrc-application-form .jrc-form-field textarea:focus,
.jrc-application-form .jrc-form-field select:focus {
  outline: 2px solid rgba(79, 124, 255, 0.35);
  border-color: rgba(79, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.12);
}

.course-enroll .jrc-form-field fieldset,
.jrc-application-form .jrc-form-field fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.course-enroll .jrc-form-options,
.jrc-application-form .jrc-form-options {
  display: grid;
  gap: 8px;
}

.course-enroll .jrc-form-options label,
.course-enroll .jrc-form-checkbox,
.jrc-application-form .jrc-form-options label,
.jrc-application-form .jrc-form-checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #d1dcf7;
}

.course-enroll .jrc-form-options input[type="checkbox"],
.course-enroll .jrc-form-options input[type="radio"],
.course-enroll .jrc-form-checkbox input[type="checkbox"],
.jrc-application-form .jrc-form-options input[type="checkbox"],
.jrc-application-form .jrc-form-options input[type="radio"],
.jrc-application-form .jrc-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.course-enroll .jrc-word-count,
.jrc-application-form .jrc-word-count {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #8fa2c5;
}

.jrc-course-notes {
  margin-top: 6px;
}

.jrc-course-note {
  display: none;
  margin: 6px 0 0;
  font-size: 12px;
  color: #9fb1d8;
}

.jrc-course-note.is-active {
  display: block;
}

.jrc-course-selected {
  margin: 0 0 8px;
  font-size: 13px;
  color: #dbe7ff;
}

.jrc-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #fca5a5;
}

.jrc-error.is-visible {
  display: block;
}

.jrc-form-field.has-error input,
.jrc-form-field.has-error textarea,
.jrc-form-field.has-error select {
  border-color: rgba(248, 113, 113, 0.7);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.jrc-application-form .primary-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border: none;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jrc-application-form .primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(16, 185, 129, 0.45);
}

.jrc-help-fab {
  position: sticky;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #d9e8ff;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .jrc-form-group {
    padding: 12px;
  }
  .jrc-form-group__fields {
    gap: 12px;
  }
  .jrc-help-fab {
    position: static;
    width: 100%;
    justify-content: center;
  }
}

.jrc-success-message {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #d8ffe9;
}

.jrc-student-dashboard {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(10, 18, 44, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #dce6ff;
}

.jrc-student-dashboard .jrc-payment-form {
  display: grid;
  gap: 10px;
}

.jrc-student-dashboard input[type="text"],
.jrc-student-dashboard input[type="file"] {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(8, 14, 34, 0.85);
  color: #e3ebff;
  padding: 10px 12px;
  font-size: 13px;
}

.course-enroll .list li {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.course-enroll .list li::before {
  display: none;
}

.course-enroll .section-subtitle {
  font-size: 12px;
  color: #8fa2c5;
}

.course-enroll .course-cta__actions {
  width: 100%;
  justify-content: center;
}

.course-enroll .course-cta__actions a {
  width: 100%;
  text-align: center;
}

.course-faqs .course-faq {
  max-width: 760px;
  margin: 0 auto;
}

.course-faqs .course-faq__item {
  border-radius: 14px;
  background: rgba(10, 18, 44, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 14px 16px;
  position: relative;
}

.course-faqs .course-faq__item h3 {
  position: relative;
  margin: 0;
  font-size: 15px;
  padding-right: 24px;
}

.course-faqs .course-faq__item h3::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 14px;
  color: #9cf95a;
  font-weight: 700;
}

.course-faqs .course-faq__item p {
  margin-top: 10px;
  font-size: 13px;
}

.course-final__inner {
  text-align: center;
  justify-content: center;
}

.course-final__inner .course-cta__actions {
  justify-content: center;
}

.course-enroll .section-heading {
  text-align: center;
}

.course-faqs .section-heading {
  text-align: center;
}

.course-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.course-paths .course-card,
.course-path-detail .course-card {
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.94), rgba(8, 14, 34, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.jrc-course-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jrc-course-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.45);
}

.jrc-course-card.is-selected {
  border-color: rgba(99, 102, 241, 0.8);
  box-shadow: 0 18px 36px rgba(24, 44, 120, 0.45);
}

.course-seat {
  margin-top: 12px;
  font-size: 12px;
  color: #9fb1d8;
}

.course-selection .jrc-course-picker {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.course-selection .jrc-course-picker label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #d7e2ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
}

.course-selection .jrc-course-picker button {
  width: 100%;
  justify-content: center;
}

.jrc-course-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.jrc-course-options label.is-selected {
  border-color: rgba(34, 197, 94, 0.65);
  background: rgba(34, 197, 94, 0.12);
  color: #eafff4;
}

.jrc-course-options input[type="radio"] {
  accent-color: #6a7cff;
}

.course-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.course-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.course-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.course-cta {
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.course-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-table {
  display: grid;
  gap: 12px;
  background: linear-gradient(160deg, rgba(9, 16, 36, 0.95), rgba(6, 11, 26, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.course-table__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: rgba(10, 18, 44, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
}

.course-table p {
  margin: 0;
  padding: 10px 12px;
  background: rgba(8, 16, 48, 0.45);
  border-radius: 12px;
  color: var(--muted);
}

.course-table__row strong {
  color: var(--text);
}

@media (max-width: 520px) {
  .course-table__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.course-price {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.course-price__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.course-mentor {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.course-faq__item {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.course-faq__item h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.course-faq__item p {
  margin: 0;
  color: var(--muted);
}

.course-highlight {
  margin: 18px 0 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(124, 210, 94, 0.2),
    rgba(63, 138, 255, 0.12)
  );
  border: 1px solid rgba(124, 210, 94, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.course-highlight__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 210, 94, 0.2);
  border: 1px solid rgba(124, 210, 94, 0.5);
  color: #e8ffe2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.course-highlight__text {
  margin: 10px 0 0;
  color: #f6ffe9;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.course-highlight__free {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #b0ff84;
  color: #0a1a35;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(124, 210, 94, 0.35);
}

.course-final {
  padding-top: 36px;
}

.course-final__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(124, 210, 94, 0.08), rgba(12, 24, 66, 0.9));
  border: 1px solid rgba(124, 210, 94, 0.35);
  border-radius: 18px;
  padding: 22px;
}

.container {
  width: min(90%, 1180px);
  margin: 0 auto;
}

.hero {
  padding: 60px 0 24px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.hero-top__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.hero-nav {
  margin-left: 0;
}

.hero-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 0;
  list-style: none;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 66, 0.78),
    rgba(19, 38, 86, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero-header-cta {
  min-height: 44px;
  white-space: nowrap;
}

.hero-menu li {
  list-style: none;
}

.hero-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 12px;
  color: #dfe7ff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.hero-menu li {
  position: relative;
}

.hero-menu .menu-item-has-children > a::after {
  content: "▾";
  font-size: 12px;
  opacity: 0.7;
}

.hero-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 20;
}

.hero-menu .sub-menu li {
  width: 100%;
}

.hero-menu .sub-menu a {
  width: 100%;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.hero-menu .menu-item-has-children:hover > .sub-menu,
.hero-menu .menu-item-has-children:focus-within > .sub-menu {
  display: grid;
  gap: 6px;
}

.hero-menu a:hover,
.hero-menu li.current-menu-item > a,
.hero-menu li.current_page_item > a {
  background: rgba(124, 210, 94, 0.15);
  color: #ffffff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(124, 210, 94, 0.35);
  transform: translateY(-1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(45, 77, 160, 0.75),
    rgba(20, 36, 90, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(93, 160, 255, 0.18);
  text-decoration: none;
  color: var(--text);
}

.brand-emblem {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: radial-gradient(
    circle at 30% 30%,
    #88e28b,
    #4ca5ff 60%,
    #1a2755 100%
  );
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.2),
    0 12px 22px rgba(0, 0, 0, 0.35);
}

.brand-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle,
    rgba(124, 210, 94, 0.35),
    rgba(76, 165, 255, 0.25),
    transparent 65%
  );
  filter: blur(10px);
  opacity: 0.8;
}

.brand-letter {
  position: relative;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #f4fbff;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    0 0 12px rgba(255, 255, 255, 0.3);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.brand-meta {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 13px;
  color: #a4bcee;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 32px;
  justify-items: start;
}

.hero-copy {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.headline {
  text-align: left;
}

.hero-align-center .hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-align-center .headline {
  text-align: center;
}

.hero-align-center .cta-row {
  justify-content: center;
}

.hero-align-center .orbit-wrap,
.hero-align-center .orbit-stage {
  justify-self: center;
  margin: 0 auto;
}

.tagline {
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tagline-title,
.tagline-focus {
  display: block;
}

.tagline-focus {
  color: #bfe8ff;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.subline {
  margin: 0;
  max-width: 640px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row .primary-btn,
.cta-row .secondary-btn,
.cta-row .ghost-btn {
  min-height: 48px;
  padding: 12px 16px;
  font-size: 15px;
}

.hero-proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof-list li {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 23, 68, 0.78);
  color: #dbe6ff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stat {
  min-height: 112px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(11, 23, 68, 0.92),
    rgba(8, 16, 48, 0.88)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 8px;
  align-content: start;
}

.hero-stat strong {
  font-size: 20px;
  line-height: 1.1;
  color: #f4fbff;
}

.hero-stat span {
  color: #aebee5;
  font-size: 13px;
  line-height: 1.5;
}

.hero-hint {
  margin: 6px 0 0;
  color: #a5c6ff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
  background: linear-gradient(
    120deg,
    rgba(59, 115, 255, 0.16),
    rgba(124, 210, 94, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.orbit-wrap {
  display: grid;
  place-items: center;
  justify-self: center;
}

/* 🌌 ORBIT STAGE (responsive) */
.orbit-stage {
  position: relative;
  width: clamp(260px, 70vw, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(100, 170, 255, 0.18),
      rgba(7, 17, 48, 0.96) 60%
    ),
    radial-gradient(
      circle at 72% 65%,
      rgba(124, 210, 94, 0.16),
      rgba(6, 11, 32, 0.95) 62%
    ),
    linear-gradient(140deg, rgba(7, 13, 40, 0.9), rgba(9, 20, 60, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden; /* keep circular mask */
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 8px 24px rgba(0, 0, 0, 0.4);
  animation:
    floaty var(--float-duration, 8s) ease-in-out infinite,
    shadow-drift var(--shadow-duration, 8s) ease-in-out infinite;
}

.starfield {
  position: absolute;
  inset: -14%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 20% 80%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 80% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 60% 60%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 30% 40%, rgba(255, 255, 255, 0.7), transparent);
  background-size: 180px 180px;
  opacity: 0.6;
  mix-blend-mode: screen;
  animation: star-drift 22s linear infinite;
  pointer-events: none;
}

.starfield.layer-2 {
  background-size: 240px 240px;
  opacity: 0.35;
  filter: blur(1px);
  animation-duration: 32s;
}

.sun {
  position: absolute;
  inset: 50%;
  /* instead of fixed 210px */
  width: clamp(120px, 32vw, 210px);
  height: clamp(120px, 32vw, 210px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 40% 40%,
    rgba(255, 223, 164, 0.7),
    rgba(255, 156, 80, 0.35) 55%,
    rgba(255, 136, 56, 0.15)
  );
  box-shadow:
    0 0 26px rgba(255, 190, 120, 0.4),
    0 0 120px rgba(255, 177, 99, 0.45);
  animation: sun-breath 8s ease-in-out infinite;
}

.sun::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 146, 0.4),
    rgba(255, 166, 90, 0.2),
    transparent 70%
  );
  filter: blur(20px);
  opacity: 0.85;
  animation: sun-aura 9s ease-in-out infinite;
}

.sun::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 200, 150, 0.3);
  box-shadow:
    0 0 20px rgba(255, 193, 125, 0.5),
    0 0 38px rgba(255, 138, 92, 0.4);
  animation: spin var(--ring-duration, 16s) linear infinite;
  mix-blend-mode: screen;
}

.sun-core {
  position: relative;
  width: var(--sun-core-size, 100%);
  height: var(--sun-core-size, 100%);
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 232, 212, 0.3),
    rgba(255, 181, 119, 0.2)
  );
  box-shadow:
    0 0 0 12px rgba(255, 220, 180, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.45),
    inset 0 0 18px rgba(255, 232, 210, 0.3);
}

.sun-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--orbit-scale, 1));
}

.orbit-path {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 16px rgba(110, 188, 255, 0.12),
    inset 0 0 14px rgba(255, 255, 255, 0.05);
  mix-blend-mode: screen;
  animation: haze-spin 14s linear infinite;
}
.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  /* NEW: responsive planet size */
  width: clamp(28px, 7vw, var(--planet-size, 72px));
  height: clamp(28px, 7vw, var(--planet-size, 72px));
  border-radius: 50%;
  transform-origin: center center;
  animation: orbit-loop var(--orbit-duration, 12s) linear infinite;
  animation-delay: var(--orbit-delay, 0s);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.08) 60%
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(2px);
}

.planet::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: inherit;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.planet-icon {
  width: 82%;
  height: 82%;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}

.planet-icon img,
.planet-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.planet.flutter {
  background: radial-gradient(
    circle at 38% 32%,
    rgba(94, 185, 255, 0.85),
    rgba(18, 91, 220, 0.65) 65%,
    rgba(12, 58, 160, 0.6)
  );
  box-shadow:
    0 0 22px rgba(113, 199, 255, 0.55),
    0 0 42px rgba(48, 133, 255, 0.38),
    inset 0 0 12px rgba(255, 255, 255, 0.24);
}

.planet.flutter::before {
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
}

.planet.react {
  background: radial-gradient(
    circle at 35% 30%,
    rgba(123, 222, 255, 0.8),
    rgba(24, 108, 205, 0.62) 68%,
    rgba(10, 69, 150, 0.58)
  );
  box-shadow:
    0 0 22px rgba(91, 206, 255, 0.55),
    0 0 40px rgba(49, 123, 255, 0.32),
    inset 0 0 14px rgba(255, 255, 255, 0.22);
}

.planet.react::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.5;
}

.planet.android {
  background: radial-gradient(
    circle at 36% 34%,
    rgba(118, 216, 70, 0.82),
    rgba(55, 150, 34, 0.7) 64%,
    rgba(27, 82, 21, 0.62)
  );
  box-shadow:
    0 0 18px rgba(118, 216, 70, 0.5),
    0 0 36px rgba(77, 183, 44, 0.35),
    inset 0 0 14px rgba(255, 255, 255, 0.22);
}

.planet.android::before {
  background-image:
    linear-gradient(45deg, rgba(0, 0, 0, 0.26) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 9px 9px;
  opacity: 0.4;
}

/* iOS planet a bit smaller to avoid cut-off */
.planet.ios {
  --planet-size: 60px; /* desktop base, still goes through clamp() */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.7),
    rgba(223, 229, 240, 0.6) 45%,
    rgba(159, 169, 186, 0.5)
  );
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.45),
    0 0 34px rgba(180, 195, 230, 0.35),
    inset 0 0 24px rgba(255, 255, 255, 0.5),
    inset 0 -10px 18px rgba(90, 110, 145, 0.25);
}

.planet.ios::before {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0.7;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b0ff84, #7de65a);
  color: #0a1a35;
  border: none;
  padding: 14px 20px;
  font-weight: 700;
  border-radius: var(--btn-radius, 12px);
  box-shadow: 0 14px 34px rgba(124, 210, 94, 0.42);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    filter 0.18s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(124, 210, 94, 0.46);
  filter: saturate(1.05);
}

.primary-btn:active {
  transform: translateY(0);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 16px;
  font-weight: 600;
  border-radius: var(--btn-radius, 10px);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.secondary-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 210, 94, 0.4);
  background: rgba(124, 210, 94, 0.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
}

.secondary-btn:active {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(124, 210, 94, 0.7);
  outline-offset: 3px;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.about-text {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(12, 24, 66, 0.92),
    rgba(7, 14, 39, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
}

.about-copy {
  display: grid;
  gap: 12px;
}

.about-lead {
  margin-bottom: 0;
  font-size: 16px;
}

.about-points {
  padding-left: 0;
  gap: 12px;
}

.about-points li {
  padding: 14px 16px 14px 34px;
  border-radius: 14px;
  background: rgba(8, 16, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d3dfff;
}

.about-points li::before {
  left: 16px;
  top: 19px;
}

.list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list li {
  position: relative;
  list-style: none;
  padding-left: 16px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #7cd25e 0%,
    #6bbd54 60%,
    transparent 100%
  );
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.expertise-panel {
  background: linear-gradient(
    135deg,
    rgba(12, 24, 66, 0.92),
    rgba(7, 14, 39, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.expertise-card {
  padding: 18px 16px;
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 10px;
  min-height: 170px;
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.expertise-card.is-muted {
  background: linear-gradient(
    150deg,
    rgba(12, 22, 58, 0.95),
    rgba(9, 17, 46, 0.9)
  );
}

.expertise-card.is-accent {
  background: var(--accent);
  color: #0a1a35;
  border-color: rgba(10, 26, 53, 0.08);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(10, 26, 53, 0.04);
}

.expertise-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 210, 94, 0.45);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.expertise-card.is-accent:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.expertise-label {
  display: inline-block;
}

.expertise-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.expertise-copy {
  margin: 0;
  color: #b9c9ec;
  line-height: 1.6;
  font-size: 14px;
}

.expertise-card.is-accent .expertise-copy {
  color: rgba(10, 26, 53, 0.82);
}
.web-hobbies {
  padding-top: 30px;
}

.hobbies-panel {
  position: relative;
  padding: 24px 22px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(124, 210, 94, 0.12),
      transparent 36%
    ),
    radial-gradient(
      circle at 86% 12%,
      rgba(99, 198, 255, 0.14),
      transparent 40%
    ),
    linear-gradient(145deg, rgba(8, 16, 44, 0.96), rgba(7, 14, 38, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.hobbies-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent 65%
  );
  opacity: 0.08;
  pointer-events: none;
}

.hobby-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.hobby-card {
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(
    150deg,
    rgba(12, 22, 58, 0.94),
    rgba(7, 14, 36, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.18s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hobby-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 210, 94, 0.5);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(124, 210, 94, 0.12);
}

.hobby-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hobby-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(124, 210, 94, 0.15);
  border: 1px solid rgba(124, 210, 94, 0.35);
  color: #e8ffe2;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hobby-card__body {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.hobby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hobby-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe7ff;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.hobby-projects {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hobby-projects__heading h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.hobby-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.hobby-project-card {
  padding: 12px 12px 11px;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(7, 14, 36, 0.9),
    rgba(10, 18, 44, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.hobby-project-name {
  font-weight: 700;
  margin: 0 0 4px;
}

.hobby-project-desc {
  margin: 0;
  color: #b7c5ef;
  font-size: 14px;
}

.hobby-outro {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #c5d6ff;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 640px) {
  .expertise-panel {
    padding: 20px 18px;
  }

  .hobbies-panel {
    padding: 20px 18px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(
    var(--services-cols-desktop, auto-fit),
    minmax(240px, 1fr)
  );
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 20px 18px;
  background: linear-gradient(
    145deg,
    rgba(10, 18, 48, 0.96),
    rgba(8, 15, 42, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--services-radius, 16px);
  box-shadow: var(--services-shadow, 0 18px 32px rgba(0, 0, 0, 0.32));
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  display: grid;
  gap: 10px;
  min-height: 180px;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 210, 94, 0.5);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(124, 210, 94, 0.08);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(
    140deg,
    rgba(124, 210, 94, 0.2),
    rgba(76, 165, 255, 0.1)
  );
  border: 1px solid rgba(124, 210, 94, 0.35);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.service-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(
    var(--projects-cols-desktop, auto-fit),
    minmax(260px, 1fr)
  );
  gap: 18px;
}

.projects-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.projects-footer .primary-btn {
  min-width: 170px;
  text-align: center;
}

.projects-intro {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(
      var(--services-cols-tablet, auto-fit),
      minmax(220px, 1fr)
    );
  }

  .projects-grid {
    grid-template-columns: repeat(
      var(--projects-cols-tablet, auto-fit),
      minmax(240px, 1fr)
    );
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(
      var(--services-cols-mobile, auto-fit),
      minmax(200px, 1fr)
    );
  }

  .projects-grid {
    grid-template-columns: repeat(
      var(--projects-cols-mobile, auto-fit),
      minmax(220px, 1fr)
    );
  }
}

.project-card {
  background: linear-gradient(150deg, #13265b 0%, #0a1337 100%);
  border-radius: var(--project-radius, 14px);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--project-shadow, 0 18px 28px rgba(0, 0, 0, 0.35));
  display: grid;
  gap: 14px;
}

.project-card__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.project-card__heading {
  flex: 1 1 auto;
  display: grid;
  gap: 10px;
}

.project-card__meta-row,
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.project-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #e5edff;
}

.project-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.project-icon.teal {
  background: linear-gradient(135deg, #6dd7ff 0%, #1f9ad6 100%);
}

.project-icon.blue {
  background: linear-gradient(135deg, #5f7bff 0%, #1f3ea3 100%);
}

.project-icon.indigo {
  background: linear-gradient(135deg, #4f6afc 0%, #20317d 100%);
}

.project-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.project-card p,
.project-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe7ff;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.project-detail-block {
  padding: 14px;
  border-radius: 14px;
  background: rgba(8, 16, 44, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}

.project-detail-block h2,
.project-detail-block h4 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9caed;
}

.project-responsibilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.project-responsibilities li {
  position: relative;
  padding-left: 18px;
  color: #d0dcfb;
  line-height: 1.55;
}

.project-responsibilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cd25e;
  box-shadow: 0 0 10px rgba(124, 210, 94, 0.45);
}

.project-impact {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(124, 210, 94, 0.12),
    rgba(12, 24, 66, 0.88)
  );
  border: 1px solid rgba(124, 210, 94, 0.24);
  color: #e1ebff;
}

.project-impact strong {
  color: #ffffff;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f1d47;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px 12px;
  border-radius: var(--btn-radius, 10px);
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.15s ease;
}

.ghost-btn:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.packages {
  padding-top: 28px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.package-card {
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(10, 18, 48, 0.96),
    rgba(8, 15, 42, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 12px;
}

.package-card h3 {
  margin: 0;
  font-size: 18px;
}

.package-tech {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(124, 210, 94, 0.14);
  border: 1px solid rgba(124, 210, 94, 0.35);
  color: #e7ffd8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-copy {
  margin: 0;
  color: #bdcceb;
  line-height: 1.65;
}

.package-actions {
  margin-top: auto;
}

.process {
  background: linear-gradient(
    180deg,
    rgba(10, 18, 40, 0.74),
    rgba(7, 12, 30, 0.86)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  counter-reset: process-step;
}

.process-step {
  position: relative;
  padding: 56px 18px 18px;
  border-radius: 18px;
  background: rgba(12, 20, 44, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.process-step::before {
  counter-increment: process-step;
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #0a1a35;
  background: linear-gradient(135deg, #b0ff84, #7de65a);
  box-shadow: 0 10px 24px rgba(124, 210, 94, 0.35);
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #f1f5ff;
}

.process-step p {
  margin: 0;
  color: #a9b7d6;
  line-height: 1.6;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-shortcode .contact-field-label {
  display: block;
  margin: 0 0 6px;
  color: #111c44;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-shortcode .srfm-description {
  margin-bottom: 6px;
}

.contact-shortcode .srfm-submit-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form {
  background: linear-gradient(150deg, #10224e 0%, #0a1437 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
}

.form-feedback {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(124, 210, 94, 0.5);
  background: rgba(124, 210, 94, 0.12);
  color: #e8ffe0;
  font-weight: 600;
  margin: -4px 0 4px;
}

.form-feedback.error {
  border-color: rgba(255, 83, 83, 0.4);
  background: rgba(255, 83, 83, 0.12);
  color: #ffdfdf;
}

.input-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.contact-form input,
.contact-form textarea {
  background: #0c173d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  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(124, 210, 94, 0.5);
  box-shadow: 0 0 0 3px rgba(124, 210, 94, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.social-block h3 {
  margin: 0 0 12px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(160deg, #233a80 0%, #0e1d46 100%);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

.social-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.direct-email {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 6px;
}

.direct-email a {
  color: #a5c6ff;
}

.direct-contact {
  margin-top: 16px;
}

.direct-contact h4 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.contact-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #0a1a35;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-chip .chip-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.contact-chip .chip-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.contact-chip.whatsapp {
  background: linear-gradient(135deg, #4ee181 0%, #21b35c 100%);
  color: #0c2e1c;
}

.contact-chip.telegram {
  background: linear-gradient(135deg, #7ec7ff 0%, #2b89ff 100%);
  color: #0a2242;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 10, 32, 0.86), rgba(4, 9, 28, 0.98));
}

.site-footer__inner {
  display: grid;
  gap: 18px;
  padding: 20px 0 28px;
}

.site-footer__meta {
  display: grid;
  gap: 4px;
}

.site-footer__title,
.site-footer__tagline,
.site-footer__legal {
  margin: 0;
}

.site-footer__title {
  font-weight: 700;
  color: #eef4ff;
}

.site-footer__tagline,
.site-footer__legal {
  color: #aebee5;
  line-height: 1.6;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav a {
  color: #dfe7ff;
  font-weight: 600;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #ffffff;
}

.project-single__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.project-single__image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.38);
}

.project-single__content {
  margin-top: 28px;
}

.project-content {
  padding: 24px 22px;
  border-radius: 18px;
  background: linear-gradient(
    150deg,
    rgba(10, 18, 48, 0.96),
    rgba(8, 15, 42, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34);
}

.project-content > *:first-child {
  margin-top: 0;
}

.project-content > *:last-child {
  margin-bottom: 0;
}

@keyframes floaty {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(var(--float-x, 12px), calc(var(--float-y, 14px) * -1));
  }
  50% {
    transform: translate(
      calc(var(--float-x, 12px) * -0.6),
      var(--float-y, 14px)
    );
  }
  75% {
    transform: translate(
      calc(var(--float-x, 12px) * 0.8),
      calc(var(--float-y, 14px) * 0.4)
    );
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.03);
  }
}

@keyframes star-drift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.04);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes sun-breath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 26px rgba(255, 190, 120, 0.4),
      0 0 120px rgba(255, 177, 99, 0.45);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
      0 0 32px rgba(255, 202, 140, 0.55),
      0 0 150px rgba(255, 180, 102, 0.55);
  }
}

@keyframes sun-aura {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes orbit-loop {
  from {
    transform: translate(-50%, -50%) rotate(0deg)
      translateY(calc(var(--orbit-size, 320px) / -2)) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg)
      translateY(calc(var(--orbit-size, 320px) / -2)) rotate(-360deg);
  }
}

@keyframes counter-spin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(-360deg);
  }
}

@keyframes haze-spin {
  from {
    transform: rotate(0deg);
    opacity: 0.7;
  }
  50% {
    opacity: 0.95;
  }
  to {
    transform: rotate(360deg);
    opacity: 0.7;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shadow-drift {
  0% {
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.55),
      0 12px 30px rgba(0, 0, 0, 0.45);
  }
  33% {
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.6),
      0 16px 36px rgba(15, 64, 134, 0.28);
  }
  66% {
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.55),
      0 10px 28px rgba(0, 0, 0, 0.42);
  }
  100% {
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.55),
      0 12px 30px rgba(0, 0, 0, 0.45);
  }
}

/* Blog / Posts */
.blog-hero {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(124, 210, 94, 0.22),
      transparent 44%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(99, 198, 255, 0.22),
      transparent 40%
    ),
    linear-gradient(135deg, rgba(7, 14, 32, 0.96), rgba(6, 12, 30, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 50px rgba(3, 7, 24, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 30px auto 0;
  max-width: 90%;
  overflow: hidden;
  isolation: isolate;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: -46% 12% auto;
  height: 70%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.1),
    transparent 55%
  );
  filter: blur(48px);
  opacity: 0.75;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  pointer-events: none;
  opacity: 0.6;
}

.blog-hero__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 34px 28px 40px;
  align-items: stretch;
}

.blog-hero__meta {
  flex: 0 1 320px;
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 18px;
  color: #c5d6ff;
  display: grid;
  gap: 6px;
  align-content: center;
  overflow: hidden;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.blog-hero__meta::before {
  content: "";
  position: absolute;
  inset: -30% -12% auto 8%;
  height: 74%;
  background:
    radial-gradient(
      circle at 36% 40%,
      rgba(124, 210, 94, 0.22),
      transparent 44%
    ),
    radial-gradient(circle at 80% 0%, rgba(99, 198, 255, 0.26), transparent 52%);
  filter: blur(42px);
  opacity: 0.9;
}

.blog-hero__meta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    transparent 62%
  );
  opacity: 0.1;
}

.blog-hero__meta .muted {
  color: #d5e4ff;
  font-weight: 600;
}

.hero-count {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 4px 0;
  background: linear-gradient(120deg, #f8fff3 0%, #c1ffb4 40%, #8addff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(124, 210, 94, 0.16);
  border: 1px solid rgba(124, 210, 94, 0.45);
  color: #ddffd1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(124, 210, 94, 0.18);
}

.blog-title {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4.6vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.blog-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 26px;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dfe7ff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.16s ease,
    background 0.2s ease;
}

.blog-chip__count {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f6ffed;
}

.blog-chip::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e9ffd6, #7cd25e 70%, #57b64a);
  box-shadow: 0 0 0 6px rgba(124, 210, 94, 0.18);
}

.blog-chip:hover {
  background: rgba(124, 210, 94, 0.16);
  border-color: rgba(124, 210, 94, 0.5);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(124, 210, 94, 0.26);
  transform: translateY(-2px);
}

.blog-chip.is-active {
  background: linear-gradient(
    135deg,
    rgba(124, 210, 94, 0.3),
    rgba(99, 198, 255, 0.22)
  );
  border-color: rgba(124, 210, 94, 0.75);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(124, 210, 94, 0.28);
  color: #f6ffed;
}

.muted {
  color: #9eb4e0;
  margin: 0;
  font-size: 14px;
}

.blog-list {
  padding-top: 30px;
}

.blog-layout {
  display: flex;
  gap: 18px;
  align-items: start;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 0%;
}

.featured-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 18% 24%,
      rgba(124, 210, 94, 0.18),
      transparent 38%
    ),
    radial-gradient(
      circle at 80% 14%,
      rgba(63, 138, 255, 0.18),
      transparent 36%
    ),
    linear-gradient(145deg, rgba(5, 12, 28, 0.98), rgba(9, 16, 36, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(63, 138, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: -32% 28% auto -10%;
  height: 64%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.12),
    transparent 54%
  );
  filter: blur(40px);
  opacity: 0.65;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.55;
}

.featured-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 320px;
}

.featured-card__title {
  font-size: clamp(28px, 3.8vw, 36px);
  margin: 2px 0 0;
  letter-spacing: -0.02em;
}

.featured-card__title a {
  color: #e8edff;
  text-decoration: none;
}

.featured-card__meta {
  color: #b6c7f0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin: 0;
}

.featured-card__excerpt {
  margin: 0;
  color: #d2defd;
  line-height: 1.7;
  max-width: 96%;
}

.featured-card__image {
  position: relative;
  z-index: 1;
  flex: 1 1 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  min-height: 240px;
}

.featured-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 10, 32, 0.6));
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.post-card {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(124, 210, 94, 0.08),
      transparent 38%
    ),
    radial-gradient(
      circle at 78% 6%,
      rgba(99, 198, 255, 0.08),
      transparent 36%
    ),
    linear-gradient(150deg, #0a132f 0%, #060c24 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 0 22px rgba(63, 138, 255, 0.14);
  transition:
    transform 0.2s ease,
    box-shadow 0.22s ease,
    border-color 0.2s ease;
  isolation: isolate;
  flex: 1 1 320px;
  min-width: 280px;
}

.post-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  opacity: 0.7;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(124, 210, 94, 0.22);
  border-color: rgba(124, 210, 94, 0.26);
}

.post-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.post-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(124, 210, 94, 0.32),
    rgba(63, 138, 255, 0.32)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.32);
  display: grid;
  place-items: center;
}

.post-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.post-card__titles {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.post-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #f3f6ff;
  letter-spacing: -0.01em;
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
}

.post-card__title a:hover {
  color: #a0ff8b;
}

.post-card__subtitle {
  margin: 0;
  color: #a8b5da;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(63, 138, 255, 0.16),
    rgba(10, 18, 44, 0.8)
  );
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.post-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.24s ease,
    filter 0.24s ease;
  display: block;
}

.post-card:hover .post-card__media img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.post-card__pill {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a0ff8b, #6ce0ff);
  color: #0a112b;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  gap: 6px;
}

.post-card__pill-count {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(10, 17, 43, 0.24);
}

.post-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #c1c5d1;
  font-size: 30px;
  letter-spacing: 0.1em;
}

.post-card__content {
  padding: 14px 16px 16px;
  color: #cbd7f9;
  line-height: 1.6;
  flex: 1 1 auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
}

.post-card__excerpt {
  margin: 0;
}

.post-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  gap: 12px;
}

.post-card__action-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.post-card__action-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #9ef48f;
  transition:
    color 0.16s ease,
    transform 0.16s ease;
}

.post-card__action-link.is-subtle {
  color: #a5b4dc;
}

.post-card__action-link:hover {
  color: #c1ffb4;
  transform: translateY(-1px);
}

.post-card__icon-buttons {
  display: flex;
  gap: 8px;
}

.post-card__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dce6ff;
  display: grid;
  place-items: center;
  padding: 0;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.post-card__icon-btn:hover {
  border-color: rgba(124, 210, 94, 0.4);
  background: rgba(124, 210, 94, 0.12);
  color: #b4ff9f;
  transform: translateY(-1px);
}

.post-card__icon-btn svg {
  width: 18px;
  height: 18px;
}

.post-card--compact {
  flex-direction: column;
}

.post-grid--compact {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 1 320px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dfe7ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.meta-chip__count {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.posts-pagination {
  display: flex;
  justify-content: center;
  margin: 26px auto 0;
  gap: 10px;
}

.posts-pagination .page-numbers,
.posts-pagination a,
.posts-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dfe7ff;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.posts-pagination a:hover {
  border-color: rgba(124, 210, 94, 0.45);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.posts-pagination .current {
  background: linear-gradient(
    135deg,
    rgba(124, 210, 94, 0.28),
    rgba(99, 198, 255, 0.24)
  );
  color: #fff;
  border-color: rgba(124, 210, 94, 0.55);
}

.empty-state {
  text-align: center;
  color: #b7c5ef;
}

.articles {
  padding-top: 28px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.article-card {
  background: rgba(7, 14, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 10px;
}

.article-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.article-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.article-img.placeholder {
  display: grid;
  place-items: center;
  color: #7cd25e;
  font-weight: 700;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9eb4e0;
  font-size: 13px;
}

.article-title {
  margin: 0;
  font-size: 18px;
}

.article-title a {
  color: #e8edff;
  text-decoration: none;
}

.article-excerpt {
  margin: 0;
  color: #b7c5ef;
  line-height: 1.6;
}

.articles-footer {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .blog-layout {
    flex-direction: column;
  }

  .featured-card {
    flex-direction: column;
  }

  .blog-hero__grid {
    flex-direction: column;
  }
}

.post-single {
  padding-top: 36px;
}

.post-single__header {
  max-width: 960px;
}

.post-single__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-single__title {
  font-size: clamp(32px, 4.4vw, 48px);
  margin: 12px 0 8px;
  letter-spacing: -0.02em;
}

.post-single__meta {
  color: #9eb4e0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.post-single__image {
  margin: 22px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.post-single__image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-single__content {
  max-width: 960px;
}

.post-body {
  background: rgba(10, 18, 44, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  line-height: 1.8;
  color: #dfe7ff;
}

.post-body p {
  margin-bottom: 18px;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin: 24px 0 12px;
}

.post-body ul,
.post-body ol {
  padding-left: 20px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 6px;
}

.post-nav a {
  color: #7cd25e;
  text-decoration: none;
  font-weight: 700;
}

/* Generic pages */
.page-default {
  padding-top: 42px;
}

.page-hero {
  max-width: 960px;
}

.page-title {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.page-hero__image {
  margin: 18px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.page-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content {
  max-width: 960px;
}

.page-body {
  background: rgba(10, 18, 44, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  line-height: 1.8;
  color: #dfe7ff;
}

.page-body :where(p, h2, h3, h4, ul, ol) {
  margin-bottom: 18px;
}

.page-body ul,
.page-body ol {
  padding-left: 20px;
}

/* Single Post layout */
.post-layout {
  padding-top: 32px;
}

.post-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.post-main {
  display: grid;
  gap: 16px;
}

.post-hero-card {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(124, 210, 94, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(63, 138, 255, 0.12),
      transparent 36%
    ),
    linear-gradient(145deg, rgba(8, 16, 40, 0.96), rgba(7, 14, 36, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(63, 138, 255, 0.15);
  overflow: hidden;
}

.post-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--post-hero);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: blur(10px);
  transform: scale(1.04);
  z-index: 0;
}

.post-hero__top {
  position: relative;
  z-index: 1;
}

.post-single__title {
  font-size: clamp(30px, 4.4vw, 46px);
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}

.post-single__meta {
  color: #b0c2ef;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin: 0 0 12px;
}

.post-single__image {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.post-body {
  background: rgba(7, 14, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  line-height: 1.8;
  color: #dfe7ff;
}

.post-body pre,
.post-body code {
  background: #0b1a3d;
  color: #c1f0d7;
  border-radius: 10px;
}

.post-body pre {
  padding: 14px;
  overflow-x: auto;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #c5d6ff;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-buttons a {
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(124, 210, 94, 0.16),
    rgba(99, 198, 255, 0.12)
  );
  color: #f4fbff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.share-buttons a:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 210, 94, 0.55);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(124, 210, 94, 0.18);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 6px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 6px;
}

.post-nav a {
  color: #7cd25e;
  text-decoration: none;
  font-weight: 700;
}

.post-comments {
  background: rgba(7, 14, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.post-comments .comments-title,
.post-comments .comment-reply-title {
  margin: 0 0 16px;
  font-size: 20px;
  color: #f3f6ff;
}

.post-comments .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.post-comments .comment-body {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
}

.post-comments .comment-author {
  font-weight: 600;
  color: #e8edff;
}

.post-comments .comment-author .avatar {
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.post-comments .comment-metadata,
.post-comments .comment-metadata a {
  color: #9db3e6;
  font-size: 13px;
}

.post-comments .comment-content {
  margin-top: 10px;
  color: #d8e3ff;
}

.post-comments .reply a {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(124, 210, 94, 0.35);
  color: #7cd25e;
  font-weight: 600;
}

.post-comments .comment-respond {
  margin-top: 24px;
}

.post-comments #commentform {
  display: grid;
  gap: 12px;
}

.post-comments #commentform input[type="text"],
.post-comments #commentform input[type="email"],
.post-comments #commentform input[type="url"],
.post-comments #commentform textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 10, 30, 0.85);
  color: #e8edff;
}

.post-comments #commentform textarea {
  min-height: 140px;
  resize: vertical;
}

.post-comments #commentform input:focus,
.post-comments #commentform textarea:focus {
  outline: none;
  border-color: rgba(124, 210, 94, 0.6);
  box-shadow: 0 0 0 2px rgba(124, 210, 94, 0.15);
}

.post-comments #commentform input[type="submit"] {
  justify-self: start;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(124, 210, 94, 0.35);
  background: linear-gradient(
    135deg,
    rgba(124, 210, 94, 0.2),
    rgba(99, 198, 255, 0.12)
  );
  color: #f4fbff;
  font-weight: 700;
  cursor: pointer;
}

.post-comments #commentform input[type="submit"]:hover {
  border-color: rgba(124, 210, 94, 0.6);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.post-sidebar {
  display: grid;
  gap: 14px;
}

.ad-card,
.widget {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(7, 14, 36, 0.95),
    rgba(6, 12, 30, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.ad-card::before,
.widget::before {
  content: "";
  position: absolute;
  inset: -36% -24% auto 6%;
  height: 78%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(99, 198, 255, 0.18),
      transparent 52%
    ),
    radial-gradient(circle at 78% 0%, rgba(124, 210, 94, 0.2), transparent 56%);
  filter: blur(52px);
  opacity: 0.75;
}

.ad-card::after,
.widget::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  pointer-events: none;
  opacity: 0.5;
}

.ad-card *,
.widget * {
  position: relative;
  z-index: 1;
}

.ad-placeholder {
  background: linear-gradient(
    145deg,
    rgba(63, 138, 255, 0.18),
    rgba(124, 210, 94, 0.12)
  );
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  color: #dfe7ff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
}

.ad-label {
  margin: 0 0 8px;
  color: #b7c5ef;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.widget-title {
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.widget-social__links {
  display: grid;
  gap: 8px;
}

.widget-social__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #dfe7ff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-newsletter .widget-subtext {
  margin: 0 0 10px;
  color: #b7c5ef;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(124, 210, 94, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(124, 210, 94, 0.16);
}

.newsletter-form button {
  border: none;
  background: linear-gradient(135deg, #6ede8a, #9cf0b0);
  color: #0a1a35;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(110, 222, 138, 0.35);
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(110, 222, 138, 0.4);
}

.popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.popular-item {
  margin: 0;
}

.popular-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  color: #dfe7ff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  transition:
    border-color 0.18s ease,
    transform 0.16s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.popular-link:hover {
  border-color: rgba(124, 210, 94, 0.4);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(124, 210, 94, 0.16);
}

.popular-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
  display: block;
}

.popular-thumb.placeholder {
  display: grid;
  place-items: center;
  color: #7cd25e;
  font-weight: 700;
}

.popular-meta {
  display: grid;
  gap: 4px;
  line-height: 1.3;
}

.popular-title {
  font-weight: 700;
}

.popular-date {
  color: #9eb4e0;
  font-size: 13px;
}

@media (min-width: 1100px) {
  .blog-sidebar {
    position: sticky;
    top: 26px;
  }
}

@media (max-width: 960px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .orbit-stage {
    width: min(520px, 72vw);
  }

  .orbit {
    --orbit-scale: 0.94;
  }

  .sun {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .hero-nav {
    width: 100%;
  }

  .hero-top__actions {
    width: 100%;
    flex-direction: column;
    margin-left: 0;
  }

  .hero-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero-header-cta {
    width: 100%;
  }

  .hero-menu .sub-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    display: none;
  }

  .hero-menu .menu-item-has-children:hover > .sub-menu,
  .hero-menu .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
  }

  .headline {
    text-align: center;
  }

  .hero-proof-list,
  .project-actions,
  .project-card__meta-row {
    justify-content: center;
  }

  .hero-hint {
    margin: 12px auto 0;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-stat-grid,
  .about-panel,
  .project-single__hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .orbit-stage {
    width: min(480px, 82vw);
  }

  .orbit {
    --orbit-scale: 0.9;
  }

  .sun {
    width: 176px;
    height: 176px;
  }
}

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

  .hero {
    padding: 34px 0 14px;
  }

  .orbit-stage {
    width: min(360px, 88vw);
  }

  .orbit {
    --orbit-scale: 0.82;
  }

  .sun {
    width: 160px;
    height: 160px;
  }

  .hero-proof-list {
    justify-content: center;
  }

  .hero-copy {
    gap: 12px;
  }

  .subline {
    font-size: 16px;
    line-height: 1.55;
  }

  .tagline {
    gap: 6px;
  }

  .tagline-focus {
    font-size: clamp(18px, 5.4vw, 24px);
  }

  .hero-proof-list li,
  .hero-stat,
  .process-step,
  .package-card {
    text-align: left;
  }

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

  .about-panel,
  .expertise-panel,
  .hobbies-panel {
    padding: 20px 18px;
  }

  .project-card__top {
    flex-direction: column;
  }

  .project-actions .ghost-btn,
  .cta-row a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-header-cta {
    display: none;
  }

  .project-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .orbit-stage {
    width: clamp(220px, 82vw, 420px);
  }

  .orbit {
    --orbit-scale: 0.78;
  }

  .sun {
    width: clamp(110px, 30vw, 170px);
    height: clamp(110px, 30vw, 170px);
  }

  .planet {
    width: clamp(20px, 5.5vw, var(--planet-size, 52px));
    height: clamp(20px, 5.5vw, var(--planet-size, 52px));
  }

  .planet.ios {
    --planet-size: 48px; /* extra safe on very small screens */
    --orbit-size: 335px;
  }
}

@media (max-width: 1024px) {
  .orbit-stage {
    width: min(520px, 72vw);
  }
}
@media (max-width: 768px) {
  .orbit-stage {
    width: min(480px, 82vw);
  }
}
@media (max-width: 640px) {
  .orbit-stage {
    width: min(440px, 94vw);
  }
}

@media (max-width: 1024px) {
  .sun {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 768px) {
  .sun {
    width: 176px;
    height: 176px;
  }
}
@media (max-width: 640px) {
  .sun {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .orbit.orbit-1 {
    --orbit-size: calc(320px * 0.78);
  }
  .orbit.orbit-2 {
    --orbit-size: calc(420px * 0.78);
  }
  .orbit.orbit-3 {
    --orbit-size: calc(520px * 0.78);
  }
  .orbit.orbit-4 {
    --orbit-size: calc(620px * 0.78);
  }
}

@media (max-width: 480px) {
  .orbit.orbit-1 {
    --orbit-size: calc(320px * 0.6);
  }
  .orbit.orbit-2 {
    --orbit-size: calc(420px * 0.6);
  }
  .orbit.orbit-3 {
    --orbit-size: calc(520px * 0.6);
  }
  .orbit.orbit-4 {
    --orbit-size: calc(620px * 0.6);
  }
}

.srfm-form-container.srfm-bg-color {
  background: var(--srfm-bg-color);
  padding: 1rem;
  border-radius: 10px;
}

/* Learning Path Template */
.learning-path__hero {
  padding-bottom: 28px;
}

.learning-path__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: center;
}

.learning-path__title {
  margin: 12px 0 12px;
  font-size: clamp(32px, 4.4vw, 46px);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.learning-path__meta-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
}

.learning-path__count {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #e0f2fe;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.learning-path__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.learning-path__link:hover {
  border-color: rgba(56, 189, 248, 0.8);
  background: rgba(56, 189, 248, 0.2);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

.learning-path__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
}

.lp-panel {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.lp-panel__sticky {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.lp-panel__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
}

.lp-panel__title--small {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}

.lp-panel__subtitle {
  margin: 0;
  color: #b6c7ee;
  font-size: 14px;
  line-height: 1.6;
}

.lp-panel__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.5), transparent);
  margin: 4px 0 6px;
}

.lp-progress {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lp-progress__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 13px;
  color: #d7e3ff;
}

.lp-progress__item.is-complete {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.lp-progress__item.is-active {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.22),
    rgba(59, 130, 246, 0.12)
  );
  border-color: rgba(56, 189, 248, 0.7);
}

.lp-progress__item.is-upcoming {
  opacity: 0.7;
}

.lp-progress__label {
  font-weight: 600;
}

.lp-progress__percent {
  font-weight: 700;
  color: #e0f2fe;
}

.lp-toc {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  display: grid;
  gap: 12px;
  position: relative;
}

.lp-toc::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.8), rgba(56, 189, 248, 0.1));
  opacity: 0.7;
}

.lp-toc__item {
  position: relative;
  display: grid;
  gap: 6px;
  padding-left: 26px;
}

.lp-toc__item::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.lp-toc__marker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
  font-weight: 700;
}

.lp-toc__item a {
  color: #e2e8f0;
  font-weight: 600;
  transition: color 0.2s ease;
}

.lp-toc__item a:hover {
  color: #7dd3fc;
}

.learning-path__content {
  display: grid;
  gap: 16px;
}

.lp-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 20px 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(56, 189, 248, 0.6),
    0 0 26px rgba(56, 189, 248, 0.35);
}

.lp-card__badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(59, 130, 246, 0.16));
  border: 1px solid rgba(56, 189, 248, 0.6);
  color: #e0f2fe;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.18);
  flex-shrink: 0;
}

.lp-card__body {
  flex: 1;
  display: grid;
  gap: 8px;
}

.lp-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.lp-card__title a {
  color: #f1f5f9;
}

.lp-card__excerpt {
  margin: 0;
  color: #cbd5f5;
  line-height: 1.6;
}

.lp-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93a4c0;
}

.lp-card__action {
  flex-shrink: 0;
}

.lp-card__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.12);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.lp-card__button:hover {
  background: rgba(56, 189, 248, 0.22);
  border-color: rgba(56, 189, 248, 0.85);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .learning-path__intro {
    grid-template-columns: 1fr;
  }

  .learning-path__grid {
    grid-template-columns: 1fr;
  }

  .lp-panel__sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .lp-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-card__action {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .learning-path__hero {
    padding-bottom: 12px;
  }

  .lp-card {
    padding: 16px;
  }

  .lp-card__badge {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
