/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-bg: #0a0a0a;
  --dark-light: #141414;
  --blue-primary: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-5: rgba(255, 255, 255, 0.05);
  --gray-100: #f5f5f5;
  --gray-600: #666666;
  --gray-700: #374151;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--dark-bg);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  font-weight: 600;
  font-size: 18px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--white-70);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--white);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  min-width: 192px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white-70);
  transition: all 0.2s;
}

.dropdown-link:hover {
  color: var(--white);
  background: var(--white-5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost {
  background: transparent;
  color: var(--white-70);
}

.btn-ghost:hover {
  color: var(--white);
  background: var(--white-5);
}

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

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--white-10);
  color: var(--white);
}

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

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white-5);
  border-radius: 8px;
  font-size: 14px;
  color: var(--white-70);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.lang-toggle:hover {
  background: var(--white-10);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding-top: 112px;
  padding-bottom: 48px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.05), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 896px;
  margin: 0 auto 40px;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--white-70);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 896px;
  margin: 0 auto;
}

.card {
  display: block;
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--white-5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: rgba(37, 99, 235, 0.2);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white-60);
  transition: color 0.3s;
}

.card:hover .card-icon svg {
  color: var(--blue-primary);
}

.card-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* ===== Features Section ===== */
.features {
  background: var(--white);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.features-title {
  position: sticky;
  top: 128px;
}

.features-pre {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.features-heading {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-bg);
  line-height: 1.2;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-primary);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Clients Section ===== */
.clients {
  background: var(--white);
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-bg);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.client-tag {
  padding: 10px 20px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

/* Marquee */
.marquee-container {
  position: relative;
  overflow: hidden;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 20px;
  font-weight: 600;
  color: #d1d5db;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CTA Section ===== */
.cta {
  background: var(--white);
  padding: 40px 0 56px;
}

.cta-box {
  background: var(--blue-primary);
  border-radius: 24px;
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.cta-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

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

.btn-white:hover {
  background: var(--gray-100);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--white-10);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-text {
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 16px;
}

.footer-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-input {
  flex: 1;
  padding: 10px 16px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
}

.footer-input::placeholder {
  color: var(--white-40);
}

.footer-input:focus {
  outline: none;
  border-color: var(--blue-primary);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white-5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--white-10);
  color: var(--white);
}

.footer-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--white-40);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white-60);
}

.footer-copyright {
  font-size: 12px;
  color: var(--white-40);
}

/* ===== Page Header ===== */
.page-header {
  padding-top: 112px;
  padding-bottom: 48px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.1), transparent);
  pointer-events: none;
}

.page-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--white-70);
  text-align: center;
  margin-bottom: 8px;
}

.page-desc {
  font-size: 16px;
  color: var(--white-50);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.page-image {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.page-image img {
  max-height: 256px;
  width: auto;
}

/* ===== Feature Cards ===== */
.feature-cards {
  padding: 48px 0;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-primary);
}

.feature-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
}

/* ===== CTA Buttons ===== */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 32px 0 48px;
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  padding: 32px 0;
}

.stat-card {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--white-60);
}

/* ===== Value Cards ===== */
.value-cards {
  padding: 48px 0;
}

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== Benefits ===== */
.benefits-box {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 32px;
}

.benefits-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-70);
}

.benefit-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Job Listings ===== */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
}

.job-card {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.job-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.job-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .job-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--white-60);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0;
}

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

.form-box {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: var(--white-70);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-40);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--white-70);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue-primary);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.office-card {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 16px;
}

.office-city {
  font-weight: 500;
  margin-bottom: 4px;
}

.office-address {
  font-size: 14px;
  color: var(--white-60);
}

/* ===== Blog ===== */
.blog-featured {
  margin-bottom: 48px;
}

.blog-card {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.blog-card-content {
  padding: 32px;
}

.blog-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-tag {
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-primary);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

.blog-tag-outline {
  padding: 4px 12px;
  color: var(--white-50);
  font-size: 14px;
}

.blog-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-card-excerpt {
  font-size: 16px;
  color: var(--white-60);
  margin-bottom: 24px;
  max-width: 640px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--white-50);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-grid .blog-card-content {
  padding: 24px;
}

.blog-grid .blog-card-title {
  font-size: 18px;
}

/* ===== Events ===== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.event-card {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.event-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.event-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .event-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.event-type {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-primary);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.event-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-desc {
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--white-50);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Certifications ===== */
.cert-box {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 32px;
}

.cert-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

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

.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white-5);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-80);
}

/* ===== Dialog ===== */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.dialog-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dialog {
  background: var(--dark-light);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.dialog-overlay.active .dialog {
  transform: scale(1);
}

.dialog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.dialog-desc {
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 24px;
}

.dialog-close {
  width: 100%;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--dark-bg);
  border-left: 1px solid var(--white-10);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--white-10);
}

.mobile-menu-title {
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav {
  padding: 16px;
}

.mobile-nav-item {
  margin-bottom: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--white-70);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--white);
}

.mobile-dropdown {
  padding-left: 16px;
}

.mobile-dropdown-link {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.2s;
}

.mobile-dropdown-link:hover {
  color: var(--white);
}

.mobile-menu-footer {
  padding: 16px;
  border-top: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-menu,
  .nav-actions .btn,
  .nav-actions .lang-toggle {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-title {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .features-heading,
  .section-title {
    font-size: 32px;
  }

  .cta-box {
    padding: 32px 24px;
  }

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

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

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

  .page-title {
    font-size: 36px;
  }

  .feature-cards-grid,
  .value-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Utilities ===== */
.hidden {
  display: none !important;
}

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

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}
