/* ==========================================================================
   Startbit — Global / shared styles
   Used by: index.html, courses/*.html (and any future course detail pages)
   Keep ONLY page-specific styles in the page itself.
   ========================================================================== */

:root {
  --qode-logo-blue: #16417d;
  --qode-main-color: var(--qode-logo-blue);
  --qode-cyan: #57b8e0;
  --qode-purple: #b784e5;
  --qode-deon-fill-gradient: linear-gradient(45deg, #5fc3ee 0%, #5d91ef 29%, #947be1 73%, #ca97d2 100%);
  --qode-deon-border-gradient: linear-gradient(70deg, var(--qode-cyan), #5752e2, #be8ec6);
  --qode-green: #61ce70;
  --qode-dark: #050505;
  --qode-dark-soft: #111111;
  --qode-text: #747474;
  --qode-text-strong: #2f2f2f;
  --qode-line: #e7e7e7;
  --qode-bg: #f7f7f9;
  --qode-bg-soft: #f2f3f7;
  --qode-white: #ffffff;

  --ff-heading: "Syne", sans-serif;
  --ff-body: "Heebo", sans-serif;
  --ff-sub: "Archivo", sans-serif;

  --grid-max: 1700px;
  --grid-gutter: 56px;
  --header-h: 150px;
  --header-mobile-h: 74px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--qode-cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

body {
  font-family: var(--ff-body);
  color: var(--qode-text);
  background: var(--qode-white);
  overflow-x: hidden;
  line-height: 1.8;
  cursor: none;
}

a, button, input, textarea, select, label { cursor: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; cursor: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--qode-dark);
  line-height: 1.05;
  font-weight: 600;
}

.qodef-content-grid {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding-left: var(--grid-gutter);
  padding-right: var(--grid-gutter);
}

/* Section subtitle and title */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sub);
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin-bottom: 16px;
}
.section-subtitle::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--qode-main-color);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  max-width: 60ch;
}

/* Shared gradient — section / card titles. Pages may extend this list with
   page-specific selectors via additional CSS. */
.section-title,
.contact-col-title,
.testimonial-card strong {
  background-image: linear-gradient(135deg, #1b1b1b 0%, #1b1b1b 45%, var(--qode-cyan) 70%, #b784e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: right;
}

.section-intro {
  max-width: 62ch;
  font-size: 1rem;
  margin-top: 20px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-title,
.section-head.center .section-intro {
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-title { max-width: 22ch; }
.section-head.center .section-intro { max-width: 66ch; }

/* Buttons */
.qodef-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--ff-sub);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.qodef-btn:hover { transform: translateY(-2px); }
.qodef-btn.is-loading,
.qodef-btn[disabled] {
  opacity: 0.7;
  pointer-events: none;
  transform: none;
}
.qodef-btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.qodef-btn--filled {
  background: var(--qode-deon-fill-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 28px rgba(88, 182, 224, 0.2);
}
.qodef-btn--filled:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--qode-dark);
  border-color: #c9b4ef;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
}
.qodef-btn--outlined {
  border-color: transparent;
  color: var(--qode-dark);
  background: linear-gradient(#fff, #fff) padding-box, var(--qode-deon-border-gradient) border-box;
}
.qodef-btn--outlined:hover {
  background: var(--qode-deon-fill-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 28px rgba(88, 182, 224, 0.2);
}
.qodef-btn--dark {
  background: var(--qode-dark);
  color: #fff;
  border-color: var(--qode-dark);
}
.qodef-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* Custom cursor + frame lines (desktop only — hidden on mobile) */
.qodef-cursor-dot,
.qodef-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
}
.qodef-cursor-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--qode-logo-blue);
}
.qodef-cursor-ring {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(22, 65, 125, 0.45);
  border-radius: 50%;
  transition: width 0.2s var(--ease), height 0.2s var(--ease), border-color 0.2s var(--ease);
}
.qodef-cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: rgba(22, 65, 125, 0.75);
}

#qodef-left-frame-line,
#qodef-right-frame-line {
  position: fixed;
  top: 0;
  width: 1px;
  height: 100vh;
  z-index: 50;
}
#qodef-left-frame-line { left: 40px; background: var(--qode-deon-fill-gradient); }
#qodef-right-frame-line { right: 0; background: rgba(0, 0, 0, 0.08); }

/* Header — desktop, sticky, mobile */
#qodef-page-wrapper { position: relative; }

#qodef-page-header {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  height: var(--header-h);
  background-color: rgba(255, 255, 255, 0);
  z-index: 100;
}

.qodef-header-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  background: #fff;
  box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}
.qodef-header-sticky.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.qodef-header-sticky-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 73px;
}
.qodef-header-sticky .qodef-header-logo-link img { max-height: 38px; }

#qodef-page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 73px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

#qodef-page-header .qodef-header-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
#qodef-page-header .qodef-header-logo-link img {
  display: block;
  margin: auto 0;
  width: auto;
  max-height: 44px;
  transition: opacity .3s ease;
}

.qodef-header-navigation { height: 100%; }
.qodef-header-navigation ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex;
  height: 100%;
}
.qodef-header-navigation ul li {
  position: relative;
  margin: 0 22px;
  height: 100%;
}
.qodef-header-navigation ul li:first-child { margin-left: 0; }
.qodef-header-navigation ul li:last-child { margin-right: 0; }

.qodef-header-navigation > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--ff-sub);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.23em;
  color: #1b1b1b;
  text-decoration: none;
}
.qodef-header-navigation > ul > li > a > span {
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position .4s ease;
}
.qodef-header-navigation > ul > li > a:hover > span,
.qodef-header-navigation > ul > li.current-menu-item > a > span {
  background-position: right;
}

#qodef-page-outer { margin-top: calc(-1 * var(--header-h)); }

#qodef-page-mobile-header {
  display: none;
  position: relative;
  height: var(--header-mobile-h);
  z-index: 100;
  background: #fff;
}
#qodef-page-mobile-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 7%;
}
.qodef-mobile-header-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-mobile-h);
  max-height: 100%;
}
.qodef-mobile-header-logo-link img {
  display: block;
  margin: auto 0;
  width: auto;
  max-height: 100%;
  max-width: 150px;
}

.qodef-opener-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: none;
}
.qodef-opener-icon .qodef-m-icon { position: relative; visibility: visible; }
.qodef-opener-icon .qodef-m-icon.qodef--close {
  position: absolute;
  top: 0; left: 0;
  visibility: hidden;
}
.qodef-opener-icon.qodef-source--svg-path span { position: relative; }
.qodef-opener-icon.qodef-source--svg-path span > * { vertical-align: middle; }
.qodef-opener-icon.qodef-source--svg-path span path,
.qodef-opener-icon.qodef-source--svg-path span > * { fill: #000; }
.qodef-opener-icon.qodef-source--svg-path.qodef--opened .qodef-m-icon.qodef--open { visibility: hidden; }
.qodef-opener-icon.qodef-source--svg-path.qodef--opened .qodef-m-icon.qodef--close { visibility: visible; }
.qodef-opener-icon.qodef-source--svg-path svg.qodef-open-lines { width: 41px; height: 12px; }
.qodef-opener-icon.qodef-source--svg-path svg.qodef-open-lines line {
  fill: none; stroke: #000; stroke-miterlimit: 10;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .7s ease-out;
}
.qodef-opener-icon.qodef-source--svg-path svg.qodef-open-lines line:nth-child(1) { stroke-dasharray: 40; }
.qodef-opener-icon.qodef-source--svg-path svg.qodef-open-lines line:nth-child(2) { stroke-dasharray: 25; transition-delay: .15s; }
.qodef-opener-icon.qodef-source--svg-path svg.qodef-close-lines { width: 31px; height: 31px; }
.qodef-opener-icon.qodef-source--svg-path svg.qodef-close-lines line {
  fill: none; stroke: #000; stroke-miterlimit: 10;
  stroke-dasharray: 40; stroke-dashoffset: 0;
  transition: stroke-dashoffset .7s ease-out;
}
.qodef-opener-icon.qodef-source--svg-path svg.qodef-close-lines line:nth-child(2) { transition-delay: .15s; }
.qodef-opener-icon.qodef-source--svg-path:hover svg.qodef-open-lines line:nth-child(1) { stroke-dashoffset: 80; }
.qodef-opener-icon.qodef-source--svg-path:hover svg.qodef-open-lines line:nth-child(2) { stroke-dashoffset: 50; }
.qodef-opener-icon.qodef-source--svg-path:hover svg.qodef-close-lines line { stroke-dashoffset: 80; }

#qodef-page-mobile-header .qodef-mobile-header-opener {
  font-size: 20px;
  margin-left: 20px;
  color: #000;
}
#qodef-page-mobile-header .qodef-mobile-header-opener svg { display: block; height: auto; }
#qodef-page-mobile-header .qodef-mobile-header-opener.qodef--opened {
  color: var(--qode-logo-blue);
}
#qodef-page-mobile-header .qodef-mobile-header-opener.qodef--opened .qodef-m-icon { visibility: hidden; }
#qodef-page-mobile-header .qodef-mobile-header-opener.qodef--opened .qodef-m-icon.qodef--close { visibility: visible; }

#qodef-mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-mobile-h));
  background: #fff;
  border-bottom: 1px solid var(--qode-line);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;
}
#qodef-mobile-nav.open { display: block; }
#qodef-mobile-nav ul {
  margin: 0 auto;
  padding: 18px 0 34px;
  list-style: none;
}
#qodef-mobile-nav ul li { position: relative; }
#qodef-mobile-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  font-family: var(--ff-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--qode-dark);
  transition: color var(--transition);
}
#qodef-mobile-nav ul li a:hover,
#qodef-mobile-nav ul li.qodef--active a { color: var(--qode-main-color); }

/* Enroll button used in headers */
.nav-enroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  font-family: var(--ff-sub);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: var(--qode-deon-fill-gradient);
  color: #fff;
  cursor: none;
  white-space: nowrap;
  margin-left: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(88, 182, 224, 0.22);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}
.nav-enroll-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--qode-dark);
  border-color: #c9b4ef;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.qodef-header-sticky .nav-enroll-btn,
#qodef-page-mobile-header .nav-enroll-btn {
  min-height: 34px;
  padding: 0 18px;
  font-size: 0.6rem;
}

/* Main spacing */
.qodef-main section {
  padding: 132px 0;
  position: relative;
}

/* FAQ tabs / accordion */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.faq-tab {
  border: 1px solid var(--qode-line);
  background: #fff;
  padding: 14px 18px;
  font-family: var(--ff-sub);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--qode-dark);
}
.faq-tab.active {
  background-image: linear-gradient(#fff, #fff), var(--qode-deon-fill-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  color: var(--qode-logo-blue);
}
.faq-panel { display: none; border-top: 1px solid var(--qode-line); }
.faq-panel.active { display: block; }
.faq-item { border-bottom: 1px solid var(--qode-line); }
.faq-question {
  width: 100%;
  border: none;
  background: none;
  padding: 20px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--qode-dark);
}
.faq-question i {
  transition: transform var(--transition), color var(--transition);
  color: var(--qode-cyan);
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; max-width: 68ch; }
.faq-item.open .faq-answer { display: block; }

/* Testimonials swiper */
.testimonials-swiper-wrap { position: relative; padding: 0 80px; }
.testimonials-swiper { padding-bottom: 0 !important; }
.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide { height: auto; }
.testimonials-prev,
.testimonials-next {
  position: absolute;
  top: calc(50% - 28px);
  background: none;
  border: none;
  padding: 0;
  color: #000;
  display: flex;
  align-items: center;
  z-index: 10;
  transition: color 0.35s ease;
}
.testimonials-prev { left: 0; }
.testimonials-next { right: 0; }
.testimonials-prev svg,
.testimonials-next svg { display: block; width: 62px; height: 62px; }
.testimonials-arrow-circle { transition: stroke 0.35s ease; }
.testimonials-arrow-chevron {
  transition: transform 0.35s ease;
  transform-origin: center;
}
.testimonials-prev:hover .testimonials-arrow-chevron { transform: translateX(-3px); }
.testimonials-next:hover .testimonials-arrow-chevron { transform: translateX(3px); }

.testimonial-card {
  height: 100%;
  border: 1px solid var(--qode-line);
  background: #fff;
  padding: 36px;
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 4.2rem;
  color: rgba(183, 132, 229, 0.18);
  line-height: 1;
}
.rating { display: flex; gap: 6px; color: #f4b400; margin-bottom: 18px; }
.testimonial-card p { margin-bottom: 26px; }
.testimonial-card strong {
  display: block;
  font-family: var(--ff-heading);
  color: var(--qode-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-family: var(--ff-sub);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8b8b8b;
}

/* Get In Touch (3-column contact section) */
.contact-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
}
.contact-col {
  background: #fff;
  border: 1px solid var(--qode-line);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-col-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--qode-line);
}
.contact-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--qode-deon-fill-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.contact-col-title {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--qode-dark);
  margin: 0;
}
.contact-col-sub { font-size: 0.85rem; color: var(--qode-text); margin: 0; line-height: 1.5; }
.contact-action-list { display: flex; flex-direction: column; gap: 14px; }
.contact-action-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--qode-line);
  background: var(--qode-bg-light);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-action-item:hover {
  border-color: var(--qode-logo-blue);
  box-shadow: 0 4px 16px rgba(22, 65, 125, 0.10);
}
.contact-action-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--qode-deon-fill-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}
.contact-action-item strong {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  color: var(--qode-dark);
  display: block;
  margin-bottom: 3px;
}
.contact-action-item p { font-size: 0.8rem; color: var(--qode-text); margin: 0; line-height: 1.4; }
.contact-col-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--qode-line);
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--qode-text);
}
.contact-info-row i {
  color: var(--qode-logo-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Forms */
.contact-form { border: 0; padding: 0; background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 8px;
}
.form-group label {
  font-family: var(--ff-sub);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--qode-deon-border-gradient) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--qode-dark);
  min-height: 50px;
  padding: 12px 18px;
  outline: none;
  font-size: 0.9rem;
  transition: box-shadow var(--transition), color var(--transition);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--qode-deon-border-gradient) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #9f9f9f;
  padding-right: 58px;
}
.form-group:has(select) { position: relative; }
.form-group:has(select)::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 8px;
  height: 8px;
  border-right: 1.7px solid #9f9f9f;
  border-bottom: 1.7px solid #9f9f9f;
  transform: rotate(45deg);
  pointer-events: none;
  transition: border-color var(--transition);
}
.form-group:has(select:focus)::after { border-color: var(--qode-dark); }
.form-group select:valid { color: var(--qode-dark); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9f9f9f; opacity: 1; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: 0 0 0 1px rgba(87, 184, 224, 0.18), 0 12px 24px rgba(87, 184, 224, 0.08);
}
.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder { color: var(--qode-dark); }
.form-group select:focus { color: var(--qode-dark); }
.form-group textarea { resize: vertical; min-height: 96px; }

.captcha-box {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(180px, 0.58fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 2px;
}
.captcha-chip {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--qode-deon-border-gradient) border-box;
  border: 1px solid transparent;
  color: var(--qode-dark);
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.captcha-answer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-message {
  margin-top: 16px;
  font-family: var(--ff-sub);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qode-green);
  display: none;
}

/* Footer */
#qodef-page-footer {
  background: #1a0f2e;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--ff-body);
  border-top: 1px solid rgba(183, 132, 229, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  gap: 44px;
  padding: 100px 0 56px;
  position: relative;
  align-items: start;
}
.footer-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--qode-deon-fill-gradient);
  opacity: 0.5;
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-mark img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-col p {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col h5 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0em;
  text-transform: none;
  color: var(--qode-cyan);
  margin-bottom: 22px;
  padding-bottom: 0;
  padding-left: 12px;
  border-bottom: none;
  border-left: 2px solid var(--qode-cyan);
  line-height: 1.2;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col--contact ul { gap: 16px; }
.footer-col a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col--contact a {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
}
.footer-col--contact i {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.68);
}
.footer-col--contact__address {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
}
.footer-col a:hover {
  background: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(183, 132, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-text-fill-color: unset;
  background: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--qode-main-color);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: var(--qode-main-color);
}
.footer-social i { width: 10px; height: 10px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  padding: 22px 0;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.28);
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.footer-bottom a {
  font-family: var(--ff-body);
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  -webkit-text-fill-color: unset;
  background: none;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
}

/* Back-to-top */
#qodef-back-to-top {
  position: fixed;
  right: 30px;
  bottom: 120px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border: none;
  background: none;
  padding: 0;
  cursor: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease, visibility 0s 0.3s, bottom 0.3s ease;
}
#qodef-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}
#qodef-back-to-top .line {
  width: 1px;
  height: 64px;
  background: var(--qode-deon-fill-gradient);
  display: block;
  transition: height 0.3s ease;
}
#qodef-back-to-top .label {
  font-family: var(--ff-sub);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  background-image: var(--qode-deon-fill-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
#qodef-back-to-top:hover { bottom: 100px; }
#qodef-back-to-top:hover .line { height: 0; }

/* Swiper pagination */
.swiper-pagination-bullet {
  background: var(--qode-dark) !important;
  opacity: 0.24 !important;
}
.swiper-pagination-bullet-active { opacity: 1 !important; }

/* Shared responsive rules */
@media (max-width: 1240px) {
  :root { --grid-gutter: 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: 70px 0 44px;
  }
  .footer-col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --header-mobile-h: 60px; }
  body { cursor: auto; }
  button, input, textarea, select { cursor: auto; }
  .qodef-cursor-dot,
  .qodef-cursor-ring,
  #qodef-left-frame-line,
  #qodef-right-frame-line,
  #qodef-back-to-top {
    display: none !important;
  }
  #qodef-page-header,
  .qodef-header-sticky { display: none; }
  #qodef-page-mobile-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-mobile-h);
    background: #fff;
    box-shadow: none;
  }
  #qodef-page-mobile-header-inner {
    height: var(--header-mobile-h);
    padding: 0 24px;
  }
  .qodef-mobile-header-logo-link { height: var(--header-mobile-h); }
  .qodef-mobile-header-logo-link img {
    max-width: 150px;
    max-height: 40px;
    width: auto;
    height: auto;
  }
  #qodef-page-outer { margin-top: 0; }
  .contact-three-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --grid-gutter: 22px; }
  .qodef-main section { padding: 92px 0; }
  .testimonials-prev,
  .testimonials-next { display: none; }
  .testimonials-swiper-wrap { padding: 0; }
  .form-row,
  .captcha-box { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: auto; }
}
