/* ═══════════════════════════════════════
   DESIGN SYSTEM — Navy + Gold (PDF Match)
   ═══════════════════════════════════════ */
:root {
  --navy-deep:   #071020;
  --navy:        #0A1628;
  --navy-card:   #0D1E38;
  --navy-light:  #152844;
  --navy-border: rgba(255,255,255,0.07);
  --gold:        #C9A84C;
  --gold-bright: #E8C97A;
  --gold-dim:    rgba(201,168,76,0.3);
  --gold-glow:   rgba(201,168,76,0.12);
  --white:       #EAE4D4;
  --gray:        #7B90AE;
  --gray-light:  #A9BBCF;
  --accent:      #4A9EDE;
  --green:       #3DD68C;
  --font-h:      'Tajawal', sans-serif;
  --font-b:      'Cairo', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

body {
  font-family: var(--font-b);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[contenteditable] { outline: none; }
[contenteditable]:hover {
  background: rgba(201,168,76,0.06);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.25);
}
[contenteditable]:focus {
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  box-shadow: inset 0 0 0 2px var(--gold);
}

input, button, select, textarea, iframe,
input[contenteditable], button[contenteditable],
select[contenteditable], textarea[contenteditable],
iframe[contenteditable] {
  outline: revert !important;
  pointer-events: auto !important;
  color: inherit !important;
}
/* لا نعيد background و box-shadow لأنها مهمة للـ form inputs */
input:not(.form-control), button:not(.btn-submit):not(.nav-dropdown-btn):not(.accordion-header):not(.lang-btn), select:not(.form-control), textarea:not(.form-control), iframe,
input[contenteditable]:not(.form-control), button[contenteditable]:not(.btn-submit):not(.nav-dropdown-btn):not(.accordion-header):not(.lang-btn),
select[contenteditable]:not(.form-control), textarea[contenteditable]:not(.form-control),
iframe[contenteditable] {
  background: revert !important;
  box-shadow: revert !important;
}
input:hover, button:hover, select:hover, textarea:hover,
input:focus, button:focus, select:focus, textarea:focus {
  background: revert !important;
  box-shadow: revert !important;
}
button.nav-dropdown-btn:hover,
button.nav-dropdown-btn:focus {
  background: transparent !important;
  box-shadow: none !important;
}
button.accordion-header {
  background: linear-gradient(160deg, var(--navy-light), var(--navy-card)) !important;
  box-shadow: none !important;
}
button.accordion-header:hover,
button.accordion-header:focus {
  background: linear-gradient(160deg, #1a3352, var(--navy-card)) !important;
  box-shadow: none !important;
}
button.lang-btn {
  background: transparent !important;
  box-shadow: none !important;
}
button.lang-btn:hover,
button.lang-btn:focus {
  background: rgba(255,255,255,0.06) !important;
  box-shadow: none !important;
}

/* ── NAV ── */
nav {
  /* fixed to top so it stays visible while scrolling */
  position: fixed; top: 0; left: 0; width: 100%; z-index: 150;
  background: rgba(7,16,32,0.96);
  border-bottom: 1px solid var(--gold-dim);
  display: flex; align-items: center; padding: 0 2rem;
  overflow: visible; white-space: nowrap; scrollbar-width: none;
}
nav > * + * {
  margin-left: 0.1rem;
}

/* push page content down so fixed nav doesn’t overlap it */
body {
  padding-top: 4.5rem; /* adjust if nav height changes */
} 
nav::-webkit-scrollbar { display: none; }
.nav-logo-wrap {
  display: flex; align-items: center;
  padding: 0.6rem 1.5rem 0.6rem 0;
  border-left: 1px solid var(--gold-dim);
  margin-left: 0.5rem; flex-shrink: 0;
  text-decoration: none; border-bottom: none !important; cursor: pointer;
}
.nav-logo-wrap > * + * {
  margin-left: 0.85rem;
}
.nav-logo-img { height: 38px; width: auto; object-fit: contain; display: block; }
.nav-brand {
  font-family: var(--font-h); font-weight: 900;
  font-size: 1.15rem; color: var(--gold);
  flex-shrink: 0; letter-spacing: 0.08em;
}
nav a {
  color: var(--gray); text-decoration: none;
  padding: 1.15rem 0.9rem;
  font-size: 0.78rem; font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s; flex-shrink: 0;
}
nav a:hover, nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(21,40,68,0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(201,168,76,0.07) 0%, transparent 45%),
    linear-gradient(160deg, #0A1628 0%, #071020 100%);
  background-attachment: fixed;
}
.hero-bg::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: linear-gradient(135deg, rgba(21,40,68,0.6) 0%, transparent 60%);
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 6rem 2.5rem; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold-bright);
  padding: 0.45rem 1.3rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; margin-bottom: 2.5rem;
}
.hero-tag::before { 
  content: '◆'; 
  font-size: 0.5rem;
  margin-right: 0.6rem;
}
.hero-h1 {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 0.5rem;
}
.hero-h1 .line1 { color: var(--white); display: block; }
.hero-h1 .line2 { color: var(--gold); display: block; text-shadow: 0 0 60px rgba(201,168,76,0.3); }
.hero-sub {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500; color: var(--gray-light);
  margin: 1.25rem 0 0.75rem; line-height: 1.6; max-width: 700px;
}
.hero-sub2 { font-size: 1rem; color: var(--gray); margin-bottom: 3rem; line-height: 1.8; max-width: 600px; }
.hero-btns { display: flex; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-btns > * + * { margin-left: 1rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #A8882E);
  color: var(--navy-deep); padding: 0.9rem 2.4rem;
  border-radius: 8px; font-weight: 800; font-size: 0.95rem;
  font-family: var(--font-b); text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.4); }
.btn-outline-gold {
  background: transparent; border: 1.5px solid rgba(201,168,76,0.4);
  color: var(--gold-bright); padding: 0.9rem 2.4rem;
  border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-b); text-decoration: none; transition: all 0.25s;
}
.btn-outline-gold:hover { border-color: var(--gold); background: var(--gold-glow); }
.tech-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tech-chip {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-light); padding: 0.3rem 0.9rem; border-radius: 6px;
  font-size: 0.76rem; font-weight: 600; font-family: monospace; letter-spacing: 0.03em;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 2.5rem 2rem;
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 1rem 1.5rem; border-left: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-left: none; }
.stat-num { font-family: var(--font-h); font-size: 2.4rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 0.5rem; line-height: 1.5; }

/* ── SLIDER ── */
.slider-wrap { position: relative; overflow: hidden; background: var(--navy-deep); border-bottom: 1px solid var(--gold-dim); }
.slider-track { 
  display: flex; 
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77,0,0.18,1);
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1); 
}
.slide { min-width: 100%; position: relative; height: 480px; overflow: hidden; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(135deg, rgba(7,16,32,0.75) 0%, rgba(7,16,32,0.3) 50%, rgba(7,16,32,0.6) 100%);
}
.slide-caption {
  position: absolute; bottom: 0; right: 0; left: 0; z-index: 2; padding: 2.5rem 3rem;
  background: linear-gradient(to top, rgba(7,16,32,0.9) 0%, transparent 100%);
}
.slide-caption h3 { font-family: var(--font-h); font-size: 1.6rem; font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.slide-caption p { font-size: 0.95rem; color: var(--gray-light); }
.slide-caption .slide-tag {
  display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-bright); padding: 0.3rem 0.9rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 0.75rem;
}
.slider-btn {
  position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(201,168,76,0.15);
  border: 1.5px solid rgba(201,168,76,0.35); border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); transition: all 0.2s;
}
.slider-btn:hover { background: rgba(201,168,76,0.3); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { right: 1.5rem; }
.slider-btn.next { left: 1.5rem; }
.slider-logo-overlay { position: absolute; top: 1.5rem; right: 2rem; z-index: 20; pointer-events: none; }
.slider-logo-img { height: 56px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5)); }
.slider-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,0.3); border: 1px solid rgba(201,168,76,0.4); cursor: pointer; transition: all 0.25s; }
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── YOUTUBE EMBED ── */
.yt-wrap { margin-top: 2rem; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.yt-label { padding: 1rem 1.5rem; font-size: 0.88rem; font-weight: 700; color: var(--gold); border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 0.5rem; }
.yt-frame-box { position: relative; padding-top: 56.25%; background: #000; }
.yt-frame-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── CLIENTS ── */
.clients-section { background: var(--navy-card); border-bottom: 1px solid var(--gold-dim); padding: 4.5rem 2.5rem; }
.clients-inner { max-width: 1100px; margin: 0 auto; }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.client-card {
  background: linear-gradient(135deg, rgba(21,40,68,0.9), rgba(13,30,56,1));
  border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem; transition: all 0.25s; position: relative; overflow: hidden;
}
.client-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.client-card:hover { border-color: rgba(201,168,76,0.28); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.client-logo-area { height: 64px; display: flex; align-items: center; }
.client-logo-area img { max-height: 52px; max-width: 140px; object-fit: contain; filter: brightness(0.9) saturate(0.8); transition: filter 0.2s; }
.client-card:hover .client-logo-area img { filter: brightness(1) saturate(1); }
.client-logo-text { font-family: var(--font-h); font-size: 1.15rem; font-weight: 900; color: var(--gold-bright); letter-spacing: 0.04em; }
.client-sector { display: inline-block; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: var(--gold); padding: 0.2rem 0.75rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; width: fit-content; }
.client-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.client-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }
.client-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; }
.client-tag { background: rgba(74,158,222,0.08); border: 1px solid rgba(74,158,222,0.2); color: var(--accent); padding: 0.18rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }

/* ── WHAT WE OFFER / SERVICES ── */
.services-section {
  width: 100%; background: var(--navy-card); border-bottom: 1px solid var(--gold-dim);
  padding: 4.5rem 2.5rem;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { text-align: center; }
.services-tag-wrap {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.8rem;
}
.services-line {
  width: 48px; height: 2px; border-radius: 2px;
}
.services-line:first-child { background: linear-gradient(90deg, transparent, var(--gold)); }
.services-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.services-header .sec-title { margin-bottom: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
  background: linear-gradient(135deg, rgba(21,40,68,0.9), rgba(13,30,56,1));
  border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.service-card:hover { border-color: rgba(201,168,76,0.28); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.service-icon-wrap {
  width: 64px; height: 64px; background: var(--navy-light); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-icon { font-size: 1.75rem; }
.service-title { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }
@media(max-width: 1024px) { .services-section { padding: 4rem 2rem; } }
@media(max-width: 768px) { .services-section { padding: 3rem 1.2rem; } }
@media(max-width: 480px) { .services-section { padding: 2.5rem 1rem; } }
@media(max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── SECTION COMMON ── */
.section { max-width: 1100px; margin: 0 auto; padding: 5.5rem 2.5rem; }
.sec-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent); }
.sec-header { margin-bottom: 3.5rem; }
.sec-tag { display: inline-block; color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.8rem; }
.sec-title { font-family: var(--font-h); font-size: 2.2rem; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 0.75rem; }
.sec-title .gold { color: var(--gold); }
.sec-title .underline { position: relative; display: inline-block; }
.sec-title .underline::after { content: ''; position: absolute; bottom: -4px; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; }
.sec-intro { font-size: 1rem; color: var(--gray-light); max-width: 680px; line-height: 2; }
.aud-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.aud-chip { background: rgba(74,158,222,0.08); border: 1px solid rgba(74,158,222,0.22); color: var(--accent); padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }

/* ── GLASS CARD ── */
.glass-card {
  background: linear-gradient(135deg, rgba(21,40,68,0.8) 0%, rgba(13,30,56,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
  backdrop-filter: blur(12px); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s; position: relative;
}
.glass-card::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
.glass-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-2px); }
.card-header { background: linear-gradient(135deg, rgba(21,40,68,1) 0%, rgba(31,58,96,0.8) 100%); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 2.5rem; display: flex; align-items: center; gap: 1.5rem; }
.card-icon { width: 72px; height: 72px; flex-shrink: 0; background: rgba(201,168,76,0.1); border: 1.5px solid rgba(201,168,76,0.28); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.card-header-title { font-family: var(--font-h); font-size: 1.55rem; font-weight: 800; color: var(--white); }
.card-header-sub { font-size: 0.88rem; color: var(--gray); margin-top: 0.3rem; }
.card-body { padding: 2.5rem; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.feat-item { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 1.5rem; transition: all 0.25s; position: relative; overflow: hidden; }
.feat-item::after { content: ''; position: absolute; bottom: 0; right: 0; width: 60px; height: 60px; background: radial-gradient(circle, rgba(201,168,76,0.06), transparent); pointer-events: none; }
.feat-item:hover { border-color: rgba(201,168,76,0.28); background: rgba(201,168,76,0.04); transform: translateY(-2px); }
.feat-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.feat-title { font-size: 0.93rem; font-weight: 700; color: var(--white); margin-bottom: 0.45rem; }
.feat-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.75; }
.flutter-box { background: linear-gradient(135deg, rgba(74,158,222,0.07) 0%, rgba(201,168,76,0.04) 100%); border: 1px solid rgba(74,158,222,0.22); border-radius: 16px; padding: 2rem; margin-top: 1.75rem; }
.flutter-title { font-size: 1rem; font-weight: 700; color: var(--accent); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.6rem; }
.flutter-feats { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px,1fr)); gap: 0.65rem; }
.ff { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.85rem; color: var(--gray-light); }
.ff::before { content: '◆'; color: var(--accent); font-size: 0.42rem; margin-top: 0.5rem; flex-shrink: 0; }
.callout-gold { background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 100%); border: 1px solid rgba(201,168,76,0.2); border-right: 4px solid var(--gold); border-radius: 14px; padding: 1.75rem 2rem; margin-top: 1.75rem; position: relative; }
.callout-gold::before { content: ''; position: absolute; top: 0; right: 0; width: 150px; height: 100%; background: radial-gradient(ellipse at right, rgba(201,168,76,0.05), transparent); pointer-events: none; }
.callout-label { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }
.callout-text { font-size: 0.93rem; color: var(--white); line-height: 1.9; }
.super-feature { background: linear-gradient(135deg, var(--navy-light), rgba(201,168,76,0.04)); border: 1.5px solid rgba(201,168,76,0.3); border-radius: 20px; padding: 2.75rem; margin: 2rem 0; position: relative; overflow: hidden; }
.super-feature::before { content: ''; position: absolute; top: -40%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 60%); pointer-events: none; }
.sf-badge { display: inline-block; background: linear-gradient(135deg, var(--gold), #A8882E); color: var(--navy-deep); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; padding: 0.35rem 1.1rem; border-radius: 100px; margin-bottom: 1.25rem; }
.sf-title { font-family: var(--font-h); font-size: 1.55rem; font-weight: 900; color: var(--white); margin-bottom: 0.85rem; }
.sf-text { font-size: 0.95rem; color: var(--gray-light); line-height: 2; }
.flow { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.flow-node { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0.75rem 1.25rem; font-size: 0.83rem; font-weight: 600; color: var(--white); text-align: center; line-height: 1.5; }
.flow-node.gold { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--gold-bright); }
.flow-arr { color: rgba(201,168,76,0.5); font-size: 1.1rem; }

.pipeline { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 2rem; overflow: hidden; border: 1px solid var(--navy-border); border-radius: 16px; }
.pipe-step { background: var(--navy-card); padding: 1.5rem 1rem; text-align: center; border-left: 1px solid var(--navy-border); transition: background 0.2s; position: relative; }
.pipe-step:first-child { border-left: none; border-radius: 16px 0 0 16px; }
.pipe-step:last-child { border-radius: 0 16px 16px 0; }
.pipe-step:hover { background: rgba(201,168,76,0.05); }
.pipe-step::after { content: '←'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--gold-dim); font-size: 1rem; z-index: 1; }
.pipe-step:last-child::after { display: none; }
.pipe-icon { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }
.pipe-name { font-size: 0.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.pipe-tech { font-size: 0.7rem; color: var(--gray); }

.ai-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.ai-card { background: linear-gradient(135deg, rgba(74,158,222,0.06), rgba(201,168,76,0.03)); border: 1px solid rgba(74,158,222,0.16); border-radius: 16px; padding: 1.75rem; transition: all 0.25s; }
.ai-card:hover { border-color: rgba(74,158,222,0.32); transform: translateY(-3px); }
.ai-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.ai-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.ai-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.75; }

/* Models Accordion */
.models-accordion { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.accordion-item { background: linear-gradient(160deg, var(--navy-light), var(--navy-card)) !important; border: 1px solid rgba(201,168,76,0.2); border-radius: 18px; overflow: hidden; transition: all 0.25s; position: relative; }
.accordion-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.accordion-item:hover { border-color: rgba(201,168,76,0.3); }
.accordion-item.is-open { border-color: rgba(201,168,76,0.45); box-shadow: 0 0 24px rgba(201,168,76,0.08); }
.accordion-header { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.5rem 2rem; border: none; cursor: pointer; text-align: left; font-family: inherit; color: inherit; transition: background 0.2s; }
.accordion-num { font-family: var(--font-h); font-size: 2.25rem; font-weight: 900; color: rgba(201,168,76,0.2); line-height: 1; flex-shrink: 0; }
.accordion-title-wrap { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.accordion-header .model-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin: 0; }
.accordion-header .model-sub { font-size: 0.75rem; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; margin: 0; }
.accordion-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform 0.3s; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--gold); transition: all 0.2s; }
.accordion-icon::before { width: 12px; height: 2px; margin: -1px 0 0 -6px; }
.accordion-icon::after { width: 2px; height: 12px; margin: -6px 0 0 -1px; }
.accordion-item.is-open .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; }
.accordion-item.is-open .accordion-content { max-height: 600px; }

/* FAQ Accordion - below models, same style */
.faq-accordion-wrap { margin-top: 2.5rem; }
.faq-accordion-title {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201,168,76,0.2);
}
.faq-accordion { margin-top: 0.5rem; }
.faq-accordion .accordion-item.is-open .accordion-content { max-height: 300px; }
.accordion-content-inner { padding: 0 2rem 2rem; }
.accordion-content .model-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; }
.accordion-content .model-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin: 0; padding: 0; }
.model-title { font-size: 1.1rem; font-weight: 800; color: var(--white); margin: 0.5rem 0 0.25rem; }
.model-sub { font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.04em; }
.model-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; }
.model-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.model-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.84rem; color: var(--gray-light); }
.model-list li::before { content: '←'; color: var(--gold); flex-shrink: 0; margin-top: 0.05rem; }

.sectors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.sector-card { background: linear-gradient(135deg, rgba(21,40,68,0.8), rgba(13,30,56,0.9)); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 2rem; transition: all 0.25s; display: flex; align-items: center; gap: 1.25rem; }
.sector-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-2px); }
.sector-icon { width: 56px; height: 56px; flex-shrink: 0; background: var(--gold-glow); border: 1.5px solid var(--gold-dim); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.sector-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.sector-desc { font-size: 0.85rem; color: var(--gray); }

.track-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-top: 2rem; }
.track-card {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-card));
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.8;
}
.track-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.1);
}
.track-screen {
  background: linear-gradient(145deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
}
.track-screen-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.track-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transition: transform 0.3s ease;
}
.track-card:hover .track-icon { transform: scale(1.08); }
.track-info { padding: 1.75rem; transition: background 0.3s; }
.track-card:hover .track-info { background: rgba(201,168,76,0.02); }
.track-ministry {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
}
.track-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.track-desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   WHY US — Enhanced Cards
   ══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media(max-width:900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: linear-gradient(145deg, rgba(21,40,68,0.85) 0%, rgba(13,30,56,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, rgba(201,168,76,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.08);
}
.why-card:hover::before { opacity: 1; }

.why-card--featured {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(21,40,68,0.95) 0%, rgba(31,58,96,0.85) 100%);
  border-color: rgba(201,168,76,0.2);
}
.why-card--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3), transparent);
}
@media(max-width:900px) { .why-card--featured { grid-column: span 1; } }

.why-card--accent {
  background: linear-gradient(145deg, rgba(74,158,222,0.07) 0%, rgba(13,30,56,0.95) 100%);
  border-color: rgba(74,158,222,0.15);
}
.why-card--accent::before { background: linear-gradient(90deg, var(--accent), transparent); }

.why-num {
  font-family: var(--font-h);
  font-size: 3.5rem; font-weight: 900;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  position: absolute; top: 1rem; left: 1.5rem;
  letter-spacing: -0.02em;
  pointer-events: none; transition: color 0.3s;
}
.why-card:hover .why-num { color: rgba(201,168,76,0.13); }

.why-icon-wrap {
  font-size: 1.75rem; display: block;
  margin-bottom: 0.25rem; position: relative; z-index: 1;
}
.why-title {
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); line-height: 1.3;
  position: relative; z-index: 1;
}
.why-desc {
  font-size: 0.845rem; color: var(--gray);
  line-height: 1.85; flex: 1;
  position: relative; z-index: 1;
}
.why-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 0.25rem; position: relative; z-index: 1;
}
.why-tag {
  background: rgba(74,158,222,0.08);
  border: 1px solid rgba(74,158,222,0.2);
  color: var(--accent);
  padding: 0.22rem 0.7rem; border-radius: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
}
.why-tag--gold {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.22);
  color: var(--gold-bright);
}
.why-metric {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-top: 0.5rem; position: relative; z-index: 1;
}
.why-metric-num {
  font-family: var(--font-h);
  font-size: 1.6rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.why-metric-lbl { font-size: 0.78rem; color: var(--gray); font-weight: 600; }

.why-highlight {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.18);
  border-right: 4px solid var(--gold);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin-top: 1.75rem; position: relative; overflow: hidden;
}
.why-highlight::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 200px;
  background: radial-gradient(ellipse at right, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}
.why-highlight-icon {
  font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(201,168,76,0.1); border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.why-highlight-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 800; color: var(--gold-bright); margin-bottom: 0.6rem; }
.why-highlight-text { font-size: 0.92rem; color: var(--gray-light); line-height: 1.95; }

/* ── CTA ── */
#contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(21,40,68,0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(201,168,76,0.06) 0%, transparent 50%),
    var(--navy-deep);
  padding: 8rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
#contact::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px); background-size: 80px 80px; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--font-h); font-size: 2.4rem; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; margin-bottom: 1.25rem; line-height: 1.2; }
.cta-subtitle { font-size: 1.05rem; color: var(--gray-light); line-height: 2; margin-bottom: 3rem; }
.biz-card { background: linear-gradient(135deg, rgba(21,40,68,0.9), rgba(13,30,56,1)); border: 1px solid rgba(201,168,76,0.25); border-radius: 20px; padding: 3rem; max-width: 500px; margin: 0 auto; box-shadow: 0 0 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,168,76,0.1); position: relative; overflow: hidden; }
.biz-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%); }
.biz-domain { font-family: var(--font-h); font-size: 1.75rem; font-weight: 900; color: var(--gold); margin-bottom: 1.75rem; letter-spacing: 0.02em; }
.biz-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent); margin-bottom: 1.75rem; }
.biz-contacts { display: flex; flex-direction: column; gap: 0.85rem; }
.biz-contact-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.biz-contact-row .icon { font-size: 1rem; flex-shrink: 0; }
.biz-contact-row .label { color: var(--gray); font-size: 0.78rem; min-width: 50px; }
.biz-contact-row .val { color: var(--gold-bright); font-weight: 600; }
.cta-btns-row { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-gold { background: linear-gradient(135deg, var(--gold), #A8882E); color: var(--navy-deep); padding: 1rem 3rem; border-radius: 10px; font-family: var(--font-h); font-weight: 800; font-size: 1.05rem; text-decoration: none; letter-spacing: 0.03em; box-shadow: 0 4px 20px rgba(201,168,76,0.3); transition: all 0.25s; }
.cta-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45); }
.cta-btn-outline { background: transparent; color: var(--gold); border: 1.5px solid rgba(201,168,76,0.5); padding: 1rem 3rem; border-radius: 10px; font-family: var(--font-h); font-weight: 700; font-size: 1.05rem; text-decoration: none; letter-spacing: 0.03em; transition: all 0.25s; }
.cta-btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-card) 50%, #0a1628 100%);
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}
.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.8;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.footer-brand {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-shadow: 0 0 30px rgba(201,168,76,0.2);
}
.footer-tagline {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.footer-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  transition: all 0.25s;
}
.footer-badge:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-1px);
}
.footer-contact-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(201,168,76,0.25);
  letter-spacing: 0.02em;
  position: relative;
}
.footer-contact-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(to inline-end, var(--gold), transparent);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--gray-light);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  transition: all 0.25s;
  border-radius: 10px;
}
.footer-link:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.fc-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s;
}
.footer-link:hover .fc-icon {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.footer-link.footer-wa { color: #25D366; }
.footer-link.footer-wa .fc-icon {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.25);
}
.footer-link.footer-wa:hover { color: #4AE07A; }
.footer-link.footer-wa:hover .fc-icon {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 0 20px rgba(37,211,102,0.15);
}
.footer-link.footer-fb { color: #1877F2; }
.footer-link.footer-fb .fc-icon { background: rgba(24,119,242,0.08); border-color: rgba(24,119,242,0.25); }
.footer-link.footer-fb:hover { color: #3b8ff7; }
.footer-link.footer-fb:hover .fc-icon { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.4); }
.footer-link.footer-li { color: #0A66C2; }
.footer-link.footer-li .fc-icon { background: rgba(10,102,194,0.08); border-color: rgba(10,102,194,0.25); }
.footer-link.footer-li:hover { color: #004182; }
.footer-link.footer-li:hover .fc-icon { background: rgba(10,102,194,0.15); border-color: rgba(10,102,194,0.4); }
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 2rem; left: 2rem; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.25s, box-shadow 0.25s; }
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.5); animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.55); opacity: 0; } }

@media(max-width:640px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } .cta-btn-gold, .cta-btn-outline { padding: 0.9rem 2rem; font-size: 0.95rem; } .wa-float { bottom: 1.25rem; left: 1.25rem; width: 52px; height: 52px; } }
@media(max-width:768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } .sectors-grid, .track-grid { grid-template-columns: 1fr; } .pipeline { grid-template-columns: repeat(3,1fr); } .pipe-step:nth-child(3)::after { display: none; } .hero-h1 { font-size: 2.2rem; } .card-header { flex-direction: column; text-align: center; } }
@media(max-width:480px) { .stats-grid { grid-template-columns: 1fr; } .pipeline { grid-template-columns: repeat(2,1fr); } .pipe-step:nth-child(2n)::after { display: none; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner > * { animation: fadeUp 0.7s ease both; }
.hero-tag { animation-delay: 0.1s; }
.hero-h1  { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-sub2{ animation-delay: 0.4s; }
.hero-btns{ animation-delay: 0.5s; }
.tech-row { animation-delay: 0.6s; }

/* ══════════════════════════════════════
   WHY US — Premium Bento Cards
   Inspired by Stripe / Linear / Vercel
   ══════════════════════════════════════ */

/* Layout rows */
.wu-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.wu-row--asymmetric {
  grid-template-columns: 1.5fr 1fr;
}
.wu-row--thirds {
  grid-template-columns: repeat(3, 1fr);
}
.wu-row--full {
  grid-template-columns: 1fr;
}
@media(max-width: 900px) {
  .wu-row--asymmetric { grid-template-columns: 1fr; }
  .wu-row--thirds { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px) {
  .wu-row--thirds { grid-template-columns: 1fr; }
  .wu-card-inner--horizontal { flex-direction: column !important; gap: 2rem !important; }
  .wu-partnership-right { width: 100% !important; }
}

/* Base card */
.wu-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(13,30,56,0.95) 0%, rgba(7,16,32,0.98) 100%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.wu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.06);
}

/* Glow blobs */
.wu-card-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.wu-card-glow--gold       { width: 300px; height: 300px; top: -80px; right: -80px; background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%); }
.wu-card-glow--blue       { width: 250px; height: 250px; top: -60px; left: -60px; background: radial-gradient(circle, rgba(74,158,222,0.2) 0%, transparent 70%); }
.wu-card-glow--green      { width: 200px; height: 200px; bottom: -40px; right: -40px; background: radial-gradient(circle, rgba(61,214,140,0.15) 0%, transparent 70%); }
.wu-card-glow--purple     { width: 200px; height: 200px; top: -40px; left: -40px; background: radial-gradient(circle, rgba(147,112,219,0.18) 0%, transparent 70%); }
.wu-card-glow--red        { width: 200px; height: 200px; bottom: -40px; left: -40px; background: radial-gradient(circle, rgba(222,80,74,0.12) 0%, transparent 70%); }
.wu-card-glow--gold-wide  { width: 500px; height: 300px; top: -80px; right: -100px; background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%); }

/* Inner content */
.wu-card-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.wu-card-inner--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

/* Badge chips */
.wu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  width: fit-content;
  margin-bottom: 0.2rem;
}
.wu-badge--gold   { background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.28); color: var(--gold-bright); }
.wu-badge--blue   { background: rgba(74,158,222,0.12); border: 1px solid rgba(74,158,222,0.28); color: #7DC8F5; }
.wu-badge--green  { background: rgba(61,214,140,0.1);  border: 1px solid rgba(61,214,140,0.25); color: #5DE8A8; }
.wu-badge--purple { background: rgba(147,112,219,0.12); border: 1px solid rgba(147,112,219,0.28); color: #C4B0F0; }

/* Card large icon */
.wu-card-icon-lg {
  font-size: 2.8rem;
  line-height: 1;
}

/* Titles */
.wu-card-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
}
.wu-card-title--lg {
  font-size: 1.7rem;
}

/* Body text */
.wu-card-body {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.85;
}

/* Pills row */
.wu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}
.wu-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}
.wu-pill--gold { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.22); color: var(--gold); }

/* Mini stats inside government card */
.wu-card-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.wu-cs-item {
  flex: 1;
  text-align: center;
}
.wu-cs-num {
  display: block;
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.wu-cs-lbl {
  font-size: 0.68rem;
  color: var(--gray);
  font-weight: 600;
  display: block;
  margin-top: 0.15rem;
}
.wu-cs-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  margin: 0 0.5rem;
}

/* Speed number */
.wu-speed-num {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.25rem 0;
}
.wu-speed-x {
  font-size: 3rem;
  color: var(--gold);
}

/* Compare bars */
.wu-compare {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.wu-compare-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wu-compare-lbl {
  font-size: 0.72rem;
  color: var(--gray);
  min-width: 100px;
  text-align: right;
  font-weight: 600;
}
.wu-compare-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.wu-compare-fill {
  height: 100%;
  border-radius: 100px;
}
.wu-compare-fill--slow {
  width: 100%;
  background: linear-gradient(90deg, rgba(222,80,74,0.6), rgba(222,80,74,0.3));
  animation: barSlowIn 1.2s ease-out both;
  animation-delay: 0.3s;
}
.wu-compare-fill--fast {
  width: 14%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  animation: barFastIn 1.2s ease-out both;
  animation-delay: 0.6s;
}
@keyframes barSlowIn { from { width: 0 } to { width: 100% } }
@keyframes barFastIn { from { width: 0 } to { width: 14% } }
.wu-compare-val {
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 55px;
  text-align: left;
}
.wu-val--slow { color: rgba(222,80,74,0.8); }
.wu-val--fast { color: var(--gold); }

/* Integration flow mini */
.wu-flow-mini {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0.5rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1rem;
  justify-content: center;
}
.wu-flow-node {
  text-align: center;
  font-size: 0.68rem;
  color: var(--gray-light);
  font-weight: 600;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.wu-fn--db {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}
.wu-flow-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  margin: 0 0.25rem;
}
.wu-flow-line-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.wu-flow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: flowPulse 2s linear infinite;
  position: absolute;
}
@keyframes flowPulse {
  0%   { right: 0%;   opacity: 1; }
  100% { right: 100%; opacity: 0.3; }
}

/* Mobile platforms */
.wu-platform-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.wu-platform {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
}
.wu-platform-icon { font-size: 1rem; }
.wu-platform-name { font-weight: 700; color: var(--white); }
.wu-platform-check { color: var(--green); font-weight: 900; font-size: 0.85rem; }
.wu-platform-sep {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 900;
}
.wu-one-code {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-align: center;
  margin-top: 0.25rem;
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* Security stack */
.wu-security-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.wu-sec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 600;
  font-family: monospace;
}
.wu-sec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wu-sec-dot--on {
  background: var(--green);
  box-shadow: 0 0 6px rgba(61,214,140,0.6);
  animation: secPulse 2.5s ease-in-out infinite;
}
@keyframes secPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(61,214,140,0.5); }
  50%       { box-shadow: 0 0 12px rgba(61,214,140,0.9); }
}

/* Partnership card */
.wu-partnership-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wu-partnership-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.wu-model-pill {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  transition: all 0.2s;
}
.wu-model-pill:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}
.wu-mp--gold {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
}
.wu-mp-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wu-mp-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.wu-mp-sub {
  font-size: 0.74rem;
  color: var(--gray);
  margin-top: 0.1rem;
}

/* Scroll reveal — use CSS animation instead of JS opacity hack */
.wu-card {
  animation: wuFadeIn 0.6s ease both;
}
.wu-row:nth-child(1) .wu-card:nth-child(1) { animation-delay: 0.05s; }
.wu-row:nth-child(1) .wu-card:nth-child(2) { animation-delay: 0.15s; }
.wu-row:nth-child(2) .wu-card:nth-child(1) { animation-delay: 0.1s;  }
.wu-row:nth-child(2) .wu-card:nth-child(2) { animation-delay: 0.2s;  }
.wu-row:nth-child(2) .wu-card:nth-child(3) { animation-delay: 0.3s;  }
.wu-row:nth-child(3) .wu-card:nth-child(1) { animation-delay: 0.15s; }
@keyframes wuFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   NAV EXTENSIONS & MOBILE MENU (Moved from index.html)
   ═══════════════════════════════════════════════════════════ */
.nav-right { display: flex; align-items: center; margin-left: 1.5rem; flex-shrink: 0; }
.lang-switcher { position: relative; }
.lang-btn, .lang-btn-main {
  background: var(--navy-card); color: var(--white); padding: 0.65rem 1.1rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: all 0.25s; display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; position: relative; z-index: 2001; font-family: inherit;
}
.lang-btn:hover, .lang-btn-main:hover { background: var(--navy-light); border-color: rgba(255,255,255,0.2); }
.lang-btn:focus, .lang-btn-main:focus { outline: none; }
.lang-chevron { font-size: 0.7rem; opacity: 0.85; }
#currentLang, .lang-btn span { color: var(--white) !important; font-weight: 500 !important; }

.lang-opt {
  padding: 1rem 1.25rem; color: var(--gray-light); cursor: pointer; font-size: 0.95rem;
  transition: all 0.2s; display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lang-opt:last-child { border-bottom: none; }
.lang-opt:hover { background: rgba(255,255,255,0.04); color: var(--white); }
.lang-opt.active { background: rgba(74,158,222,0.15); color: var(--accent); font-weight: 600; }
.lang-opt .lang-code { font-size: 0.78rem; opacity: 0.7; font-weight: 500; }
.lang-opt.active .lang-code { opacity: 0.9; color: var(--accent); }

.nav-links { display: flex; flex: 1; margin: 0 1rem; align-items: center; }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: transparent !important; border: none; color: var(--gray); padding: 1.15rem 0.9rem;
  font-size: 0.78rem; font-weight: 600; font-family: inherit; cursor: pointer;
  border-bottom: 2px solid transparent; transition: all 0.2s; display: flex; align-items: center; gap: 0.3rem;
  appearance: none; -webkit-appearance: none; box-shadow: none;
}
.nav-dropdown-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-dropdown-btn::after { content: '▼'; font-size: 0.6rem; opacity: 0.7; }
.nav-dropdown-menu {
  position: absolute; top: 100%; right: 0; min-width: 200px; background: var(--navy-card);
  border: 1px solid var(--gold-dim); border-radius: 12px; padding: 0.5rem 0.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4); z-index: 200; display: none; margin-top: 0.25rem;
}
.nav-dropdown-menu.show { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.65rem 1rem; color: var(--gray-light); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; border-radius: 8px; transition: all 0.2s;
}
.nav-dropdown-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.page-hero { background: linear-gradient(135deg, var(--navy-deep), var(--navy-card)); padding: 4rem 2rem; border-bottom: 1px solid var(--gold-dim); }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.back-link { display: inline-block; color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; text-decoration: none; }
.back-link:hover { color: var(--gold-bright); }
.page-hero-title { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--white); }

.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 0.4rem; background: transparent;
  border: 2px solid #C9A84C; border-radius: 12px; cursor: pointer; z-index: 2002;
  margin-right: 1rem; box-shadow: 0 2px 8px rgba(201, 168, 76, 0.08);
  width: 44px; height: 44px; justify-content: center; align-items: center;
}
.mobile-menu-toggle span { width: 24px; height: 3px; background: #C9A84C; border-radius: 2px; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
  z-index: 1998; transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active { display: block; }

.mobile-menu {
  display: flex; flex-direction: column; position: fixed; top: 0; right: 0;
  width: 300px; max-width: 90vw; height: 100vh; background: rgba(7,16,32,0.98);
  z-index: 1999; padding: 0; overflow-y: auto; transform: translateX(100%);
  transition: transform 0.3s ease; box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  border-left: 1px solid var(--gold-dim);
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--gold-dim);
  background: rgba(7,16,32,0.98);
}
.mobile-menu-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}
.mobile-menu-logo-img { height: 36px; width: auto; object-fit: contain; }
.mobile-menu-brand {
  font-family: var(--font-h); font-weight: 900; font-size: 1.1rem; color: var(--gold);
  letter-spacing: 0.05em;
}
.mobile-menu-close {
  background: none; border: none; font-size: 1.5rem; color: var(--gray-light);
  cursor: pointer; padding: 0.5rem; line-height: 1; transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-menu-links {
  flex: 1; padding: 0.5rem 0; overflow-y: auto;
}
.mobile-menu-links a {
  display: block; padding: 1rem 1.25rem; color: var(--gray);
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.mobile-menu-links a:hover { color: var(--gold); border-bottom-color: var(--gold); background: rgba(201,168,76,0.05); }

.mobile-menu-dropdown {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-dropdown-label {
  display: block; padding: 0.85rem 1.25rem; font-size: 0.72rem; color: var(--gold);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-menu-dropdown a {
  padding-inline-start: 2rem; font-size: 0.82rem;
}

.mobile-menu-footer {
  padding: 1.25rem; border-top: 1px solid var(--gold-dim);
  background: rgba(7,16,32,0.98);
}
.mobile-lang-switcher { margin: 0; }
.lang-dropdown-mobile { z-index: 2001; }

html[dir="rtl"] .mobile-menu { right: auto; left: 0; transform: translateX(-100%); }
html[dir="rtl"] .mobile-menu.active { transform: translateX(0); }

.lang-dropdown {
  position: fixed; top: auto; right: auto; background: var(--navy-card); border-radius: 10px;
  min-width: 200px; border: 1px solid rgba(255,255,255,0.1); display: none; z-index: 2000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5); overflow: hidden; padding: 0.35rem 0;
}
.lang-dropdown.active { display: block; animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.lang-option {
  padding: 0.9rem 1.2rem; color: var(--gray-light); cursor: pointer; font-size: 0.9rem;
  transition: all 0.2s; display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(201,168,76,0.1); color: var(--gold); padding-right: 1.4rem; }
.lang-option.active { background: rgba(201,168,76,0.15); color: var(--gold); font-weight: 700; }
.lang-option .flag { font-size: 1.1rem; }

/* LTR & Language Fixes */
html[dir="ltr"] .slide-caption { right: auto; left: 10%; text-align: left; align-items: flex-start; }
html[dir="ltr"] .hero-inner { align-items: flex-start; text-align: left; }
html[lang="tr"] body, html[lang="en"] body, html[lang="de"] body { font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Contact Form Styles */
/* MODELS + CONTACT SIDE BY SIDE */
.models-contact-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; align-items: start;
  background: linear-gradient(to bottom, #0a1628, #152844); border-top: 1px solid var(--gold-dim);
}
.models-contact-row .models-col { padding: 0; max-width: none; }
.models-contact-row .models-accordion { max-width: 100%; }
.models-contact-row .contact-col { padding: 0; }
.models-contact-row .contact-section-wrapper { padding: 0; background: none; }
.models-contact-row .contact-container { margin: 0; }
@media(max-width: 900px) {
  .models-contact-row { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
}

.contact-section-wrapper { padding: 4rem 1.5rem; background: linear-gradient(to bottom, #0a1628, #152844); }
.contact-container {
  max-width: 800px; margin: 0 auto; background: rgba(13, 30, 56, 0.8);
  backdrop-filter: blur(10px); border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px; padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201, 168, 76, 0.1);
}
.contact-form-title { text-align: center; font-size: 2rem; color: #C9A84C; margin-bottom: 2rem; font-weight: 700; }
.form-group { margin-bottom: 1.5rem; }
.form-path-checklist .path-checkboxes { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.form-path-checklist .path-check-item {
  display: flex; align-items: center; gap: 0.75rem; cursor: pointer; padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px;
  transition: all 0.2s;
}
.form-path-checklist .path-check-item:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.form-path-checklist .path-check-item input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0;
}
.form-path-checklist .path-check-text { font-size: 0.9rem; color: var(--gray-light); }
.form-path-checklist .path-check-item:has(input:checked) .path-check-text { color: var(--gold-bright); font-weight: 600; }
.form-path-checklist .path-check-item:has(input:checked) { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.08); }
.form-label { display: block; font-size: 0.95rem; font-weight: 600; color: #E8C97A; margin-bottom: 0.5rem; text-align: right; }
.form-control {
  width: 100%; padding: 1rem; background: rgba(13, 30, 56, 0.7) !important;
  border: 1.5px solid rgba(201, 168, 76, 0.5); border-radius: 8px;
  color: #ffffff !important; font-family: inherit; font-size: 1rem; transition: all 0.3s ease;
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.6) !important; opacity: 1 !important; }
.form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.6) !important; opacity: 1 !important; }
.form-control::-moz-placeholder { color: rgba(255, 255, 255, 0.6) !important; opacity: 1 !important; }
.form-control:-ms-input-placeholder { color: rgba(255, 255, 255, 0.6) !important; opacity: 1 !important; }
.form-control:focus {
  outline: none; border-color: #C9A84C; background: rgba(13, 30, 56, 0.9) !important;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.3); color: #ffffff !important;
}
textarea.form-control { resize: vertical; min-height: 150px; color: #ffffff !important; }
#mainContactForm input.form-control, #mainContactForm textarea.form-control { color: #ffffff !important; caret-color: #C9A84C; }
#mainContactForm input.form-control::selection, #mainContactForm textarea.form-control::selection { background: rgba(201, 168, 76, 0.4); color: #ffffff; }
.form-hint {
  display: block; margin-top: 0.4rem; padding: 0.5rem 0.8rem; font-size: 0.85rem;
  color: #C9A84C; background: rgba(201, 168, 76, 0.12); border-left: 3px solid #C9A84C;
  border-radius: 4px; font-weight: 500; line-height: 1.5;
}
.btn-submit {
  width: 100%; background: linear-gradient(135deg, #C9A84C, #E8C97A); color: #071020;
  font-weight: 800; padding: 1rem; border: none; border-radius: 8px; cursor: pointer;
  font-size: 1.1rem; transition: transform 0.2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(201, 168, 76, 0.4); }
.form-success-msg {
  display: none; text-align: center; color: #4CAF50; font-size: 1.2rem;
  padding: 2rem; background: rgba(76, 175, 80, 0.1); border-radius: 8px; border: 1px solid #4CAF50;
}

/* Override #contact for form layout */
#contact {
  background: linear-gradient(to bottom, #0a1628, #152844) !important;
  padding: 4rem 1.5rem !important;
  overflow: visible !important;
  position: relative !important;
  text-align: inherit !important;
}
#contact::before { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - TABLET & SMALL SCREENS (768px - 1024px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 1024px) {
  .section { padding: 4rem 2rem; }
  .hero-inner { padding: 4rem 2rem; }
  .hero-h1 { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - TABLETS (768px - 900px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 900px) {
  /* Show mobile menu button and hide desktop nav links */
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  body { padding-top: 4.2rem; }
  
  /* Navigation */
  nav { padding: 0 1.2rem; }
  nav a { padding: 1rem 0.7rem; font-size: 0.75rem; }
  .nav-logo-wrap { padding: 0.6rem 1rem 0.6rem 0; }
  .nav-brand { font-size: 1rem; }
  
  /* Hero Section */
  .hero-inner { padding: 3rem 1.5rem; }
  .hero-h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-tag { font-size: 0.7rem; padding: 0.4rem 1rem; }
  
  /* Language Button */
  .nav-right { margin-left: 1rem; }
  .lang-btn, .lang-btn-main { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  
  /* Content Sections */
  .section { padding: 4rem 1.5rem; }
  .sec-title { font-size: 1.8rem; }
  .sec-header { margin-bottom: 2.5rem; }
  
  /* Cards */
  .glass-card { padding: 2rem; }
  .card-body { padding: 1.5rem; }
  .feat-grid { grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; }
  
  /* Clients Grid */
  .clients-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
  
  /* Contact Form */
  .contact-container { padding: 2rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-control { padding: 0.8rem; font-size: 0.95rem; }
  
  /* CTA */
  .cta-title { font-size: 1.8rem; }
  .biz-card { padding: 2rem; }
  .cta-btns-row { flex-direction: column; gap: 0.75rem; }
  .cta-btn-gold, .cta-btn-outline { padding: 0.9rem 2rem; font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - SMALL PHONES (480px - 768px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 768px) {
  /* Mobile menu visibility */
  .nav-links { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  
  body { padding-top: 4rem; }
  
  /* Navigation */
  nav { 
    padding: 0 1rem; 
    gap: 0 !important;
    flex-wrap: wrap;
  }
  nav > * + * { margin-left: 0.5rem; }
  nav a { padding: 0.9rem 0.5rem; font-size: 0.7rem; }
  .nav-logo-wrap { padding: 0.5rem 0.8rem 0.5rem 0; margin-left: 0.3rem; }
  .nav-logo-wrap > * + * { margin-left: 0.5rem; }
  .nav-logo-img { height: 32px; }
  .nav-brand { font-size: 0.95rem; letter-spacing: 0.05em; }
  
  /* Language Button */
  .nav-right { margin-left: 0.5rem; }
  .lang-btn, .lang-btn-main { 
    padding: 0.6rem 1rem; 
    font-size: 0.8rem; 
    gap: 0.4rem;
  }
  .lang-btn .globe-icon, .lang-btn-main .globe-icon { font-size: 0.9rem; }
  
  /* Hero Section */
  .hero-inner { padding: 2.5rem 1.2rem; }
  .hero-h1 { font-size: 1.8rem; line-height: 1.2; }
  .hero-h1 .line1 { display: block; }
  .hero-h1 .line2 { display: block; }
  .hero-sub { font-size: 0.95rem; margin: 1rem 0 0.5rem; }
  .hero-sub2 { font-size: 0.85rem; }
  .hero-tag { font-size: 0.65rem; padding: 0.35rem 0.9rem; margin-bottom: 1.5rem; }
  .hero-btns { margin-bottom: 2rem; }
  .hero-btns > * { flex: 1; min-width: 140px; }
  .btn-gold, .btn-outline-gold { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  
  /* Stats Bar */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat-item { padding: 1rem 0.8rem; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; }
  
  /* Content Sections */
  .section { padding: 3rem 1.2rem; max-width: 100%; }
  .sec-title { font-size: 1.5rem; margin-bottom: 1rem; }
  .sec-intro { font-size: 0.95rem; max-width: 100%; }
  .sec-header { margin-bottom: 2rem; }
  
  /* Cards & Grids */
  .glass-card { padding: 1.5rem; }
  .card-header { padding: 1.5rem; gap: 1rem; }
  .card-icon { width: 56px; height: 56px; font-size: 1.5rem; }
  .card-header-title { font-size: 1.2rem; }
  .card-body { padding: 1.5rem; }
  .feat-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .feat-item { padding: 1.2rem; }
  
  /* Clients */
  .clients-section { padding: 3rem 1.2rem; }
  .clients-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.8rem; }
  .client-card { padding: 1.2rem; }
  .client-logo-area { height: 50px; }
  .client-logo-area img { max-height: 40px; max-width: 100px; }
  .client-name { font-size: 0.9rem; }
  .client-desc { font-size: 0.75rem; }
  
  /* Why Us Cards */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.5rem; gap: 0.6rem; }
  .why-card--featured { grid-column: span 1; }
  .why-num { font-size: 2.5rem; top: 0.5rem; left: 0.8rem; }
  .why-title { font-size: 0.95rem; }
  .why-desc { font-size: 0.8rem; }
  
  /* Contact Form */
  .contact-section-wrapper { padding: 2rem 1.2rem; }
  .faq-accordion-wrap { margin-top: 2rem; }
  .faq-accordion-title { font-size: 1.1rem; }
  .contact-container { padding: 1.5rem; border-radius: 16px; }
  .contact-form-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-label { font-size: 0.9rem; margin-bottom: 0.4rem; }
  .form-control { padding: 0.75rem; font-size: 0.95rem; }
  textarea.form-control { min-height: 120px; }
  .form-hint { font-size: 0.8rem; padding: 0.4rem 0.6rem; margin-top: 0.3rem; }
  .btn-submit { padding: 0.8rem; font-size: 1rem; }
  
  /* CTA Section */
  #contact { padding: 3rem 1.2rem !important; }
  .cta-inner { max-width: 100%; }
  .cta-title { font-size: 1.5rem; margin-bottom: 1rem; }
  .cta-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
  .biz-card { padding: 1.5rem; max-width: 100%; margin: 0 auto; }
  .biz-domain { font-size: 1.4rem; margin-bottom: 1.2rem; }
  .biz-contact-row { font-size: 0.85rem; }
  .cta-btns-row { flex-direction: column; gap: 0.5rem; }
  .cta-btn-gold, .cta-btn-outline { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  
  /* Footer */
  .footer-inner { padding: 3rem 1.2rem 2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand-wrap { flex-direction: column; align-items: flex-start; }
  .footer-logo { height: 44px; }
  .footer-brand { font-size: 1.35rem; }
  .footer-tagline { font-size: 0.88rem; margin-bottom: 1.25rem; }
  .footer-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
  .footer-contact-title { font-size: 1rem; }
  .footer-link { font-size: 0.9rem; gap: 0.85rem; }
  .fc-icon { width: 36px; height: 36px; font-size: 1rem; }
  .footer-bottom { padding: 1.25rem 1.2rem; font-size: 0.8rem; }
  
  /* WhatsApp Float */
  .wa-float { bottom: 1rem; left: 1rem; width: 48px; height: 48px; }
  .wa-float:hover { transform: scale(1.1) translateY(-2px); }
  
  /* Slider */
  .slide { height: 350px; }
  .slide-caption { padding: 1.5rem 2rem; }
  .slide-caption h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .slide-caption p { font-size: 0.85rem; }
  .slider-btn { width: 40px; height: 40px; font-size: 1rem; }
  
  /* AI Grid */
  .ai-grid { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
  .ai-card { padding: 1.2rem; }
  
  /* Models Grid */
  .models-accordion { gap: 0.4rem; }
  .accordion-header { padding: 1.25rem 1.5rem; }
  .accordion-num { font-size: 1.75rem; }
  .accordion-header .model-title { font-size: 0.95rem; }
  .accordion-content-inner { padding: 0 1.5rem 1.5rem; }
  
  /* Sectors & Tracks */
  .sectors-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sector-card { padding: 1.5rem; gap: 1rem; }
  .track-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .track-screen { height: 140px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - VERY SMALL PHONES (< 480px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 480px) {
  .nav-links { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  
  body { padding-top: 3.8rem; }
  
  /* Navigation */
  nav { 
    padding: 0 0.8rem;
    gap: 0 !important;
  }
  nav a { padding: 0.8rem 0.4rem; font-size: 0.65rem; }
  .nav-logo-wrap { display: none; }
  .nav-brand { font-size: 0.9rem; margin-left: 0.3rem; }
  
  /* Mobile menu adjustments */
  .mobile-menu {
    width: 100%; max-width: 100%;
  }
  
  .mobile-menu-links a {
    font-size: 0.9rem;
  }
  
  /* Language Button */
  .nav-right { margin-left: 0.3rem; }
  .lang-btn, .lang-btn-main { 
    padding: 0.5rem 0.8rem; 
    font-size: 0.75rem;
    gap: 0.3rem;
  }
  #currentLang, [data-lang-display] { font-size: 0.7rem; }
  
  /* Hero */
  .hero-inner { padding: 2rem 1rem; }
  .hero-h1 { font-size: 1.5rem; margin-bottom: 0.3rem; }
  .hero-sub { font-size: 0.85rem; margin: 0.8rem 0 0.4rem; }
  .hero-sub2 { font-size: 0.8rem; }
  .hero-tag { font-size: 0.6rem; padding: 0.3rem 0.8rem; margin-bottom: 1.2rem; }
  .hero-btns { margin-bottom: 1.5rem; }
  .hero-btns > * { flex: 1 1 100%; }
  .btn-gold, .btn-outline-gold { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  .tech-row { gap: 0.4rem; }
  .tech-chip { padding: 0.25rem 0.7rem; font-size: 0.65rem; }
  
  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 0.3rem; }
  .stat-item { padding: 0.8rem 0.6rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; }
  
  /* Sections */
  .section { padding: 2.5rem 1rem; }
  .sec-title { font-size: 1.3rem; margin-bottom: 0.8rem; }
  .sec-intro { font-size: 0.9rem; }
  
  /* Cards */
  .glass-card { padding: 1.2rem; }
  .card-header { padding: 1.2rem; flex-direction: column; text-align: center; }
  .card-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .card-header-title { font-size: 1.1rem; }
  .card-body { padding: 1.2rem; }
  .feat-item { padding: 1rem; }
  
  /* Clients */
  .clients-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .client-card { padding: 1rem; }
  .client-name { font-size: 0.85rem; }
  .client-desc { font-size: 0.7rem; }
  
  /* Contact */
  .faq-accordion-wrap { margin-top: 1.5rem; }
  .faq-accordion-title { font-size: 1rem; }
  .contact-container { padding: 1.2rem; }
  .contact-form-title { font-size: 1.3rem; margin-bottom: 1.2rem; }
  .form-label { font-size: 0.85rem; }
  .form-control { padding: 0.7rem; font-size: 0.9rem; }
  .form-hint { display: none; }
  .btn-submit { padding: 0.75rem; font-size: 0.95rem; }
  
  /* CTA */
  .cta-title { font-size: 1.3rem; }
  .cta-subtitle { font-size: 0.9rem; }
  .biz-domain { font-size: 1.2rem; }
  .cta-btns-row { flex-direction: column; }
  .cta-btn-gold, .cta-btn-outline { width: 100%; padding: 0.8rem 1rem; font-size: 0.9rem; }
  
  /* Footer */
  .footer-inner { padding: 2.5rem 1rem 1.5rem; }
  .footer-logo { height: 38px; }
  .footer-brand { font-size: 1.2rem; }
  .footer-badge { font-size: 0.65rem; padding: 0.25rem 0.6rem; }
  .footer-link { font-size: 0.85rem; }
  .fc-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .footer-bottom { padding: 1rem; font-size: 0.75rem; }
  
  /* WhatsApp */
  .wa-float { width: 44px; height: 44px; }
  
  /* Slider */
  .slide { height: 280px; }
  .slide-caption { padding: 1.2rem 1.5rem; }
  .slide-caption h3 { font-size: 1.1rem; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.9rem; }
}
