:root {
  --ec-bg: #020816;
  --ec-bg-alt: #050d1f;
  --ec-surface: #071427;
  --ec-surface-soft: #091a31;
  --ec-surface-alt: #041021;
  --ec-primary: #00c36e;
  --ec-primary-soft: rgba(0, 195, 110, 0.15);
  --ec-primary-strong: #0cff8a;
  --ec-accent: #32e0ff;
  --ec-text: #f7fafc;
  --ec-text-soft: #a0aec0;
  --ec-border-subtle: rgba(255, 255, 255, 0.06);
  --ec-radius-lg: 20px;
  --ec-radius-xl: 28px;
  --ec-radius-pill: 999px;
  --ec-shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.65);
  --ec-shadow-subtle: 0 16px 40px rgba(0, 0, 0, 0.5);
  --ec-shadow-outline: 0 0 0 1px rgba(255, 255, 255, 0.02);
  --ec-gradient-main: radial-gradient(
      circle at top left,
      rgba(50, 224, 255, 0.28),
      transparent 55%
    ),
    radial-gradient(
      circle at 60% 10%,
      rgba(12, 255, 138, 0.24),
      transparent 52%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(0, 195, 110, 0.45),
      transparent 55%
    ),
    radial-gradient(
      circle at 0% 85%,
      rgba(3, 159, 255, 0.32),
      transparent 60%
    );
  --ec-transition-fast: 160ms ease-out;
  --ec-transition-med: 220ms ease;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(
    circle at top,
    rgba(50, 224, 255, 0.18),
    transparent 54%
  );
  background-color: var(--ec-bg);
  color: var(--ec-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.nowrap {
  white-space: nowrap;
}

.ec-container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.ec-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(2, 8, 22, 0.92),
      rgba(2, 8, 22, 0.7)
    )
    border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ec-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.ec-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ec-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: conic-gradient(
    from 220deg,
    #00ff88,
    #32e0ff,
    #00ff88,
    #32e0ff
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #020617;
  box-shadow: 0 12px 30px rgba(12, 255, 138, 0.5);
}

.ec-logo-mark-small {
  width: 28px;
  height: 28px;
  font-size: 13px;
}

.ec-logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ec-logo-title {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.ec-logo-subtitle {
  font-size: 11px;
  color: var(--ec-text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ec-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.ec-nav-list a {
  color: var(--ec-text-soft);
  padding-block: 6px;
  transition: color var(--ec-transition-fast);
}

.ec-nav-list a:hover {
  color: var(--ec-text);
}

.ec-nav-cta {
  padding: 7px 16px;
  border-radius: var(--ec-radius-pill);
  background: linear-gradient(120deg, #0cff8a, #32e0ff);
  color: #020617 !important;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(12, 255, 138, 0.45);
}

.ec-nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.ec-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 160ms ease, opacity 140ms ease;
}

.ec-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.ec-nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.ec-hero {
  position: relative;
  padding: 40px 0 72px;
  overflow: hidden;
}

.ec-hero-gradient {
  position: absolute;
  inset: 0;
  background-image: var(--ec-gradient-main);
  opacity: 0.9;
  pointer-events: none;
}

.ec-hero-overlay-shape {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.9;
  pointer-events: none;
}

.ec-hero-overlay-left {
  left: -140px;
  bottom: -120px;
  background: radial-gradient(
    circle,
    rgba(12, 255, 138, 0.28),
    transparent 60%
  );
}

.ec-hero-overlay-right {
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(50, 224, 255, 0.32), transparent 60%);
}

.ec-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.ec-hero-content {
  max-width: 560px;
}

.ec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--ec-shadow-outline);
  font-size: 12px;
  color: var(--ec-text-soft);
  margin-bottom: 14px;
}

.ec-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.35);
}

.ec-hero h1 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.ec-hero-highlight {
  color: var(--ec-primary-strong);
  text-shadow: 0 0 30px rgba(12, 255, 138, 0.55);
}

.ec-hero-subtitle {
  margin: 0 0 18px;
  color: var(--ec-text-soft);
  font-size: 15px;
}

.ec-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #e2e8f0;
}

.ec-hero-list li::before {
  content: "✔";
  margin-right: 8px;
  color: var(--ec-primary);
}

.ec-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.ec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--ec-radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--ec-transition-fast),
    box-shadow var(--ec-transition-med), background var(--ec-transition-fast),
    color var(--ec-transition-fast), border-color var(--ec-transition-fast),
    opacity var(--ec-transition-fast);
  white-space: nowrap;
}

.ec-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--ec-transition-fast);
}

.ec-btn:hover::after {
  opacity: 1;
}

.ec-btn-label {
  position: relative;
  z-index: 1;
}

.ec-btn-primary {
  background: linear-gradient(120deg, #0cff8a, #32e0ff);
  color: #020617;
  box-shadow: 0 18px 40px rgba(12, 255, 138, 0.6),
    0 2px 0 rgba(15, 23, 42, 0.8);
}

.ec-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(12, 255, 138, 0.7);
}

.ec-btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  box-shadow: var(--ec-shadow-outline);
}

.ec-btn-outline:hover {
  border-color: rgba(226, 232, 240, 0.9);
  transform: translateY(-1px);
}

.ec-btn-light {
  background: rgba(226, 232, 240, 0.95);
  color: #020617;
}

.ec-btn-light:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.ec-btn-dark {
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.ec-btn-dark:hover {
  border-color: rgba(226, 232, 240, 0.9);
}

.ec-btn-large {
  padding: 11px 26px;
  font-size: 15px;
}

.ec-hero-note {
  font-size: 13px;
  color: #cbd5f5;
  opacity: 0.9;
}

.ec-hero-media {
  display: flex;
  justify-content: flex-end;
}

.ec-hero-card {
  position: relative;
  width: min(380px, 100%);
  padding: 14px 14px 18px;
  border-radius: 26px;
  background: radial-gradient(
      circle at 0 0,
      rgba(50, 224, 255, 0.3),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(12, 255, 138, 0.32),
      transparent 60%
    ),
    linear-gradient(145deg, #020617, #020617);
  box-shadow: var(--ec-shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.ec-hero-image {
  border-radius: 18px;
  object-fit: cover;
}

.ec-hero-flag {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 42px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.85);
}

.ec-flag-stripe {
  display: block;
  height: 6px;
}

.ec-flag-black {
  background: #000000;
}

.ec-flag-red {
  background: #dd0000;
}

.ec-flag-gold {
  background: #ffce00;
}

.ec-hero-stats {
  display: flex;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
  gap: 10px;
  align-items: center;
}

.ec-hero-stat {
  flex: 1;
}

.ec-hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ec-text-soft);
}

.ec-hero-stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.ec-hero-stat-meta {
  font-size: 11px;
  color: #9ca3af;
}

.ec-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(148, 163, 184, 0.8),
    transparent
  );
}

.ec-section {
  position: relative;
  padding: 64px 0;
}

.ec-section-alt {
  background: radial-gradient(
      circle at top,
      rgba(15, 23, 42, 0.3),
      transparent 60%
    ),
    linear-gradient(to bottom, #020617, #030712);
}

.ec-section-inner {
  position: relative;
  z-index: 1;
}

.ec-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.88);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ec-text-soft);
  margin-bottom: 12px;
}

.ec-section h2 {
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.ec-section-lead {
  margin: 0 0 24px;
  color: var(--ec-text-soft);
  font-size: 15px;
}

.ec-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.ec-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.ec-card {
  border-radius: var(--ec-radius-lg);
  background: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.98)
    );
  border: 1px solid var(--ec-border-subtle);
  padding: 16px 16px 14px;
  box-shadow: var(--ec-shadow-subtle);
}

.ec-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.ec-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ec-text-soft);
}

.ec-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 10px;
}

.ec-services-list {
  padding: 18px 18px 16px;
  border-radius: var(--ec-radius-xl);
  background: radial-gradient(
      circle at 0 0,
      rgba(12, 255, 138, 0.22),
      transparent 55%
    ),
    linear-gradient(145deg, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--ec-shadow-soft);
}

.ec-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.ec-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ec-checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.8);
  background: radial-gradient(circle, #22c55e, #16a34a);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.ec-note {
  font-size: 13px;
  color: #cbd5f5;
  opacity: 0.95;
}

.ec-services-highlight {
  padding: 18px 18px 14px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0b1220, #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--ec-shadow-subtle);
  font-size: 14px;
}

.ec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--ec-radius-pill);
  border: 1px solid rgba(56, 189, 248, 0.8);
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.3),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.95);
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e0f2fe;
}

.ec-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
}

.ec-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.ec-icon-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.ec-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  margin-right: 8px;
}

.ec-visa-highlight {
  padding: 18px 18px 14px;
  border-radius: 22px;
  background: radial-gradient(
      circle at 0 0,
      rgba(12, 255, 138, 0.2),
      transparent 55%
    ),
    linear-gradient(145deg, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--ec-shadow-soft);
  font-size: 14px;
}

.ec-visa-highlight h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.ec-dash-list {
  padding-left: 18px;
  margin: 8px 0 10px;
  font-size: 14px;
  color: var(--ec-text-soft);
}

.ec-dash-list li {
  margin-bottom: 4px;
}

.ec-vacancies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.ec-vacancy-card {
  border-radius: 20px;
  background: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.98)
    );
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 14px 14px 12px;
  box-shadow: var(--ec-shadow-subtle);
  font-size: 14px;
}

.ec-vacancy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.ec-vacancy-header h3,
.ec-vacancy-header h4 {
  margin: 0;
  font-size: 15px;
}

.ec-vacancy-tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bbf7d0;
}

.ec-vacancy-pay {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}

.ec-vacancy-rate {
  font-weight: 600;
  color: var(--ec-primary-strong);
}

.ec-vacancy-month {
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-vacancy-meta {
  margin: 0;
  padding-left: 16px;
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-vacancy-badge-row {
  margin-bottom: 4px;
}

.ec-vacancy-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
  color: #e5e7eb;
}

.ec-vacancy-subcard {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.ec-vacancy-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-contact-banner {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 20px;
  background: radial-gradient(
      circle at 0 0,
      rgba(12, 255, 138, 0.24),
      transparent 55%
    ),
    linear-gradient(145deg, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--ec-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.ec-contact-banner-main h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.ec-contact-banner-main p {
  margin: 0;
  color: var(--ec-text-soft);
}

.ec-contact-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ec-section-contact {
  background: radial-gradient(
      circle at top right,
      rgba(50, 224, 255, 0.25),
      transparent 60%
    ),
    linear-gradient(to bottom, #020617, #020617);
}

.ec-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 12px;
  align-items: flex-start;
}

.ec-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ec-contact-note {
  font-size: 13px;
  color: var(--ec-text-soft);
  margin: 4px 0 0;
}

.ec-contact-form {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--ec-shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ec-form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ec-form-row label {
  font-size: 13px;
  color: #e5e7eb;
}

.ec-form-row input,
.ec-form-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 14px;
  padding: 8px 10px;
  outline: none;
  transition: border-color var(--ec-transition-fast),
    box-shadow var(--ec-transition-fast), background var(--ec-transition-fast);
}

.ec-form-row input::placeholder,
.ec-form-row textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.ec-form-row input:focus,
.ec-form-row textarea:focus {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.9);
  background: rgba(15, 23, 42, 0.98);
}

.ec-contact-info-card {
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 16px 16px 14px;
  box-shadow: var(--ec-shadow-subtle);
  font-size: 14px;
}

.ec-contact-info-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.ec-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ec-profile-photo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.7);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.8);
}

.ec-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ec-profile-name {
  font-weight: 600;
}

.ec-profile-role {
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-profile-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-profile-label {
  font-weight: 500;
  color: #e5e7eb;
  margin-right: 4px;
}

.ec-profile-contacts a {
  color: #a5b4fc;
}

.ec-success-banner {
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 18px;
  background: radial-gradient(
      circle at 0 0,
      rgba(16, 185, 129, 0.4),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(52, 211, 153, 0.8);
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.6);
}

.ec-success-title {
  font-size: 14px;
  font-weight: 600;
}

.ec-success-text {
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: #020617;
  padding: 18px 0 24px;
}

.ec-footer-inner {
  text-align: center;
}

.ec-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.ec-footer-title {
  font-weight: 600;
}

.ec-footer-text {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--ec-text-soft);
}

.ec-footer-meta {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

/* Scroll animations */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: translateY(0) scale(0.98);
}

[data-animate="fade-in"].is-visible {
  transform: scale(1);
}

/* Responsive styles */

@media (max-width: 900px) {
  .ec-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .ec-hero-media {
    justify-content: flex-start;
  }

  .ec-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-services-grid,
  .ec-two-col,
  .ec-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ec-vacancies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-contact-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .ec-header-inner {
    padding-block: 10px;
  }

  .ec-nav-toggle {
    display: inline-flex;
  }

  .ec-nav-list {
    position: absolute;
    inset-inline: 12px;
    top: 56px;
    padding: 8px 10px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: var(--ec-shadow-soft);
    flex-direction: column;
    gap: 6px;
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease-out, transform 160ms ease-out;
  }

  .ec-nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .ec-nav-list li {
    padding-inline: 4px;
  }

  .ec-nav-cta {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }

  .ec-hero {
    padding-top: 26px;
  }

  .ec-hero h1 {
    font-size: 26px;
  }

  .ec-hero-subtitle {
    font-size: 14px;
  }

  .ec-hero-ctas {
    flex-direction: column;
  }

  .ec-btn {
    width: 100%;
  }

  .ec-grid-3,
  .ec-grid-4,
  .ec-vacancies-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ec-section {
    padding-block: 40px;
  }

  .ec-contact-banner {
    padding: 12px 12px;
  }

  .ec-container {
    width: min(100% - 24px, 100%);
  }
}

@media (max-width: 480px) {
  .ec-hero-card {
    width: 100%;
  }

  .ec-hero-stats {
    flex-direction: column;
  }

  .ec-hero-stat-divider {
    width: 100%;
    height: 1px;
  }
}

