:root {
  --bg: #121212;
  --bg-sec: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --primary: #ff5722; /* Safety Orange */
  --primary-hover: #f4511e;
  --accent-blue: #2979ff;
  --accent-purple: #d500f9;
  --font-head: "Rajdhani", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-code: "Roboto Mono", monospace;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
}

.orange-text {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.btn--orange {
  background: var(--primary);
  color: #fff;
}
.btn--orange:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--primary);
}
.btn--white:hover {
  background: #eee;
}

.btn--full {
  width: 100%;
}

.btn--small {
  padding: 8px 20px;
  font-size: 14px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-desk {
  display: flex;
  gap: 25px;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link.highlight {
  color: var(--primary);
}

.header__act {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
}
.burger .line {
  width: 30px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
  border-radius: 2px;
}

.burger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active .line:nth-child(2) {
  opacity: 0;
}

.burger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-sec) 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}
.mob-menu.active {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mm-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(90deg, var(--primary), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mm-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 4px;
}

.mm-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.mm-close i {
  width: 24px;
  height: 24px;
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.mm-links a {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 0;
  border-left: 3px solid transparent;
  padding-left: 10px;
  transition: 0.3s;
  display: block;
}
.mm-links a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}

.mm-foot {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mm-foot .btn {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=2070&auto=format&fit=crop");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #121212 0%,
    rgba(18, 18, 18, 0.95) 50%,
    rgba(18, 18, 18, 0.4) 100%
  );
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  font-family: var(--font-code);
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid var(--accent-blue);
  padding: 5px 10px;
  font-size: 14px;
}

.hero__title {
  font-size: 64px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero__text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero__btns {
  display: flex;
  gap: 20px;
}

/* Code Window Visual */
.code-window {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  font-family: var(--font-code);
  font-size: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.cw-header {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}

.cw-body {
  color: #a9b7c6;
  line-height: 1.6;
}
.c-purple {
  color: #cc7832;
}
.c-blue {
  color: var(--accent-blue);
}
.c-yellow {
  color: #ffc66d;
}
.c-green {
  color: #6a8759;
}
.c-func {
  color: #ffc66d;
}
.indent {
  margin-left: 20px;
}
.comment {
  color: #808080;
  margin-top: 10px;
}

/* Sections */
.section {
  padding: 100px 0;
}
.bg-darker {
  background: var(--bg-sec);
}
.bg-orange-dark {
  background: linear-gradient(135deg, #bf360c 0%, #3e2723 100%);
}

.sec-head {
  margin-bottom: 60px;
  max-width: 700px;
}
.sec-head h2 {
  font-size: 42px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}
.sec-sub {
  font-size: 18px;
  color: var(--text-muted);
  padding-left: 24px;
}
.text-center {
  text-align: center;
}
.text-center h2 {
  border-left: none;
  border-bottom: 4px solid var(--primary);
  display: inline-block;
  padding-bottom: 10px;
  padding-left: 0;
}

/* Courses */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.course-card {
  background: var(--bg);
  border: 1px solid #333;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}
.highlight-card {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
}

.cc-icon {
  color: var(--primary);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
}
.course-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.course-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}
.cc-list {
  list-style: none;
  padding: 0;
}
.cc-list li {
  border-top: 1px solid #333;
  padding: 10px 0;
  font-family: var(--font-code);
  font-size: 14px;
  color: var(--text);
}

/* Method */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.line-sep {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 20px 0;
}
.big-para {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.split-txt p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.img-wrap {
  position: relative;
}
.img-wrap img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: 0.5s;
}
.img-wrap:hover img {
  filter: grayscale(0%);
}
.overlay-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  padding: 20px 40px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Income */
.income-box {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 60px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
.ib-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ib-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
.ib-lead {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ffccbc;
}
.ib-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Steps */
.steps-path {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
}
.step-unit {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}
.su-head {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 15px;
}
.step-unit h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-unit p {
  font-size: 14px;
  color: var(--text-muted);
}
.step-arrow {
  color: #333;
  margin-top: 30px;
}

/* FAQ */
.narrow {
  max-width: 800px;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.faq-content p {
  padding-bottom: 20px;
  color: var(--text-muted);
}
.faq-item.active .faq-trigger {
  color: var(--primary);
}
.faq-item.active .faq-trigger i {
  transform: rotate(45deg);
}

/* Form */
.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.fc-desc {
  margin-bottom: 30px;
  color: var(--text-muted);
}
.contacts-mini {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 1px solid #333;
  padding-top: 30px;
}
.cm-row {
  display: flex;
  gap: 15px;
  color: #fff;
  align-items: center;
}
.cm-row i {
  color: var(--primary);
}

.bionic-form {
  background: var(--bg-sec);
  padding: 40px;
  border: 1px solid #333;
}
.inp-wrap {
  margin-bottom: 20px;
  position: relative;
}
.inp-wrap label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.inp-wrap input {
  width: 100%;
  background: var(--bg);
  border: 1px solid #333;
  padding: 12px;
  color: #fff;
  font-family: var(--font-body);
}
.inp-wrap input:focus {
  outline: none;
  border-color: var(--primary);
}
.err-msg {
  color: #ff5252;
  font-size: 12px;
  position: absolute;
  bottom: -18px;
  left: 0;
  display: none;
}
.inp-wrap.error .err-msg {
  display: block;
}
.inp-wrap.error input {
  border-color: #ff5252;
}

.check-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.check-wrap input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.check-wrap label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.check-wrap a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 2px solid var(--primary);
}
.footer-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.f-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
.footer-col h4 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 16px;
}
.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-copy {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 12px;
  color: #555;
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-sec);
  border-top: 1px solid var(--primary);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 9999;
  transform: translateY(100%);
  transition: 0.3s;
}
.cookie-bar.show {
  transform: translateY(0);
}
.cookie-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--primary);
}
.cookie-content p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive - Tablet (768px and below) */
@media (max-width: 768px) {
  .nav-desk {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header__act {
    gap: 15px;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__visual {
    display: none;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .course-card {
    padding: 20px;
  }

  .course-card h3 {
    font-size: 20px;
  }

  .course-card p {
    font-size: 14px;
  }

  .split-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-txt p {
    font-size: 15px;
  }

  .big-para {
    font-size: 18px;
  }

  .sec-head h2 {
    font-size: 36px;
  }

  .sec-sub {
    font-size: 16px;
  }

  .income-box {
    padding: 40px 20px;
  }

  .ib-content h2 {
    font-size: 36px;
  }

  .ib-lead {
    font-size: 20px;
  }

  .ib-content p {
    font-size: 16px;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bionic-form {
    padding: 30px 20px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h4,
  .f-logo {
    font-size: 18px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 13px;
  }

  .su-head {
    font-size: 48px;
  }

  .step-unit h4 {
    font-size: 18px;
  }

  .steps-path {
    flex-direction: column;
    gap: 30px;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin-top: 0;
    margin-bottom: 10px;
  }

  .faq-trigger {
    font-size: 18px;
    padding: 12px 0;
  }

  .faq-content p {
    padding-bottom: 15px;
    font-size: 14px;
  }

  .cookie-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }

  .cookie-content h3 {
    font-size: 14px;
  }

  .cookie-content p {
    font-size: 11px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 14px;
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .mm-links a {
    font-size: 20px;
  }

  .code-window {
    font-size: 12px;
    padding: 15px;
  }

  .code-window .cw-body {
    line-height: 1.4;
  }

  .indent {
    margin-left: 10px;
  }

  .overlay-stat {
    right: -10px;
    bottom: -10px;
    padding: 15px 30px;
    font-size: 20px;
  }
}

/* Responsive - Mobile (600px and below) */
@media (max-width: 600px) {
  .header {
    padding: 12px 0;
  }

  .logo svg {
    width: 160px;
    height: 30px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero__tag {
    font-size: 12px;
    margin-bottom: 15px;
    padding: 4px 8px;
  }

  .hero__text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero__btns {
    flex-direction: column;
    gap: 15px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .course-card {
    padding: 15px;
  }

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

  .course-card p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .cc-list li {
    padding: 8px 0;
    font-size: 12px;
  }

  .cc-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .sec-head h2 {
    font-size: 28px;
    padding-left: 15px;
  }

  .sec-sub {
    font-size: 14px;
    padding-left: 20px;
  }

  .text-center h2 {
    font-size: 28px;
  }

  .income-box {
    padding: 30px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ib-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .ib-lead {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .ib-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .form-container {
    gap: 30px;
  }

  .bionic-form {
    padding: 20px 15px;
  }

  .inp-wrap {
    margin-bottom: 15px;
  }

  .inp-wrap label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .inp-wrap input {
    padding: 10px;
    font-size: 14px;
  }

  .check-wrap {
    margin-bottom: 20px;
    gap: 8px;
  }

  .check-wrap input {
    width: 18px;
    height: 18px;
  }

  .check-wrap label {
    font-size: 11px;
  }

  .cm-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 13px;
  }

  .contacts-mini {
    gap: 10px;
    padding-top: 20px;
  }

  .fc-desc {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .su-head {
    font-size: 36px;
  }

  .step-unit h4 {
    font-size: 16px;
  }

  .step-unit p {
    font-size: 13px;
  }

  .faq-trigger {
    font-size: 16px;
    padding: 12px 0;
  }

  .faq-trigger i {
    font-size: 18px;
  }

  .faq-content p {
    padding-bottom: 12px;
    font-size: 13px;
  }

  .footer-row {
    gap: 20px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .f-logo {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-copy {
    font-size: 11px;
    padding-top: 15px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .btn--small {
    padding: 6px 16px;
    font-size: 12px;
  }

  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 12px;
  }

  .mm-head {
    margin-bottom: 30px;
  }

  .mm-logo {
    font-size: 20px;
  }

  .mm-links {
    gap: 15px;
  }

  .mm-links a {
    font-size: 18px;
  }

  .mm-foot {
    padding: 20px 0 0;
  }

  .code-window {
    font-size: 11px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .cw-header {
    margin-bottom: 10px;
  }

  .cw-body {
    line-height: 1.3;
  }

  .code-row {
    word-break: break-word;
  }

  .line-sep {
    margin: 15px 0;
  }

  .overlay-stat {
    right: -5px;
    bottom: -5px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .img-wrap img {
    border-radius: 2px;
  }
}

/* Responsive - Small Mobile (480px and below) */
@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }

  .header__wrap {
    padding: 0 10px;
  }

  .logo svg {
    width: 140px;
    height: 25px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .hero__container {
    padding: 0 10px;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero__tag {
    font-size: 11px;
    margin-bottom: 10px;
    padding: 3px 6px;
  }

  .hero__text {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .hero__btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 6px 16px;
    font-size: 11px;
    clip-path: polygon(
      5px 0,
      100% 0,
      100% calc(100% - 5px),
      calc(100% - 5px) 100%,
      0 100%,
      0 5px
    );
  }

  .section {
    padding: 30px 0;
  }

  .container {
    padding: 0 10px;
  }

  .sec-head h2 {
    font-size: 24px;
    padding-left: 12px;
  }

  .sec-head {
    margin-bottom: 30px;
  }

  .course-card {
    padding: 12px;
  }

  .course-card h3 {
    font-size: 16px;
  }

  .course-card p {
    font-size: 12px;
  }

  .cc-icon {
    width: 28px;
    height: 28px;
  }

  .ib-content h2 {
    font-size: 24px;
  }

  .ib-lead {
    font-size: 16px;
  }

  .ib-content p {
    font-size: 13px;
  }

  .income-box {
    padding: 20px 10px;
  }

  .bionic-form {
    padding: 15px 10px;
  }

  .inp-wrap label {
    font-size: 11px;
  }

  .inp-wrap input {
    padding: 8px;
    font-size: 13px;
  }

  .su-head {
    font-size: 32px;
  }

  .faq-trigger {
    font-size: 14px;
  }

  .footer-row {
    gap: 15px;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .f-logo {
    font-size: 16px;
  }

  .footer-col h4 {
    font-size: 13px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 11px;
  }

  .cookie-bar {
    padding: 10px;
    gap: 10px;
  }

  .cookie-content h3 {
    font-size: 12px;
  }

  .cookie-content p {
    font-size: 10px;
  }

  .code-window {
    font-size: 10px;
    padding: 8px;
  }

  .indent {
    margin-left: 5px;
  }

  .overlay-stat {
    right: 0;
    bottom: 0;
    padding: 10px 15px;
    font-size: 14px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
  }
  .margin {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pages {
    padding: 90px 0 50px;
  }
  .pages h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .text-wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .text-wrapper h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text-wrapper h3 {
    font-size: 16px;
  }
  .text-wrapper p {
    font-size: 13px;
    line-height: 1.6;
  }
  .margin {
    font-size: 24px;
    margin: 80px 0 30px;
  }
}

@media (max-width: 480px) {
  .pages {
    padding: 80px 0 40px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .text-wrapper {
    padding: 15px 10px;
  }
  .text-wrapper h2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .text-wrapper h3 {
    font-size: 14px;
  }
  .text-wrapper p {
    font-size: 12px;
  }
  .margin {
    font-size: 20px;
    margin: 60px 0 20px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-page-main {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .cp-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cp-phone-link {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 120px;
    text-align: center;
  }

  .cp-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cp-divider {
    margin: 0 auto 30px auto;
  }

  .cp-status {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 40px;
  }

  .cp-phone-link {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cp-details {
    gap: 8px;
  }

  .cp-label {
    font-size: 12px;
  }

  .cp-address-box {
    padding-top: 20px;
    max-width: 100%;
  }

  .cp-addr {
    font-size: 16px;
  }

  .cp-email {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-page-main {
    padding-top: 100px;
    min-height: 70vh;
  }

  .cp-title {
    font-size: 22px;
  }

  .cp-divider {
    width: 50px;
  }

  .cp-status {
    font-size: 12px;
  }

  .cp-phone-link {
    font-size: 20px;
  }

  .cp-addr {
    font-size: 14px;
  }

  .cp-email {
    font-size: 12px;
  }
}
