/* ========================================================
   Thermo Tech — Premium Stylesheet v2.0
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #091a3a;
  --navy-mid:   #1e3a8a;
  --blue:       #2563eb;
  --blue-l:     #3b82f6;
  --gold:       #c9922a;
  --gold-l:     #e8a82e;
  --gold-glow:  #f0b429;
  --dark:       #060d1e;
  --bg:         #f7f8fc;
  --white:      #ffffff;
  --text:       #1a2332;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(9,26,58,.10);
  --shadow-lg:  0 12px 48px rgba(9,26,58,.20);
  --shadow-gold:0 0 40px rgba(201,146,42,.22);
  --transition: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); }

/* ── Gradient text ── */
.text-gradient {
  background: linear-gradient(130deg, var(--gold-l) 0%, var(--gold-glow) 60%, #ffe080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section-sm   { padding: 52px 0; }
.section-header        { text-align: center; margin-bottom: 60px; }
.section-header h2     { color: var(--navy); margin-bottom: 14px; }
.section-header p      { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,.08); color: var(--blue);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 99px; margin-bottom: 14px;
  border: 1px solid rgba(37,99,235,.15);
}

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner  { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo   { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; }
.nav-links  { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 15px; border-radius: 8px; font-size: .91rem; font-weight: 500;
  color: var(--text); transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); background: rgba(37,99,235,.06); }
.nav-cta {
  padding: 9px 22px; background: var(--navy); color: #fff !important;
  border-radius: 8px; font-weight: 600 !important; margin-left: 6px;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: 0 2px 12px rgba(9,26,58,.2);
}
.nav-cta:hover,
.nav-cta.active { background: var(--blue) !important; color: #fff !important; transform: translateY(-1px) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 2px; transition: var(--transition);
}
.nav-mobile { display: none; padding: 12px 0 20px; border-top: 1px solid var(--border); }
.nav-mobile a { display: block; padding: 10px 16px; border-radius: 8px; font-weight: 500; color: var(--text); transition: var(--transition); }
.nav-mobile a:hover { background: rgba(37,99,235,.06); color: var(--blue); }
.nav-mobile.open { display: block; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(37,99,235,.13) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201,146,42,.09) 0%, transparent 50%),
    linear-gradient(160deg, #020a1c 0%, #06102a 25%, #091a3a 55%, #0d2252 80%, #091a3a 100%);
  color: #fff;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* animated glow orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: orb-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-60px, 80px) scale(1.15); }
}

.hero > .container { position: relative; z-index: 1; width: 100%; }
.hero-inner  { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px; margin-bottom: 24px;
}
.hero-eyebrow span.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-glow); animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; }
.hero p  {
  color: rgba(255,255,255,.72); font-size: 1.15rem;
  margin-bottom: 40px; max-width: 520px; line-height: 1.7;
}
.hero-btns  { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.hero-stats-inner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.hero-stat  {
  padding: 22px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block; font-family: 'Sora',sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--gold-glow);
  line-height: 1.1; margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(240,180,41,.3);
}
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* hero visual card */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 32px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.hero-card-title {
  font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1rem;
  color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-items { display: flex; flex-direction: column; gap: 10px; }
.hero-card-item  { display: flex; align-items: center; gap: 14px; }
.hero-card-icon  {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.hero-card-item:hover .hero-card-icon { background: rgba(240,180,41,.15); border-color: rgba(240,180,41,.3); }
.hero-card-icon svg { width: 20px; height: 20px; color: var(--gold-glow); }
.hero-card-label { font-size: .9rem; color: rgba(255,255,255,.85); font-weight: 500; }

/* ── Marquee services band ── */
.services-marquee {
  background: var(--gold);
  overflow: hidden; height: 48px;
  display: flex; align-items: center;
  position: relative; z-index: 1;
}
.marquee-inner {
  display: flex; flex-shrink: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap; will-change: transform;
}
.marquee-inner span {
  padding: 0 28px;
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--dark);
}
.marquee-inner .sep { color: rgba(0,0,0,.35); padding: 0 4px; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white   { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f0f7ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-navy    { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0f2460; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold    { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-sm      { padding: 8px 18px; font-size: .85rem; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--navy-mid));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; background: rgba(37,99,235,.08);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--blue); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .92rem; }

/* Dark variant services */
.section-dark {
  background: var(--dark);
}
.section-dark .section-tag { background: rgba(37,99,235,.2); color: var(--blue-l); border-color: rgba(37,99,235,.25); }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p  { color: rgba(255,255,255,.55); }
.section-dark .service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.section-dark .service-card::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
}
.section-dark .service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,180,41,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), var(--shadow-gold);
}
.section-dark .service-icon { background: rgba(240,180,41,.1); }
.section-dark .service-icon svg { color: var(--gold-glow); }
.section-dark .service-card h3 { color: #fff; }
.section-dark .service-card p  { color: rgba(255,255,255,.55); }

/* ── Clients / trust strip ── */
.clients-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.clients-strip-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.clients-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.clients-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.clients-tags { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.client-tag {
  padding: 6px 16px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 99px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.client-tag:hover { background: rgba(37,99,235,.06); border-color: rgba(37,99,235,.2); color: var(--blue); }

/* ── Stats bar ── */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--dark) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,180,41,.07) 0%, transparent 65%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block; font-family: 'Sora',sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800;
  color: var(--gold-glow); line-height: 1.1; margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(240,180,41,.25);
}
.stat-item span { color: rgba(255,255,255,.65); font-size: .88rem; }

/* ── CTA section ── */
.cta-section {
  background: linear-gradient(-45deg, #020a1c, #091a3a, #1e3a8a, #0d2050);
  background-size: 400% 400%;
  animation: cta-gradient 14s ease infinite;
  color: #fff; text-align: center; padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
@keyframes cta-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p  {
  color: rgba(255,255,255,.75); margin-bottom: 40px; font-size: 1.1rem;
  max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Page Hero ── */
.page-hero {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(37,99,235,.1) 0%, transparent 55%),
    linear-gradient(145deg, #020a1c 0%, #06102a 30%, #091a3a 60%, #0d2252 100%);
  color: #fff; padding: 80px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb   {
  display: flex; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .82rem; margin-top: 18px;
}
.breadcrumb a { color: var(--gold-glow); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── About page ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-story-text p  { margin-bottom: 16px; }
.about-story-visual  {
  background: linear-gradient(135deg, #eef4ff, #dce8ff);
  border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(37,99,235,.12);
}
.about-badge {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 12px; padding: 16px 20px;
  box-shadow: 0 2px 16px rgba(9,26,58,.08);
  border: 1px solid rgba(37,99,235,.08);
  transition: var(--transition);
}
.about-badge:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.about-badge-icon {
  width: 44px; height: 44px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-badge-icon svg { width: 22px; height: 22px; color: var(--gold-glow); }
.about-badge strong { display: block; color: var(--navy); font-weight: 700; font-size: 1.05rem; }
.about-badge span   { font-size: .82rem; color: var(--muted); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
}
.mv-card h3 { color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.mv-card h3 svg { width: 22px; height: 22px; color: var(--gold); }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value-card  {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-card .v-icon {
  width: 56px; height: 56px; background: rgba(37,99,235,.08); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.value-card .v-icon svg { width: 28px; height: 28px; color: var(--blue); }
.value-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }

.team-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 800px; margin: 0 auto; }
.team-card  {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow); transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(9,26,58,.2);
}
.team-avatar span { color: #fff; font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1.4rem; }
.team-info h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.05rem; }
.team-info .role { color: var(--blue); font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.team-info p { font-size: .88rem; }

/* ── Services page ── */
.service-full {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
  align-items: start; padding: 52px 0; border-bottom: 1px solid var(--border);
}
.service-full:last-child { border-bottom: none; }
.service-full-icon-wrap {
  background: linear-gradient(135deg, #eef4ff, #dce8ff);
  border-radius: 16px; padding: 36px; text-align: center;
  border: 1px solid rgba(37,99,235,.12);
}
.service-full-icon-wrap svg { width: 56px; height: 56px; color: var(--blue); }
.service-full-icon-wrap span { display: block; color: var(--navy); font-weight: 700; font-size: .9rem; margin-top: 14px; }
.service-full-content h3 { color: var(--navy); font-size: 1.6rem; margin-bottom: 14px; }
.service-full-content p  { margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--text); }
.service-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.process-step  { text-align: center; position: relative; }
.process-step::after {
  content: '→'; position: absolute; right: -14px; top: 14px;
  color: var(--border); font-size: 1.2rem;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: 'Sora',sans-serif; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(9,26,58,.25);
}
.process-step h4 { color: var(--navy); font-size: .92rem; margin-bottom: 6px; }
.process-step p  { font-size: .8rem; }

/* ── Projects page ── */
.project-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 99px; border: 2px solid var(--border);
  background: #fff; color: var(--text); font-weight: 600; font-size: .85rem;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-card  {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
  position: relative;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img   {
  height: 190px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.project-img svg { width: 52px; height: 52px; color: var(--navy-mid); opacity: .35; }
.project-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,26,58,.8) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.project-card:hover .project-img-overlay { opacity: 1; }
.project-body  { padding: 24px; }
.project-cat   {
  display: inline-block; background: rgba(37,99,235,.08); color: var(--blue);
  font-size: .74rem; font-weight: 700; padding: 3px 12px;
  border-radius: 99px; margin-bottom: 10px;
  border: 1px solid rgba(37,99,235,.15);
}
.project-body h3 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.project-client  { font-size: .85rem; color: var(--muted); }

/* ── Contact page ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 22px 24px;
  border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: rgba(37,99,235,.2); }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,235,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-info-card h4 { color: var(--navy); margin-bottom: 4px; }
.contact-info-card p  { font-size: .9rem; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius); padding: 44px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 28px; font-size: 1.5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: .88rem;
  color: var(--text); margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: .95rem;
  color: var(--text); background: var(--bg); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FAQ ── */
.faq-list  { display: flex; flex-direction: column; gap: 12px; }
.faq-item  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q     {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; font-weight: 600; color: var(--navy);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-q svg { width: 18px; height: 18px; transition: transform var(--transition); flex-shrink: 0; color: var(--muted); }
.faq-a     { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-q { background: var(--bg); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-item.open .faq-a     { max-height: 200px; padding: 0 24px 18px; }

/* ── Eventix platform page ── */
.eventix-hero { background: linear-gradient(145deg, #080e1c 0%, #0d1a35 50%, #111827 100%); }
.eventix-hero::before {
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
}
.eventix-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.eventix-feature-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition);
}
.eventix-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.eventix-feature-card h3 { color: var(--navy); margin-bottom: 12px; }
.use-cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.use-case  {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  text-align: center; border: 1px solid var(--border);
  transition: var(--transition);
}
.use-case:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.use-case svg { width: 36px; height: 36px; color: var(--blue); margin: 0 auto 14px; }
.use-case h4 { color: var(--navy); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.how-step  { text-align: center; }
.how-num   {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; font-family: 'Sora',sans-serif; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(9,26,58,.25);
}
.how-step h4 { color: var(--navy); margin-bottom: 8px; }

/* ── Privacy / Terms ── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 52px; align-items: start; }
.legal-toc {
  position: sticky; top: 88px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
}
.legal-toc h4 { color: var(--navy); margin-bottom: 16px; font-size: .95rem; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-toc a  {
  display: block; padding: 7px 12px; font-size: .87rem;
  color: var(--muted); border-left: 2px solid transparent; transition: var(--transition);
  border-radius: 0 6px 6px 0;
}
.legal-toc a:hover { color: var(--blue); border-color: var(--blue); background: rgba(37,99,235,.05); }
.legal-content h2 { color: var(--navy); margin: 40px 0 14px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { margin-bottom: 14px; font-size: .95rem; line-height: 1.8; }
.legal-content ul { margin: 10px 0 14px 20px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; font-size: .95rem; color: var(--muted); }
.legal-content strong { color: var(--text); }
.legal-date {
  display: inline-block; background: rgba(37,99,235,.08); color: var(--blue);
  padding: 6px 16px; border-radius: 8px; font-size: .85rem; font-weight: 600;
  margin-bottom: 32px; border: 1px solid rgba(37,99,235,.15);
}

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand p { font-size: .9rem; margin-top: 14px; color: rgba(255,255,255,.5); max-width: 280px; line-height: 1.7; }
.footer-logo { height: 46px; width: auto; filter: brightness(0) invert(1) opacity(.85); }
.footer-col h5 { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a  { display: block; color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-glow); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: .88rem; color: rgba(255,255,255,.6); align-items: flex-start; }
.footer-contact li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold-glow); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .84rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-glow); }

/* ── 404 ── */
.notfound { min-height: 72vh; display: flex; align-items: center; text-align: center; }
.notfound-inner { max-width: 520px; margin: 0 auto; padding: 60px 24px; }
.notfound h1 { font-size: 7rem; color: var(--navy); opacity: .1; line-height: 1; }
.notfound h2 { color: var(--navy); margin: 16px 0 12px; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-blue   { color: var(--blue); }
.text-gold   { color: var(--gold); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.highlight {
  background: linear-gradient(90deg, var(--navy-mid), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
  .hero-stats-inner   { grid-template-columns: repeat(3,1fr); }
  .services-grid      { grid-template-columns: repeat(2,1fr); }
  .stats-grid         { grid-template-columns: repeat(2,2fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .about-story        { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: repeat(2,1fr); }
  .service-full       { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: repeat(3,1fr); }
  .contact-layout     { grid-template-columns: 1fr; }
  .legal-layout       { grid-template-columns: 1fr; }
  .legal-toc          { position: static; }
  .eventix-features   { grid-template-columns: 1fr; }
  .projects-grid      { grid-template-columns: repeat(2,1fr); }
  .clients-strip-inner{ gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links          { display: none; }
  .nav-hamburger      { display: block; }
  .hero               { padding: 90px 0 60px; min-height: auto; }
  .hero-stats-inner   { grid-template-columns: 1fr 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .stat-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
  .stat-item:nth-child(2n){ border-left: 1px solid rgba(255,255,255,.08); }
  .footer-grid        { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
  .mv-grid            { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: repeat(2,1fr); }
  .form-row           { grid-template-columns: 1fr; }
  .use-cases          { grid-template-columns: 1fr; }
  .how-steps          { grid-template-columns: 1fr; }
  .projects-grid      { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .section            { padding: 64px 0; }
  .contact-form-wrap  { padding: 28px 20px; }
  .clients-strip-inner{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .clients-divider    { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .service-full-icon-wrap { padding: 24px; }
  h2 { font-size: 1.6rem; }
}

/* ── Language Toggle ── */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(9,26,58,.07); color: var(--text);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: var(--transition); margin-left: 4px; text-decoration: none;
}
.lang-toggle:hover { background: rgba(37,99,235,.08); color: var(--blue); border-color: rgba(37,99,235,.25); }
.lang-toggle-mobile {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; color: var(--text); transition: var(--transition);
  font-size: .9rem; border: 1.5px solid var(--border); margin: 4px 0; text-align: center;
}
.lang-toggle-mobile:hover { background: rgba(37,99,235,.06); color: var(--blue); }

/* ── Arabic (RTL) Support ── */
.lang-ar {
  font-family: 'Noto Sans Arabic', 'Inter', system-ui, sans-serif;
}
.lang-ar h1,
.lang-ar h2,
.lang-ar h3,
.lang-ar h4 {
  font-family: 'Noto Kufi Arabic', 'Sora', sans-serif;
  letter-spacing: 0;
}

/* RTL nav */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-cta   { margin-left: 0; margin-right: 6px; }
[dir="rtl"] .lang-toggle { margin-left: 0; margin-right: 4px; }

/* RTL hero */
[dir="rtl"] .hero-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .hero-btns    { flex-direction: row-reverse; }
[dir="rtl"] .hero-card-item { flex-direction: row-reverse; }

/* RTL general */
[dir="rtl"] .section-header { text-align: center; }
[dir="rtl"] .about-story-text p { text-align: right; }
[dir="rtl"] .about-badge { flex-direction: row-reverse; }
[dir="rtl"] .about-badge:hover { transform: translateX(-4px); }
[dir="rtl"] .mv-card::before { left: auto; right: 0; }
[dir="rtl"] .footer-col a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .footer-contact li { flex-direction: row-reverse; }
[dir="rtl"] .service-list li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .service-list li::before { flex-shrink: 0; }
[dir="rtl"] .contact-info-card { flex-direction: row-reverse; }
[dir="rtl"] .contact-layout  { direction: rtl; }
[dir="rtl"] .form-group label { text-align: right; }
[dir="rtl"] .team-card  { flex-direction: row-reverse; }
[dir="rtl"] .team-info h4, [dir="rtl"] .team-info .role, [dir="rtl"] .team-info p { text-align: right; }
[dir="rtl"] .value-card h4, [dir="rtl"] .value-card p { text-align: right; }
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
[dir="rtl"] .legal-layout { direction: rtl; }
[dir="rtl"] .legal-toc a  { border-left: none; border-right: 2px solid transparent; border-radius: 6px 0 0 6px; }
[dir="rtl"] .legal-toc a:hover { border-right-color: var(--blue); }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .service-full { direction: rtl; }
[dir="rtl"] .service-full-content h3 { text-align: right; }
[dir="rtl"] .hero-stats-inner { direction: rtl; }
[dir="rtl"] .hero-stat { border-right: none; border-left: 1px solid rgba(255,255,255,.08); }
[dir="rtl"] .hero-stat:first-child { border-left: none; }
[dir="rtl"] .stats-grid { direction: rtl; }
[dir="rtl"] .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,.08); }
[dir="rtl"] .stat-item:first-child { border-left: none; }
[dir="rtl"] .clients-strip-inner { flex-direction: row-reverse; }
[dir="rtl"] .clients-tags { flex-direction: row-reverse; }
[dir="rtl"] .project-filters { flex-direction: row-reverse; }
[dir="rtl"] .contact-info-card h4, [dir="rtl"] .contact-info-card p { text-align: right; }
[dir="rtl"] .cta-btns { flex-direction: row-reverse; }
[dir="rtl"] .nav-hamburger { margin-left: 0; }
