/* ===== MYE TECH — MAIN STYLESHEET ===== */
/* All classes prefixed with mye- */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=JetBrains+Mono:wght@300;400&display=swap');

:root {
  --mye-navy:       #0a0f1e;
  --mye-deep:       #0d1530;
  --mye-blue:       #1a3a8f;
  --mye-mid:        #2d5be3;
  --mye-accent:     #4f7fff;
  --mye-violet:     #6e4fce;
  --mye-lavender:   #a78bfa;
  --mye-soft:       #e8eeff;
  --mye-white:      #f8f9ff;
  --mye-offwhite:   #eef0f8;
  --mye-grey:       #8899bb;
  --mye-text:       #1c2340;
  --mye-muted:      #556080;
  --mye-border:     rgba(30,60,140,0.12);
  --mye-glow:       rgba(79,127,255,0.18);
  --mye-shadow:     0 8px 40px rgba(10,20,60,0.10);
  --mye-shadow-lg:  0 20px 80px rgba(10,20,60,0.18);
  --mye-radius:     14px;
  --mye-radius-lg:  24px;
  --font-head:      'Syne', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--mye-text);
  background: var(--mye-white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mye-navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--mye-muted); font-weight: 400; }
a { color: var(--mye-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--mye-accent); }

.mye-mono { font-family: var(--font-mono); font-size: 0.82em; color: var(--mye-grey); }
.mye-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mye-accent);
  font-weight: 400;
}
.mye-text-white { color: #fff !important; }
.mye-text-muted { color: var(--mye-grey) !important; }

/* ===== LAYOUT ===== */
.mye-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.mye-container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.mye-section { padding: 5rem 0; }
.mye-section-lg { padding: 7rem 0; }

/* ===== NAVBAR ===== */
.mye-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}
.mye-navbar.mye-scrolled {
  background: rgba(10,15,30,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.mye-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mye-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mye-logo-dot { color: var(--mye-accent); }
.mye-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.mye-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.mye-nav-links a:hover { color: #fff; }
.mye-nav-cta {
  background: var(--mye-accent);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.mye-nav-cta:hover {
  background: var(--mye-mid) !important;
  box-shadow: 0 0 20px var(--mye-glow);
}
.mye-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mye-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.mye-hero {
  min-height: 100vh;
  background: var(--mye-navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mye-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mye-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,127,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,127,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.mye-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.mye-hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,127,255,0.22) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.mye-hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(110,79,206,0.18) 0%, transparent 70%);
  bottom: 50px; left: 10%;
}
.mye-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}
.mye-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(79,127,255,0.12);
  border: 1px solid rgba(79,127,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.mye-hero-eyebrow span { font-family: var(--font-mono); font-size: 0.75rem; color: var(--mye-accent); letter-spacing: 0.12em; }
.mye-hero-dot { width: 6px; height: 6px; background: var(--mye-accent); border-radius: 50%; animation: mye-pulse 2s infinite; }
.mye-hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.mye-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--mye-accent), var(--mye-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mye-hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.mye-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.mye-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mye-dashboard-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mye-radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  max-width: 460px;
  width: 100%;
}
.mye-dash-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.mye-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.mye-dash-dot:nth-child(1) { background: #ff5f57; }
.mye-dash-dot:nth-child(2) { background: #febc2e; }
.mye-dash-dot:nth-child(3) { background: #28c840; }
.mye-dash-title { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-left: auto; }
.mye-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.mye-dash-metric {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
}
.mye-dash-metric-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.mye-dash-metric-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  margin-top: 2px;
}
.mye-dash-chart {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 1rem;
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.mye-dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--mye-mid), var(--mye-accent));
  transition: height 1s ease;
}
.mye-dash-activity {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mye-dash-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.mye-dash-item-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mye-accent);
  flex-shrink: 0;
}
.mye-dash-item-dot.violet { background: var(--mye-lavender); }
.mye-dash-item-dot.green { background: #4ade80; }

/* ===== BUTTONS ===== */
.mye-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.mye-btn-primary {
  background: var(--mye-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79,127,255,0.3);
}
.mye-btn-primary:hover {
  background: var(--mye-mid);
  box-shadow: 0 6px 28px rgba(79,127,255,0.45);
  transform: translateY(-2px);
  color: #fff;
}
.mye-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.mye-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.mye-btn-dark {
  background: var(--mye-navy);
  color: #fff;
  box-shadow: var(--mye-shadow);
}
.mye-btn-dark:hover {
  background: var(--mye-deep);
  transform: translateY(-2px);
  color: #fff;
}
.mye-btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.mye-btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ===== SECTION HEADERS ===== */
.mye-section-header { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.mye-section-header.left { text-align: left; margin-left: 0; }
.mye-section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mye-accent);
  margin-bottom: 0.8rem;
  display: block;
}
.mye-section-header h2 { margin-bottom: 1rem; }
.mye-section-header p { font-size: 1.05rem; line-height: 1.7; }

/* ===== CARDS ===== */
.mye-card {
  background: #fff;
  border-radius: var(--mye-radius);
  border: 1px solid var(--mye-border);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--mye-shadow);
}
.mye-card:hover {
  box-shadow: var(--mye-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(79,127,255,0.2);
}
.mye-card-icon {
  width: 52px; height: 52px;
  background: var(--mye-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: var(--mye-mid);
}
.mye-card-dark {
  background: var(--mye-deep);
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}
.mye-card-dark h3, .mye-card-dark h4 { color: #fff; }
.mye-card-dark p { color: rgba(255,255,255,0.55); }
.mye-card-dark .mye-card-icon { background: rgba(79,127,255,0.15); }

/* ===== SERVICES GRID ===== */
.mye-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}
.mye-service-card-ai {
  border-left: 3px solid var(--mye-accent);
  position: relative;
  overflow: hidden;
}
.mye-service-card-ai::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mye-accent), var(--mye-lavender));
  opacity: 0;
  transition: opacity var(--transition);
}
.mye-service-card-ai:hover::before { opacity: 1; }
.mye-service-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--mye-accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ===== STATS SECTION ===== */
.mye-stats-section {
  background: var(--mye-navy);
  position: relative;
  overflow: hidden;
}
.mye-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.mye-stat-item { padding: 1.5rem; }
.mye-stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.mye-stat-number span { color: var(--mye-accent); }
.mye-stat-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ===== QUIZ SECTION ===== */
.mye-quiz-section {
  background: linear-gradient(135deg, var(--mye-navy) 0%, var(--mye-deep) 100%);
  position: relative;
  overflow: hidden;
}
.mye-quiz-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mye-radius-lg);
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}
.mye-quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
}
.mye-quiz-progress-dot {
  height: 4px;
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.mye-quiz-progress-dot.active { background: var(--mye-accent); }
.mye-quiz-step { display: none; }
.mye-quiz-step.active { display: block; }
.mye-quiz-question {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.mye-quiz-hint { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-bottom: 1.8rem; }
.mye-quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.mye-quiz-option {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.mye-quiz-option:hover {
  background: rgba(79,127,255,0.12);
  border-color: var(--mye-accent);
  color: #fff;
}
.mye-quiz-option.selected {
  background: rgba(79,127,255,0.18);
  border-color: var(--mye-accent);
  color: #fff;
}
.mye-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
}
.mye-quiz-counter {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.mye-quiz-result {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.mye-quiz-result.active { display: block; }
.mye-quiz-score-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--mye-accent) var(--score), rgba(255,255,255,0.1) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}
.mye-quiz-score-ring::before {
  content: '';
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--mye-deep);
}
.mye-quiz-score-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}
.mye-quiz-result h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.6rem; }
.mye-quiz-result p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.mye-testimonials-section { background: var(--mye-offwhite); }
.mye-testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.mye-testimonial-card {
  background: #fff;
  border-radius: var(--mye-radius);
  padding: 2rem;
  border: 1px solid var(--mye-border);
  box-shadow: var(--mye-shadow);
  position: relative;
}
.mye-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--mye-soft);
  font-family: Georgia, serif;
  line-height: 1;
}
.mye-testimonial-stars { color: #fbbf24; margin-bottom: 0.8rem; font-size: 0.85rem; }
.mye-testimonial-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; color: var(--mye-muted); }
.mye-testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.mye-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mye-soft);
}
.mye-testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--mye-navy); }
.mye-testimonial-role { font-size: 0.78rem; color: var(--mye-grey); }

/* ===== TEAM ===== */
.mye-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.mye-team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--mye-radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--mye-border);
  transition: all var(--transition);
  box-shadow: var(--mye-shadow);
}
.mye-team-card:hover { transform: translateY(-4px); box-shadow: var(--mye-shadow-lg); }
.mye-team-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--mye-soft);
}
.mye-team-name { font-weight: 700; font-size: 1rem; color: var(--mye-navy); margin-bottom: 0.2rem; }
.mye-team-role { font-size: 0.82rem; color: var(--mye-accent); font-weight: 500; margin-bottom: 0.8rem; }
.mye-team-bio { font-size: 0.85rem; color: var(--mye-muted); line-height: 1.6; }

/* ===== ARTICLES ===== */
.mye-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}
.mye-article-card {
  background: #fff;
  border-radius: var(--mye-radius);
  overflow: hidden;
  border: 1px solid var(--mye-border);
  transition: all var(--transition);
  box-shadow: var(--mye-shadow);
}
.mye-article-card:hover { transform: translateY(-4px); box-shadow: var(--mye-shadow-lg); }
.mye-article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.mye-article-body { padding: 1.5rem; }
.mye-article-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mye-accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.mye-article-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mye-navy);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.mye-article-excerpt { font-size: 0.88rem; color: var(--mye-muted); line-height: 1.6; margin-bottom: 1rem; }
.mye-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--mye-grey);
  font-family: var(--font-mono);
}

/* ===== FAQ ACCORDION ===== */
.mye-faq-list { max-width: 760px; margin: 0 auto; }
.mye-faq-item {
  border-bottom: 1px solid var(--mye-border);
  overflow: hidden;
}
.mye-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--mye-navy);
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.mye-faq-question:hover { color: var(--mye-accent); }
.mye-faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mye-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.8rem;
  color: var(--mye-accent);
}
.mye-faq-item.open .mye-faq-icon {
  background: var(--mye-accent);
  color: #fff;
  transform: rotate(45deg);
}
.mye-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mye-faq-answer-inner { padding-bottom: 1.2rem; color: var(--mye-muted); font-size: 0.94rem; line-height: 1.7; }
.mye-faq-item.open .mye-faq-answer { max-height: 400px; }

/* ===== TABS ===== */
.mye-tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--mye-border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.mye-tab-btn {
  padding: 0.7rem 1.4rem;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mye-muted);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.mye-tab-btn:hover { color: var(--mye-navy); }
.mye-tab-btn.active {
  color: var(--mye-accent);
  border-bottom-color: var(--mye-accent);
}
.mye-tab-panel { display: none; }
.mye-tab-panel.active { display: block; }

/* ===== PROCESS STEPS ===== */
.mye-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.mye-process-step { text-align: center; position: relative; }
.mye-process-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mye-mid), var(--mye-accent));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(79,127,255,0.3);
}
.mye-process-step h4 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.mye-process-step p { font-size: 0.85rem; }

/* ===== IMAGE SECTIONS ===== */
.mye-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mye-split-section.reverse { direction: rtl; }
.mye-split-section.reverse > * { direction: ltr; }
.mye-split-img {
  border-radius: var(--mye-radius-lg);
  overflow: hidden;
  box-shadow: var(--mye-shadow-lg);
}
.mye-split-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.mye-feature-list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.8rem; }
.mye-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--mye-muted);
}
.mye-feature-list li i { color: var(--mye-accent); margin-top: 0.15rem; font-size: 0.85rem; }

/* ===== ETHICAL SECTION ===== */
.mye-ethical-section { background: var(--mye-deep); }
.mye-ethical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.mye-ethical-item {
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--mye-radius);
  transition: all var(--transition);
}
.mye-ethical-item:hover {
  background: rgba(79,127,255,0.06);
  border-color: rgba(79,127,255,0.2);
}
.mye-ethical-icon {
  font-size: 1.5rem;
  color: var(--mye-accent);
  margin-bottom: 1rem;
}
.mye-ethical-item h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1rem; }
.mye-ethical-item p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.6; }

/* ===== CTA SECTION ===== */
.mye-cta-section {
  background: linear-gradient(135deg, var(--mye-navy) 0%, #0e1640 50%, var(--mye-deep) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mye-cta-section h2 { color: #fff; margin-bottom: 1rem; }
.mye-cta-section p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.mye-footer {
  background: #060a14;
  padding: 4rem 0 2rem;
}
.mye-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.mye-footer-brand .mye-logo { font-size: 1.3rem; display: inline-flex; margin-bottom: 1rem; }
.mye-footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; }
.mye-footer-col h5 {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.mye-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.mye-footer-links a { color: rgba(255,255,255,0.35); font-size: 0.88rem; transition: color var(--transition); }
.mye-footer-links a:hover { color: rgba(255,255,255,0.7); }
.mye-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.mye-footer-copy { color: rgba(255,255,255,0.25); font-size: 0.82rem; }
.mye-footer-legal { display: flex; gap: 1.5rem; }
.mye-footer-legal a { color: rgba(255,255,255,0.25); font-size: 0.8rem; transition: color var(--transition); }
.mye-footer-legal a:hover { color: rgba(255,255,255,0.5); }
.mye-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.6rem;
}
.mye-footer-contact-item i { color: var(--mye-accent); font-size: 0.8rem; }

/* ===== COOKIE BANNER ===== */
.mye-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--mye-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mye-radius);
  padding: 1.2rem 1.5rem;
  max-width: 600px;
  width: calc(100% - 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mye-cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.mye-cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.mye-cookie-text a { color: var(--mye-accent); }
.mye-cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.mye-cookie-accept {
  background: var(--mye-accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.mye-cookie-accept:hover { background: var(--mye-mid); }
.mye-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mye-cookie-decline:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }

/* ===== CONTACT FORM ===== */
.mye-form-group { margin-bottom: 1.3rem; }
.mye-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mye-navy);
  margin-bottom: 0.5rem;
}
.mye-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--mye-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--mye-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.mye-form-control:focus {
  border-color: var(--mye-accent);
  box-shadow: 0 0 0 3px rgba(79,127,255,0.12);
}
.mye-form-control.error { border-color: #ef4444; }
.mye-form-error { color: #ef4444; font-size: 0.78rem; margin-top: 0.3rem; display: none; }
.mye-form-error.visible { display: block; }
textarea.mye-form-control { resize: vertical; min-height: 130px; }
.mye-captcha-box {
  background: var(--mye-offwhite);
  border: 1.5px solid var(--mye-border);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mye-captcha-question {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--mye-navy);
  font-weight: 500;
}
.mye-captcha-input {
  width: 80px;
  padding: 0.45rem 0.7rem;
  border: 1.5px solid var(--mye-border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.mye-captcha-input:focus { border-color: var(--mye-accent); }

/* ===== PAGE HERO ===== */
.mye-page-hero {
  background: var(--mye-navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.mye-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,127,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,127,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.mye-page-hero h1 { color: #fff; margin-bottom: 1rem; }
.mye-page-hero p { color: rgba(255,255,255,0.55); max-width: 540px; }
.mye-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.mye-breadcrumb a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.mye-breadcrumb a:hover { color: var(--mye-accent); }
.mye-breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ===== ARTICLE STYLES ===== */
.mye-article-content { max-width: 740px; margin: 0 auto; }
.mye-article-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.mye-article-content h3 { font-size: 1.2rem; margin: 2rem 0 0.8rem; }
.mye-article-content p { margin-bottom: 1.3rem; color: var(--mye-muted); line-height: 1.8; font-size: 1.02rem; }
.mye-article-content ul, .mye-article-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.mye-article-content li { margin-bottom: 0.5rem; color: var(--mye-muted); line-height: 1.7; }
.mye-article-content img { width: 100%; border-radius: var(--mye-radius); margin: 2rem 0; box-shadow: var(--mye-shadow-lg); }
.mye-article-content blockquote {
  border-left: 3px solid var(--mye-accent);
  padding: 1rem 1.5rem;
  background: var(--mye-soft);
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}
.mye-article-content blockquote p { color: var(--mye-navy); font-style: italic; margin: 0; }
.mye-article-header { margin-bottom: 3rem; }
.mye-article-header img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--mye-radius-lg); margin-bottom: 2rem; }
.mye-article-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--mye-grey);
  margin-bottom: 1.5rem;
}
.mye-article-meta-bar span { display: flex; align-items: center; gap: 0.3rem; }

/* ===== LEGAL PAGES ===== */
.mye-legal-content { max-width: 800px; margin: 0 auto; }
.mye-legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.8rem; color: var(--mye-navy); }
.mye-legal-content h3 { font-size: 1.05rem; margin: 1.8rem 0 0.6rem; color: var(--mye-navy); }
.mye-legal-content p { margin-bottom: 1.1rem; color: var(--mye-muted); line-height: 1.75; }
.mye-legal-content ul { margin: 0.8rem 0 1.2rem 1.5rem; }
.mye-legal-content li { margin-bottom: 0.4rem; color: var(--mye-muted); }
.mye-legal-updated {
  background: var(--mye-soft);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--mye-accent);
  margin-bottom: 2rem;
  display: inline-block;
}

/* ===== SERVICES PAGE SPECIFICS ===== */
.mye-service-detail {
  border-radius: var(--mye-radius-lg);
  overflow: hidden;
  border: 1px solid var(--mye-border);
  margin-bottom: 2.5rem;
  box-shadow: var(--mye-shadow);
}
.mye-service-detail-header {
  background: var(--mye-navy);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.mye-service-detail-icon {
  width: 60px; height: 60px;
  background: rgba(79,127,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mye-accent);
  flex-shrink: 0;
}
.mye-service-detail-header h3 { color: #fff; margin-bottom: 0.4rem; }
.mye-service-detail-header p { color: rgba(255,255,255,0.5); font-size: 0.93rem; }
.mye-service-detail-body { padding: 2.5rem; background: #fff; }
.mye-service-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.mye-suitable-box {
  padding: 1.2rem;
  border-radius: 10px;
  font-size: 0.88rem;
}
.mye-suitable-box.green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.mye-suitable-box.green h5 { color: #166534; margin-bottom: 0.6rem; font-size: 0.85rem; }
.mye-suitable-box.green li { color: #166534; }
.mye-suitable-box.red {
  background: #fff7f7;
  border: 1px solid #fecaca;
}
.mye-suitable-box.red h5 { color: #991b1b; margin-bottom: 0.6rem; font-size: 0.85rem; }
.mye-suitable-box.red li { color: #991b1b; }
.mye-suitable-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.mye-suitable-box ul li { display: flex; align-items: flex-start; gap: 0.4rem; }

/* ===== ABOUT PAGE ===== */
.mye-timeline { position: relative; max-width: 680px; margin: 0 auto; }
.mye-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--mye-accent), var(--mye-lavender));
}
.mye-timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.mye-timeline-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mye-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(79,127,255,0.15);
}
.mye-timeline-content { padding-top: 0.6rem; }
.mye-timeline-content h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.mye-timeline-content p { font-size: 0.88rem; }

/* ===== MAP / CONTACT ===== */
.mye-map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--mye-radius-lg);
  overflow: hidden;
  border: 1px solid var(--mye-border);
  box-shadow: var(--mye-shadow);
}
.mye-map-embed iframe { width: 100%; height: 100%; border: none; }
.mye-contact-info-card {
  background: var(--mye-navy);
  border-radius: var(--mye-radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.mye-contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mye-contact-info-item:last-child { border-bottom: none; margin-bottom: 0; }
.mye-contact-icon-box {
  width: 42px; height: 42px;
  background: rgba(79,127,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mye-accent);
  flex-shrink: 0;
}
.mye-contact-info-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-family: var(--font-mono); margin-bottom: 0.2rem; }
.mye-contact-info-value { font-size: 0.92rem; color: #fff; font-weight: 500; }

/* ===== THANK YOU ===== */
.mye-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--mye-navy);
  position: relative;
  overflow: hidden;
}
.mye-thankyou-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mye-radius-lg);
  padding: 4rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.mye-thankyou-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(79,255,127,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #4ade80;
}

/* ===== SCROLL REVEAL ===== */
.mye-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mye-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.mye-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mye-reveal-left.revealed { opacity: 1; transform: translateX(0); }
.mye-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mye-reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ===== SELECTOR TOOL ===== */
.mye-selector-tool {
  background: var(--mye-offwhite);
  border-radius: var(--mye-radius-lg);
  padding: 2.5rem;
}
.mye-selector-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.mye-selector-chip {
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--mye-border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: all var(--transition);
  background: #fff;
  color: var(--mye-text);
  font-family: var(--font-body);
}
.mye-selector-chip:hover { border-color: var(--mye-accent); color: var(--mye-accent); }
.mye-selector-chip.selected { background: var(--mye-accent); color: #fff; border-color: var(--mye-accent); }
.mye-selector-result {
  background: #fff;
  border-radius: var(--mye-radius);
  padding: 1.8rem;
  border: 1px solid var(--mye-border);
  display: none;
}
.mye-selector-result.visible { display: block; }
.mye-selector-result h4 { margin-bottom: 0.8rem; }
.mye-reco-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.mye-reco-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--mye-soft);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
}
.mye-reco-item i { color: var(--mye-accent); }

/* ===== PROGRESS BARS ===== */
.mye-progress-item { margin-bottom: 1.2rem; }
.mye-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--mye-navy);
}
.mye-progress-track {
  height: 8px;
  background: var(--mye-soft);
  border-radius: 4px;
  overflow: hidden;
}
.mye-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mye-mid), var(--mye-accent));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .mye-split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .mye-split-section.reverse { direction: ltr; }
  .mye-footer-grid { grid-template-columns: 1fr 1fr; }
  .mye-service-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mye-nav-links, .mye-nav-cta-wrap { display: none; }
  .mye-hamburger { display: flex; }
  .mye-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px; left: 0; right: 0; bottom: 0;
    background: var(--mye-navy);
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 2rem;
    font-size: 1.2rem;
  }
  .mye-footer-grid { grid-template-columns: 1fr; }
  .mye-footer-bottom { flex-direction: column; text-align: center; }
  .mye-cookie-banner { flex-direction: column; gap: 1rem; }
  .mye-quiz-wrapper { padding: 2rem 1.5rem; }
  .mye-article-header img { height: 250px; }
  .mye-hero-content { padding: 7rem 0 4rem; }
  .mye-dashboard-mock { display: none; }
  .mye-section { padding: 3.5rem 0; }
  .mye-section-lg { padding: 5rem 0; }
}
@media (max-width: 576px) {
  .mye-stats-grid { grid-template-columns: 1fr 1fr; }
  .mye-thankyou-card { padding: 2.5rem 1.5rem; }
}

/* ===== DIVIDERS ===== */
.mye-divider-wave {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.mye-divider-wave svg { display: block; width: 100%; }

/* ===== MISC ===== */
.mye-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.mye-badge-blue { background: rgba(79,127,255,0.1); color: var(--mye-accent); }
.mye-badge-violet { background: rgba(110,79,206,0.1); color: var(--mye-violet); }
.mye-badge-green { background: rgba(74,222,128,0.1); color: #16a34a; }
.mye-gradient-text {
  background: linear-gradient(135deg, var(--mye-accent), var(--mye-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mye-bg-soft { background: var(--mye-offwhite); }
.mye-bg-navy { background: var(--mye-navy); }
.mye-mb-0 { margin-bottom: 0 !important; }
.mye-mt-2 { margin-top: 2rem; }
.mye-mt-3 { margin-top: 3rem; }
.mye-text-center { text-align: center; }


.logo{
  max-width: 90px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}