:root {
  --primary: #3b82f6;
  --secondary: #8b5cf6;
  --accent-yellow: #f59e0b;
  --accent-green: #10b981;
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --white: #ffffff;
  --gradient-main: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 50px rgba(59, 130, 246, 0.15);
  --radius-lg: 24px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography & Utils */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.full-width {
  width: 100%;
  justify-content: center;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("./images/c6d25dac-65d3-4a81-bad1-b6f20b1df352.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-weight: 500;
  color: var(--text-dark);
}

.desktop-nav a:hover {
  color: var(--primary);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-links a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0;
  text-align: center;
  color: var(--text-dark);
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background-image: url("./images/19622.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.hero h1 {
  color: var(--primary);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.15);
  top: -100px;
  right: -100px;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.1);
  bottom: 50px;
  left: -50px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.tag-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--secondary);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

.hero-note i {
  color: var(--accent-green);
  width: 18px;
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  border-radius: 50%;
}

.info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.info span {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
}

.fill {
  height: 100%;
  background: var(--accent-green);
  border-radius: 4px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat span {
  font-size: 0.9rem;
  color: var(--text-gray);
}
.stat strong {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  z-index: 3;
}

.badge-1 {
  bottom: -20px;
  left: -20px;
}
.badge-1 i {
  color: var(--primary);
}

/* Sections Common */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Grid Section */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}

.grid-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  color: var(--white);
  width: 28px;
  height: 28px;
}
.color-blue {
  background: var(--primary);
}
.color-purple {
  background: var(--secondary);
}
.color-green {
  background: var(--accent-green);
}

/* Split Section */
.split-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-visual,
.split-content {
  flex: 1;
}

.skill-stack {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.skill-row {
  margin-bottom: 20px;
}
.skill-row span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.line {
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
}
.line-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 5px;
}
.w-90 {
  width: 90%;
}
.w-75 {
  width: 75%;
}
.w-85 {
  width: 85%;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}

/* Cards Scroller */
.cards-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.scenario-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: 0.3s;
}

.scenario-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.scenario-card.highlight {
  background: var(--text-dark);
  color: var(--white);
}

.scenario-card.highlight p {
  color: rgba(255, 255, 255, 0.7);
}
.scenario-card.highlight .level-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.level-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* Steps */
.section-steps {
  background: var(--white);
}
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.step-item {
  position: relative;
}
.step-item::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: #e2e8f0;
}
.step-item:last-child::after {
  display: none;
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  border: 2px solid var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Info Block */
.section-info-block {
  padding: 40px 0;
}
.info-box {
  background: var(--gradient-main);
  color: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.info-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 20px;
}

/* List */
.section-list h2 {
  margin-bottom: 40px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.benefits-list i {
  color: var(--accent-green);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.faq-header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.faq-content p {
  padding-bottom: 25px;
  margin: 0;
}
.faq-item.active .faq-content {
  max-height: 200px;
}
.faq-item.active .faq-header i {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* Contact Form */
.contact-section {
  padding-bottom: 100px;
}
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-subtitle {
  text-align: center;
  margin-bottom: 30px;
}
.form-wrapper h2 {
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}
.form-group input:focus {
  border-color: var(--primary);
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 25px;
}
.checkbox-group input {
  margin-top: 5px;
}
.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.4;
}
.checkbox-group label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--white);
  padding: 60px 0 30px;
  border-top: 1px solid #000000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.FAQ-title {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-gray);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary);
}
.copyright {
  margin-top: 20px;
  font-size: 0.85rem;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  max-width: 350px;
  z-index: 5000;
  display: none;
}
.cookie-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    width: 100%;
  }
  .split-container {
    flex-direction: column-reverse;
  }
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: block;
  }
  .grid-layout,
  .cards-scroller,
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
  .step-item::after {
    display: none;
  }
  .step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.pages {
  padding: 120px 0;
}

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

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

.text-wrapper {
  background: #dac8e2;
  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;
}

@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: 24px;
    margin-top: 30px;
  }
}

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

.margin {
  margin: 120px 0 50px;
}
