/* ========================================
   DESIGN TOKENS
======================================== */
:root {
  --bg: #070c14;
  --bg-2: #0b1120;
  --bg-card: #0f1724;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(14, 165, 233, 0.3);

  --blue: #0ea5e9;
  --indigo: #6366f1;
  --teal: #14b8a6;
  --orange: #f97316;
  --red: #ef4444;
  --purple: #a855f7;
  --green: #22c55e;

  --text: #e8eef6;
  --text-2: #8a9ab5;
  --text-3: #556278;

  --gradient: linear-gradient(135deg, #0ea5e9, #6366f1);
  --gradient-warm: linear-gradient(135deg, #6366f1, #a855f7);

  --nav-h: 68px;
  --max-w: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
}

/* ========================================
   SKIP LINK
*/
.sr-only:focus {
  position: absolute;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 10001;
  text-decoration: none;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

/* ========================================
   SECTION COMMON
======================================== */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-2);
  font-size: 1.05rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--blue);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(7, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

/* Language Selector */
.lang-selector {
  position: relative;
  margin-right: 1.5rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--blue);
}

.lang-btn i:first-child {
  color: var(--blue);
}

.lang-btn #current-lang {
  min-width: 24px;
  text-align: center;
}

.lang-btn i:last-child {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 140px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-dropdown button:hover {
  background: rgba(14, 165, 233, 0.1);
}

.lang-dropdown button:first-child {
  margin-bottom: 0.25rem;
}

.lang-dropdown button:nth-child(2) {
  margin-bottom: 0.25rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -100px;
  background: rgba(14, 165, 233, 0.08);
}

.glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: rgba(99, 102, 241, 0.08);
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  /*margin-top: -22rem;
  margin-bottom: -22rem;*/
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.05);
  width: fit-content;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: normal;
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-val {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-3);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: var(--bg);
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
}

.carousel-dots .dot:hover {
  background: rgba(14, 165, 233, 0.6);
}

.hero-img-overlay {
  display: none;
}

.hero-card {
  position: absolute;
  background: rgba(15, 23, 36, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-bottom {
  bottom: 1.5rem;
  left: 2rem;
}

.card-bottom-right {
  bottom: 1.5rem;
  right: 2rem;
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.card-icon.accent2 {
  background: rgba(99, 102, 241, 0.15);
  color: var(--indigo);
}

.card-label {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-bottom: 0.15rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.card-green {
  color: var(--green);
}

.card-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-left: auto;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* Hero carousel - full viewport width */
.hero-carousel-wrap {
  margin-top: 4.2rem;
  width: 100%;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ========================================
   TRUST BAR
======================================== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 1.25rem 2rem;
}

.trust-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color 0.2s;
}

.trust-logo:hover {
  color: var(--text-2);
}

.trust-divider {
  color: var(--text-3);
  opacity: 0.3;
  font-size: 1.2rem;
}

/* ========================================
   SERVICES
======================================== */
.services {
  padding: 7rem 0;
  background: var(--bg-2);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Cards */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

/* Featured card */
.service-featured {
  display: flex;
  flex-direction: column;
}

.service-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.04);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15, 23, 36, 0.85) 100%);
}

.service-body {
  padding: 1.75rem;
}

.service-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.service-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.service-body p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-2);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Small cards (right col) */
.services-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-sm {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-sm .service-icon-wrap+.service-body-sm {
  flex: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 1.75rem 1.75rem 0;
  flex-shrink: 0;
}

.icon-blue {
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue);
}

.icon-purple {
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
}

.icon-teal {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal);
}

.icon-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}

.icon-indigo {
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
}

.icon-red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
}

.service-body-sm {
  padding: 1.25rem 1.75rem 1.75rem;
}

.service-body-sm h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-body-sm p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-tags-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-tags-row span {
  font-size: 0.75rem;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Horizontal cards (bottom row) */
.service-horiz {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.service-horiz .service-icon-wrap {
  margin: 0;
}

.service-horiz h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-horiz p {
  color: var(--text-2);
  font-size: 0.875rem;
}

/* ========================================
   ABOUT
======================================== */
.about {
  padding: 7rem 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-img-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-img-card i {
  color: var(--blue);
  font-size: 1.25rem;
}

.about-img-card strong {
  display: block;
  font-size: 0.9rem;
}

.about-img-card span {
  font-size: 0.75rem;
  color: var(--text-3);
}

.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gradient);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.accent-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.accent-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* About content */
.about-content .section-eyebrow {
  display: block;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-body {
  color: var(--text-2);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.about-feat:last-child {
  border-bottom: none;
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feat h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.about-feat p {
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ========================================
   PROJECTS
======================================== */
.projects {
  padding: 7rem 0;
  background: var(--bg-2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.project-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.75);
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}

.project-sector {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(7, 12, 20, 0.8);
  backdrop-filter: blur(6px);
  color: var(--blue);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.project-body {
  padding: 1.5rem;
}

.project-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.project-body p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.metric {
  text-align: left;
}

.metric-val {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-desc {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ========================================
   CONTACT
======================================== */
.contact {
  padding: 7rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-eyebrow {
  display: block;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--text-2);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.contact-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 180px;
  border: 1px solid var(--border);
}

.contact-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.social-links {
  display: flex;
  gap: 0.625rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(14, 165, 233, 0.07);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}

.form-group select option {
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-3);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-links-col h4,
.footer-newsletter h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}

.footer-links-col ul li+li {
  margin-top: 0.625rem;
}

.footer-links-col a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--text-2);
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.4);
}

.newsletter-form button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.newsletter-form button:hover {
  opacity: 0.85;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-status:hover {
  color: var(--text-2);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.5s infinite;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 0.6s ease forwards;
}

/* ========================================
   FORM ERRORS
*/
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .hero-eyebrow {
    margin: 0 auto 1.5rem;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-frame {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    order: -1;
  }

  .about-img-main {
    height: 360px;
  }

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

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

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

@media (max-width: 768px) {
  .lang-selector {
    margin-right: 0.5rem;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-logos {
    gap: 0.75rem;
  }

  .trust-divider {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .card-top,
  .card-bottom {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .about-img-card {
    display: none;
  }

  .about-accent-box {
    display: none;
  }
}