r · CSS
Copy

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; position: relative; width: 100%; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
  
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; cursor: pointer; }

/* ============================================================
   CSS VARIABLES — LIGHT MODE (default)
   ============================================================ */
:root {
  /* --- Colors & Brand --- */
  --navy:           #1b4280;
  --navy-dark:      #0b1f3a;
  --navy-mid:       #2a5298;
  --navy-light:     #3a6abf;
  --gold:           #c8922a;
  --gold-bright:    #e4a832;
  --gold-pale:      #faf3e0;
  --orange:         #cf5e12;
  --white:          #ffffff;
  --off-white:      #f9f8f6;
  --gray-mid:       #9c9487;

  /* --- UI Elements & Backgrounds --- */
  --bg:             #ffffff;
  --bg-secondary:   #f9f8f6;
  --bg-section:     #f5f6f8;
  --bg-card:        #ffffff;
  --surface:        #ffffff;
  --stat-bg:        #f0f4ff;
  --nav-bg:         rgba(255,255,255,0.97);

  /* --- Text --- */
  --text:           #1a1810;
  --text-2:         #4b5362;
  --text-muted:     #64594e;
  --text-light:     #9c9487;
  --stat-txt:       #1a56db;
  --eyebrow:        #1a56db;
  --heading:        #0b1f3a;
  --heading-sub:    #4e4840;
  --haqqimizda-title: #0b1f3a;

  /* --- Accents & Borders --- */
  --accent:         #1a56db;
  --accent-light:   #e8f0fd;
  --border:         #e2ddd4;
  --border-hover:   #c8c0b4;
  --nav-border:     rgba(11,31,58,0.1);

  /* --- Shadows & Effects --- */
  --shadow-sm:      0 2px 8px rgba(11,31,58,0.07);
  --shadow-md:      0 8px 32px rgba(11,31,58,0.11);
  --shadow-lg:      0 24px 56px rgba(11,31,58,0.12);
  --shadow:         0 2px 16px rgba(0,0,0,.07);
  --shadow-hover:   0 8px 32px rgba(0,0,0,.13);
  --transition:     0.4s cubic-bezier(0.16,1,0.3,1);
  --trans:          .25s ease;

  /* --- Spacing & Radius --- */
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius:         12px;
  --slide-h:        580px;
}

/* ============================================================
   DARK MODE CONSOLIDATED
   ============================================================ */
.dark-mode, [data-theme="dark"] {
  --navy:           #030d1a;
  --navy-dark:      #020b18;
  --navy-mid:       #0a1e36;
  --navy-light:     #0f2d56;
  --gold:           #d4a040;
  --gold-bright:    #e8b84b;
  --gold-pale:      #1e1608;
  --orange:         #d96820;
  --white:          #0d1f35;
  --off-white:      #0b1828;
  --gray-mid:       #6a7f96;

  --bg:             #060f1c;
  --bg-secondary:   #0b1828;
  --bg-section:     #161922;
  --bg-card:        #0d1f35;
  --surface:        #1c2030;
  --stat-bg:        #1a2540;
  --nav-bg:         rgba(3,13,26,0.97);

  --text:           #dcd5c5;
  --text-2:         #8b93a8;
  --text-muted:     #8a9bb0;
  --text-light:     #6a7f96;
  --stat-txt:       #4d87f5;
  --eyebrow:        #4d87f5;
  --heading:        #e8e0d0;
  --heading-sub:    #b0bfcc;
  --haqqimizda-title: #e8e0d0;

  --accent:         #4d87f5;
  --accent-light:   #1a2540;
  --border:         #1a3150;
  --border-hover:   #2a4a6a;
  --nav-border:     rgba(200,146,42,0.12);

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 24px 56px rgba(0,0,0,0.55);
  --shadow:         0 2px 16px rgba(0,0,0,.35);
  --shadow-hover:   0 8px 32px rgba(0,0,0,.5);
}

:root {
  --gold: #c8922a;
  --gold-bright: #e0aa48;
  --gold-pale: rgba(200, 146, 42, 0.08);
  --orange: #d4762a;
  --navy: #1b4280;
  --navy-dark: #122d5a;
  --bg-section: #f6f8fc;
  --bg-card: #ffffff;
  --heading: #0f1e36;
  --text: #3a4a5e;
  --text-muted: #6b7c94;
  --border: rgba(27, 66, 128, 0.1);
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 12px rgba(27, 66, 128, 0.07);
  --shadow-hover: 0 16px 48px rgba(27, 66, 128, 0.15);
}
.dark-mode {
  --bg-section: #0c1525;
  --bg-card: #131f35;
  --heading: #e8eef8;
  --text: #a8bcd6;
  --text-muted: #6b82a2;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-section);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background 0.4s,
    color 0.4s;
}
.dm-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.dm-toggle:hover {
  border-color: var(--gold);
}
.dm-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--heading);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-link {
  width: fit-content;
  height: fit-content;
  position: fixed;
  top: 22px;  
  margin-left : auto;
  right: 22px;

  z-index: 999;
  /* display: inline-flex; */
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.back-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.back-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
   #123368 0%,
    #1b4db2 60%,
    #5791ef 100%
  );
}
.dark-mode .hero {
  background: linear-gradient(
    135deg,
    #0c1525 0%,
    #162e55 60%,
    #144697 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 146, 42, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, 0.1);
}
.hero-geo-circle:nth-child(1) {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
}
.hero-geo-circle:nth-child(2) {
  width: 350px;
  height: 350px;
  top: 5%;
  left: -60px;
  border-color: rgba(255, 255, 255, 0.05);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 146, 42, 0.15);
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-bright);
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-bright),
    transparent
  );
  border-radius: 2px;
  opacity: 0.6;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 28px rgba(200, 146, 42, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 146, 42, 0.5);
}
.btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s ease;
}
.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 146, 42, 0.3);
  transform: translateX(6px);
}
.hero-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(200, 146, 42, 0.2),
    rgba(212, 160, 64, 0.1)
  );
  border: 1px solid rgba(200, 146, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 3px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero-scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200, 146, 42, 0.6), transparent);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(0.5);
    transform-origin: top;
  }
}

/* SECTIONS */
.section {
  padding: 6rem 2rem;
  position: relative;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3.5rem;
}

@media (max-width:768px) {
  
  .section .section-header {
    padding: 0 1.5rem;
  }
}





.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow-dot {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  display: inline-block;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-title em {
  color: var(--gold);
  font-style: normal;
}
.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--bg-card);
  border: 1.2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-bright),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.svc-card:hover::after {
  opacity: 1;
}
.svc-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(27, 66, 128, 0.06);
  line-height: 1;
  letter-spacing: -3px;
  position: absolute;
  top: 10px;
  right: 16px;
  transition: color 0.4s;
}
.dark-mode .svc-num {
  color: rgba(200, 146, 42, 0.07);
}
.svc-card:hover .svc-num {
  color: rgba(200, 146, 42, 0.12);
}
.svc-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  border: 1px solid rgba(200, 146, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.svc-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.3);
}
.svc-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s;
}
.svc-card:hover .svc-icon-wrap svg {
  stroke: #fff;
}
.svc-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.35;
}
.svc-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  transition: border-color 0.35s;
}
.svc-card:hover .svc-footer {
  border-color: rgba(200, 146, 42, 0.25);
}
.svc-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  transition: all 0.3s;
}
.svc-card:hover .svc-tag {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  border-color: transparent;
}

/* PROCESS */
.process-section {
  background: var(--bg-card);
}
.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 20px 0;
}
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-card);
  transition: all 0.35s ease;
}
.process-section .process-step-num {
  box-shadow: 0 0 0 6px var(--bg-card);
}
.process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  box-shadow:
    0 0 0 6px var(--bg-card),
    0 6px 20px rgba(200, 146, 42, 0.3);
}
.process-step-body {
  background: var(--bg-section);
  border: 1.2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  flex: 1;
  transition: all 0.35s ease;
}
.process-step:hover .process-step-body {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}
.process-step-tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.process-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 5px;
}
.process-step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FEATURES GRID */
.features-section {
  background: var(--bg-section);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1.2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-bright),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(200, 146, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  /* margin-bottom: 1rem; */
  transition: all 0.35s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s;
}
.feature-card:hover .feature-icon svg {
  stroke: #fff;
}
.feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* CTA */
.cta-section {
  background: var(--bg-section);
  padding: 6rem 2rem;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cta-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 146, 42, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.cta-eyebrow-dot {
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 2px;
  display: inline-block;
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-title em {
  font-style: normal;
  color: var(--gold-bright);
}
.cta-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.cta-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.cta-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-contact-item a:hover {
  color: var(--gold-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 100px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 2.5rem 1.5rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-image-overlay {
    filter: blur(3px);
     width: 100%;
   
     height: 100%;
     top: 0;
     right: 0;
  }
}
.hero-img{
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  scale: 1.2;
  opacity: 1;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
  z-index: 1;
}
/* CSS-də bu hissəni tapın və opacity-ni 1 edin */
.hero-stat-card {
  opacity: 0.2; /* Artıq gizli başlamasın */ /* Əgər transform (məs: x: 30) varsa, sıfırlayın */
  animation: hero-stats 0.8s ease-out forwards; /* Animasiya əlavə edin */
}
@keyframes hero-stats {
  0% {
    opacity: 0.2;
    transform: translateX(-70px);
  }
  100% {
    opacity: 1;
    transform: translateX(10px);
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 80px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 12px rgba(11,31,58,0.08);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(11,31,58,0.12);
}
.dark-mode #navbar.scrolled {
  background: rgba(3,13,26,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  gap: 4px;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; gap: 0; margin: 0 auto; flex-wrap: nowrap; flex-shrink: 1; min-width: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.dark-mode .nav-link { color: rgba(255,255,255,0.82); }
.nav-link:hover, .nav-link.active { color: var(--gold-bright); background: rgba(200,146,42,0.1); }
.nav-chevron { font-size: 10px; transition: transform var(--transition); flex-shrink: 0; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-toggle span { background: var(--heading); }
.dark-mode .nav-toggle span { background: #fff; }

/* Dropdowns */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dark-mode .nav-dropdown {
  background: #020b18;
  border-color: rgba(200,146,42,0.2);
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -15px; left: 0; right: 0;
  height: 15px;
  background: transparent;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  color: #4e4840;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.dark-mode .nav-dropdown a { color: rgba(255,255,255,0.72); }
.nav-dropdown a:hover { color: var(--gold-bright); background: rgba(200,146,42,0.08); }

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 640px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.dark-mode .mega-menu {
  background: #020b18;
  border-color: rgba(200,146,42,0.2);
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -15px; left: 0; right: 0;
  height: 15px;
  background: transparent;
}
.nav-item:hover .mega-menu { display: grid; }
.mega-col-title {
  font-size: small;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,146,42,0.2);
}
.mega-col a {
  display: block;
  color: #64594e;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 0;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.dark-mode .mega-col a { color: rgba(255,255,255,0.68); }
.mega-col a:hover { color: var(--gold-bright); padding-left: 6px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 10000;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  z-index: 9998;
  overflow-y: auto;
  padding: 0 0 6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1),
              opacity  0.42s ease,
              visibility 0.42s;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%) 1;
}
.dark-mode .mobile-nav { background: #030d1a; }
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }

.mobile-nav-item { border-bottom: 1px solid var(--border); }
.dark-mode .mobile-nav-item { border-bottom-color: rgba(255,255,255,0.06); }

.mobile-nav-row {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}
.mobile-nav-label {
  flex: 1;
  display: block;
  color: var(--heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 0;
  transition: color 0.22s;
}
.dark-mode .mobile-nav-label { color: rgba(255,255,255,0.88); }
.mobile-nav-label:hover { color: var(--gold-bright); }

.mobile-chevron-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0.6rem 0.4rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.65rem;
  transition: color 0.22s, transform 0.32s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
}
.dark-mode .mobile-chevron-btn { color: rgba(255,255,255,0.45); }
.mobile-chevron-btn:hover,
.mobile-chevron-btn[aria-expanded="true"] { color: var(--gold-bright); }
.mobile-chevron-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-chevron-btn i {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.28s ease;
  background: rgba(200,146,42,0.03);
  border-top: 0px solid transparent;
}
.mobile-sub.open {
  max-height: 600px;
  padding-bottom: 0.5rem;
  border-top: 1px solid rgba(200,146,42,0.1);
}
.dark-mode .mobile-sub { background: rgba(200,146,42,0.04); }
.mobile-sub a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s, padding-left 0.22s;
}
.dark-mode .mobile-sub a { color: rgba(255,255,255,0.55); }
.mobile-sub a i {
  width: 14px;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}
.mobile-sub a:hover { color: var(--gold-bright); background: rgba(200,146,42,0.07); padding-left: 2rem; }
.mobile-sub a:hover i { opacity: 1; }

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 1.25rem 0;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(200,146,42,0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.46);
  color: #fff;
}

/* Theme switch */
#theme-switch {
  border: none;
  height: 40px;
  width: 40px;
  padding: 0;
  border-radius: 50%;
  background: rgba(11,31,58,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
@media (max-width: 768px) {
    .whatsapp-icon  { position: fixed; margin-left: 1rem; bottom: 5%; left: 4%; }

}
.dark-mode #theme-switch { background: rgba(255,255,255,0.1); }
#theme-switch:hover { background: rgba(200,146,42,0.2); }
#theme-switch i { color: #0b1f3a; font-size: 15px; }
.dark-mode #theme-switch i { color: rgba(255,255,255,0.8); }
#theme-switch i:last-child { display: none; }
.dark-mode #theme-switch i:first-child { display: none; }
.dark-mode #theme-switch i:last-child { display: block; }

/* Btn Premium Diag */
.btn-premium-diag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: white !important;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  font-size: 0.6rem;
  font-weight: 700;
  width: fit-content;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
/* Hide label text on tight viewports, keep icon */
@media (max-width: 1160px) {
  .btn-premium-diag .btn-content span { display: none; }
  .btn-premium-diag { padding: 9px 11px; margin-left: 4px; }
}
@media (max-width: 768px) {
  .btn-premium-diag { display: none; }
  .mobile-nav .btn-premium-diag { display: inline-flex; margin-top: 10%; }
}
.btn-content { display: flex; align-items: center; gap: 12px; z-index: 2; }
.btn-content i { font-size: 1.1rem; transition: transform 0.4s ease; }
.shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.2), transparent);
  transition: none;
  z-index: 1;
}
.btn-premium-diag:hover {
  color: #fff !important;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200,146,42,0.3);
}
.btn-premium-diag:hover .btn-content i { transform: rotate(15deg) scale(1.1); color: #fff; }
.btn-premium-diag:hover .shimmer { left: 100%; transition: all 0.8s ease; }
.btn-premium-diag:active { transform: translateY(-1px); }
.dark-mode .btn-premium-diag {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border: 1.5px solid var(--gold);
}

/* Back-link override for xidmet pages — not fixed, part of flow */
.back-link {
  position: fixed;
  top: 84px;
  left: 22px;
  z-index: 9997;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.dark-mode .back-link { background: var(--bg-card); border-color: var(--border); color: var(--text-muted); }
.back-link:hover { color: var(--gold); border-color: var(--gold); }
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1080px) {
  .nav-menu         { display: none; }
  .nav-toggle       { display: flex; }
  .btn-premium-diag { display: none; }
  #theme-switch     { margin-left: auto; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #f0ebe0; }
.dark-mode #footer { background: #071426; }
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-tagline-txt { font-size: 0.8125rem; color: #64594e; line-height: 1.8; margin-bottom: 1.5rem; }
.dark-mode .footer-tagline-txt { color: rgba(255,255,255,0.5); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.875rem; }
.footer-contact-text { font-size: 0.8125rem; color: #4e4840; line-height: 1.6; }
.dark-mode .footer-contact-text { color: rgba(255,255,255,0.55); }
.footer-contact-item i { color: var(--gold) !important; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.25rem;
  transition: var(--transition);
}
.footer-wa-btn:hover { background: #20b858; transform: translateY(-1px); }
.footer-col-title { font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 0.8125rem;
  color: #64594e;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dark-mode .footer-col-links a { color: rgba(255,255,255,0.5); }
.footer-col-links a::before { content: ""; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.footer-col-links a:hover { color: var(--gold); padding-left: 4px; }
.dark-mode .footer-col-links a:hover { color: var(--gold-bright); }
.footer-expert-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 0.5rem;
}
.dark-mode .footer-expert-form {
  background: rgba(255,255,255,0.04);
  border-color: rgba(200,146,42,0.18);
}
.footer-expert-form h4 { font-size: 0.75rem; font-weight: 700; color: #0b1f3a; margin-bottom: 0.5rem; }
.dark-mode .footer-expert-form h4 { color: #fff; }
.footer-expert-form p { font-size: 0.6875rem; color: #64594e; margin-bottom: 1rem; line-height: 1.6; }
.dark-mode .footer-expert-form p { color: rgba(255,255,255,0.4); }
.footer-expert-form input {
  width: 100%;
  padding: 10px 13px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.8125rem;
  outline: none;
  margin-bottom: 8px;
  transition: border-color var(--transition);
}
.dark-mode .footer-expert-form input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.footer-expert-form input::placeholder { color: var(--text-light); }
.dark-mode .footer-expert-form input::placeholder { color: rgba(255,255,255,0.28); }
.footer-expert-form input:focus { border-color: var(--gold); }
.footer-expert-form button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.footer-expert-form button:hover { opacity: 0.9; }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.dark-mode .footer-bottom { border-top-color: rgba(255,255,255,0.07); }
.footer-copy { font-size: 0.6875rem; color: #9c9487; }
.dark-mode .footer-copy { color: rgba(255,255,255,0.3); }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 6px; }
.trust-badge {
  padding: 5px 12px;
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 50px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: center; }
  
}
/* İkonların ümumi stili */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #c08d3e; /* Sizin saytdakı qızılı rəng tonu */
    color: #c08d3e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

/* Üzərinə gəldikdə (Hover) effekti */
.social-link:hover {
    background-color: #c08d3e;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Dark/Light Mod Uyğunluğu --- */
/* Əgər saytınızda .dark-mode klassı istifadə olunursa */
body.dark-mode .social-link {
    border-color: #e2b36b;
    color: #e2b36b;
}

/* Əgər sistem rənginə görə dəyişirsə */
@media (prefers-color-scheme: dark) {
    .social-link {
        border-color: #e2b36b;
        color: #e2b36b;
    }
}
.social-icons-container {
    display: flex;
    gap: 15px; /* İkonlar arası məsafə */
    margin-top: 25px; /* Əlaqə məlumatlarından olan məsafə */
    flex-wrap: wrap; /* Mobil ekranda sığmasa aşağı düşməsi üçün */
}
/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 13%;
  left: 2%;
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .back-to-top { bottom: 11%; left: 3%; }
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: #fff; box-shadow: 0 5px 15px rgba(212,175,55,0.4); }

.whatsapp-icon {
  position: fixed;
  left: 3%;
  bottom: 5%;
  scale: 3.3;
  transition: 0.4s;
  z-index: 99;
}
.whatsapp-icon:hover { scale: 3.9; transform: translateY(-1px); }

.feature-image {
  width: calc(100% + 56px); /* padding-i kompensasiya etmək üçün */
  margin: -28px -28px 20px -28px;
  height: 160px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05); /* Hover olanda şəkil azca böyüsün */
}

/* İkonu şəklin üzərinə çıxarmaq istəsən (opsional) */
.feature-icon {
  position: relative;
  z-index: 2;
  margin-top: -40px; /* Şəklin üzərinə çıxması üçün */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* --- RISK SECTION STYLES --- */
.risk-section {
  padding: 80px 0;
  background: var(--bg-alt); /* style.css-də təyin etdiyin rəng */
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.risk-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.risk-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
@media (max-width:768px) {
  .risk-section{
    padding: 50px 1rem;
  }
  
}
.dark-mode .fa-tag{
  color: skyblue;
}

.risk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.risk-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Rəng çalarları */
.risk-icon--red { background: rgba(231, 76, 60, 0.1); color: #e74c3c; }
.risk-icon--orange { background: rgba(230, 126, 34, 0.1); color: #e67e22; }
.risk-icon--navy { background: rgba(27, 66, 128, 0.1); color: var(--navy); }

.risk-level {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.risk-level--high { background: #fee2e2; color: #991b1b; }
.risk-level--mid { background: #fef3c7; color: #92400e; }

.risk-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.risk-list {
  list-style: none;
}

.risk-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.4;
}

.risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.risk-dot--red { background: #ef4444; }
.risk-dot--orange { background: #f59e0b; }

/* Responsive düzəliş */
@media (max-width: 768px) {
  .risk-grid {
    grid-template-columns: 1fr;
  }
}   
/* --- AUDIT SECTION STYLES --- */
.audit-section {
    padding: 100px 0;
    background: var(--nav-bg);
}

/* Grid Sistemi */
.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Modul Kartları */
.audit-module {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.audit-module:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

/* Kartın nömrəsi (Arxa fon kimi) */
.audit-module-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

/* İkon və Şəkil Sahəsi */
.audit-module-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 146, 42, 0.1);
    color: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.audit-module:hover .audit-module-icon {
    background: var(--gold);
    color: #fff;
}

.audit-module-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.audit-module-desc {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.audit-module-duration {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    width: 100%;
}

/* --- AUDIT TIMELINE (Zaman Xətti) --- */
.audit-timeline {
    margin-top: 80px;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.audit-tl-title {
    font-size: 1.5rem;
    font-weight: 750;
    color: var(--heading);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audit-tl-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.audit-tl-step {
    position: relative;
    z-index: 2;
    flex: 1;
}

.audit-tl-dot {
    width: 16px;
    height: 16px;
    background: var(--border);
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--bg-alt);
    transition: 0.3s;
}

.audit-tl-dot--gold {
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

.audit-tl-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-bottom: 32px; /* Dot ilə eyni səviyyəyə gətirmək üçün */
}

.audit-tl-day {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.audit-tl-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

/* Responsive */
@media (max-width: 991px) {
    .audit-tl-steps {
        flex-direction: column;
        gap: 30px;
    }
    .audit-tl-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .audit-section { padding: 60px 1.5rem; }
    .audit-grid { grid-template-columns: 1fr; }
}
/* --- BENEFITS SECTION (NO-CARD DESIGN) --- */
.benefits-section {
    padding: 100px 0;
    background: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px 40px; /* Bloklar arası geniş məsafə */
    margin-top: 60px;
    scale: .98;
}

.benefits-block {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid var(--border); /* İncə sol xətt */
    transition: all 0.4s ease;
}

.benefits-block:hover {
    border-left-color: var(--gold);
}

.benefits-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.benefits-block-icon {
    font-size: 1.8rem;
    color: var(--gold);
    background: rgba(200, 146, 42, 0.05);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.benefits-block:hover .benefits-block-icon {
    background: var(--gold);
    color: #fff;
    transform: rotate(-10deg);
}
.benefit-image{
 background-image: url(images/agreement\'.jpg);
  width: 100%;
  height: 240px;
  background-position: top center;
 margin-top: 5%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.benefits-block-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.benefits-list {
    display: grid;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.5;
    transition: 0.3s;
}

.benefits-list li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.7;
}

.benefits-block:hover .benefits-list li {
    color: var(--text);
}

/* Kiçik ekranlar üçün düzəliş */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-block {
        padding-left: 15px;
    }
    
    .benefits-block-title {
        font-size: 1.3rem;
    }
}

   #komanda {
  padding: 5rem 0 3rem;
  background: var(--off-white);
  overflow: hidden;
}

.experts-carousel-wrap {
  position: relative;
  padding: 0 0 3rem;
  isolation: isolate;
}





/* Track outer */
.experts-track-outer {
  overflow: hidden;
  margin: 0 72px;
}

/* Track */
.experts-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Individual card */
.exp-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  background:var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.exp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(200,146,42,0.35);
}

/* Image area */
.exp-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.exp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  filter: grayscale(15%);
}
.exp-card:hover .exp-card-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Overlay on hover */
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.exp-card:hover .exp-card-overlay {
  opacity: 1;
}
.exp-overlay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.exp-overlay-tags span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(200,146,42,0.75);
  border-radius: 50px;
  padding: 4px 10px;
  border: 1px solid rgba(200,146,42,0.5);
}

/* Body */
.exp-card-body {
  padding: 1.5rem;
}
.exp-card-role {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.exp-card-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.exp-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.exp-card-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.exp-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(1, 1, 0, 1);
  background: var(--haqqimizda-title);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 50px;  
  padding: 4px 10px;
  transition: background 0.2s, border-color 0.2s;
}
.exp-card:hover .exp-cert-badge {
  background: var(--haqqimizda-title);
  border-color: var(--border);
}



/* Dots */
.exp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.exp-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
  .exp-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}
@media (max-width: 640px) {
  .exp-card {
    flex: 0 0 85%;
    min-width: 85%;
  }
  .experts-track-outer {
    margin: 0 48px;
  }
  .exp-prev { left: 4px; }
  .exp-next { right: 4px; }
  .exp-card-img-wrap { height: 200px; }
}

/* Light mode overrides */
body:not(.dark-mode) #komanda {
  background: var(--off-white);
}
body:not(.dark-mode) .exp-card {
  background: #ffffff;
  border-color: var(--border);
}
body:not(.dark-mode) .exp-card-name {
  color: var(--navy);
}
body:not(.dark-mode) .exp-cert-badge {
  background: var(--off-white);
  color: var(--navy);
}
body:not(.dark-mode) .exp-card:hover .exp-cert-badge {
  background: var(--bg-secondary);
  color: var(--navy);
}


/* Yenilənmiş Slayd Oxları Dizaynı */
.exp-arrow {
  position: absolute;
  top: 68%; /* Kartların mərkəzinə daha yaxın */
  transform: translateY(-50%);
  z-index: 25;
  width: 54px;
  height: 54px;
  border-radius: 12px; /* Dairəvi deyil, müasir künclü (radius-lg uyğun) */
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Sol ox */
.exp-prev { 
  left: 30px; 
}

/* Sağ ox */
.exp-next { 
  right: 30px; 
}

/* Hover effekti */
.exp-arrow:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  box-shadow: 0 10px 25px rgba(11, 31, 58, 0.15);
  transform: translateY(-50%) scale(1.1);
}

/* Aktiv basılma anı */
.exp-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Dark mode üçün uyğunlaşdırma */
body.dark-mode .exp-arrow {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--gold);
}

body.dark-mode .exp-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Mobil cihazlarda oxların görünüşünü tənzimləmə */
@media (max-width: 768px) {
  .exp-arrow {
    width: 42px;
    height: 42px;
    font-size: 14px;
    top: auto;
    bottom: -10px; /* Mobildə aşağıya, nöqtələrin yanına keçir */
    transform: none;
    display: none;
  }
  
  .exp-prev { left: 2%; }
  .exp-next { right: 2%; }
  
  .exp-arrow:hover {
    transform: scale(1.05);
  }
  

}


@media (max-width: 640px) {

  .exp-card {
    flex: 0 0 100%; 
    min-width: 100%;
  }


  .experts-track-outer {
    margin: 0 20px; 
  }


  .experts-track {
    gap: 24px; 
  }
}

.btn-primary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 14px 28px;
  clip-path: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0; height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: #071426;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.btn-content i {
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

/* Parıltı Animasiyası (Shimmer) */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 146, 42, 0.2),
    transparent
  );
  transition: none;
  z-index: 1;
}

/* Hover Effektləri */
.btn-premium-diag:hover {
  color: #fff !important;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 146, 42, 0.3);
}

.btn-premium-diag:hover .btn-content i {
  transform: rotate(15deg) scale(1.1);
  color: #fff;
}

.btn-premium-diag:hover .shimmer {
  left: 100%;
  transition: all 0.8s ease;
}
.section-header-center { text-align: center; margin-bottom: 3.5rem; }
.section-header-center .section-desc { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,146,42,0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,146,42,0.42); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  animation: fade-in-up 0.65s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════
   MENECER KARTI — manager-card.css
   ASR Development Consulting Group
   xidmet-05.css faylına əlavə edin və ya ayrı link edin
   ══════════════════════════════════════════════════════════ */

/* ── Wrapper ───────────────────────────────────────────── */
.manager-card-wrap {
  max-width: 960px;
  margin: 0 auto 3.5rem;
  padding: 0 24px;
}

/* ── Kart ─────────────────────────────────────────────── */
.manager-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: box-shadow 0.35s, border-color 0.35s;
}

/* Yuxarı qızıl xətt (CTA box-dakı kimi) */
.manager-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1b4280, var(--gold));
  z-index: 5;
}

.manager-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 146, 42, 0.4);
}

/* ── Sol sütun: Şəkil ─────────────────────────────────── */
.manager-card-img-col {
  position: relative;
}

.manager-card-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.manager-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(10%);
  transition: transform 0.55s ease, filter 0.4s ease;
  display: block;
}

.manager-card:hover .manager-card-img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Şəkil üzərindəki gradient overlay */
.manager-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 50%,
    var(--bg-card) 100%
  );
  pointer-events: none;
}

/* "Baş Menecer" badge — şəkilin sol-alt küncündə */
.manager-badge-wrap {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 4;
}

.manager-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50px;
  padding: 7px 16px;
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.35);
}

.manager-badge i {
  font-size: 0.7rem;
}

/* ── Sağ sütun: Məlumat ───────────────────────────────── */
.manager-card-body {
  padding: 2.25rem 2.5rem 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* Eyebrow */
.manager-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.manager-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

/* Ad */
.manager-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--heading);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.manager-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* Dark mode: title rəngi */
body.dark-mode .manager-title {
  color: var(--gold);
}

/* Divider */
.manager-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 1rem 0;
}

/* Bio */
.manager-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.manager-bio strong {
  color: var(--heading);
  font-weight: 700;
}

/* ── Stats sətri ──────────────────────────────────────── */
.manager-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.manager-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.manager-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

body.dark-mode .manager-stat-num {
  color: var(--gold);
}

.manager-stat-lbl {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.manager-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Sertifikat badge-lər ─────────────────────────────── */
.manager-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 1.5rem;
}

.manager-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--heading);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  transition: background 0.2s, border-color 0.2s;
}

.manager-cert-badge i {
  color: var(--gold);
  font-size: 0.65rem;
}

.manager-card:hover .manager-cert-badge {
  background: var(--bg-secondary);
  border-color: rgba(200, 146, 42, 0.3);
}

body.dark-mode .manager-cert-badge {
  background: var(--bg-secondary);
  color: var(--heading);
}

/* ── CTA düymələri ────────────────────────────────────── */
.manager-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.manager-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 1.5px solid var(--navy);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  text-decoration: none;
}

.manager-btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.manager-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none;
}

.manager-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

body.dark-mode .manager-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

body.dark-mode .manager-btn-primary:hover {
  background: #e4a832;
  border-color: #e4a832;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .manager-card {
    grid-template-columns: 260px 1fr;
  }

  .manager-card-img-wrap {
    min-height: 360px;
  }

  .manager-card-body {
    padding: 1.75rem 1.75rem 1.75rem 1.25rem;
  }

  .manager-name {
    font-size: 1.5rem;
  }
}

/* Mobil: şəkil yuxarı, məlumat aşağı */
@media (max-width: 640px) {
  .manager-card {
    grid-template-columns: 1fr;
  }

  .manager-card-img-wrap {
    min-height: 300px;
    max-height: 320px;
  }

  /* Mobil: overlay sağdan aşağıya dönür */
  .manager-card-img-overlay {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      var(--bg-card) 100%
    );
  }

  .manager-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .manager-stats {
    gap: 0.75rem;
    padding: 0.875rem 1rem;
  }

  .manager-stat-num {
    font-size: 1.25rem;
  }

  .manager-cta {
    flex-direction: column;
  }

  .manager-btn-primary,
  .manager-btn-ghost {
    justify-content: center;
    width: 100%;
  }
}

/* Çox kiçik ekranlar */
@media (max-width: 400px) {
  .manager-card-wrap {
    padding: 0 12px;
  }

  .manager-card-body {
    padding: 1.25rem;
  }
}

/* ── Light mode spesifik ─────────────────────────────── */
body:not(.dark-mode) .manager-card {
  background: #ffffff;
}

body:not(.dark-mode) .manager-stats {
  background: var(--off-white);
}

body:not(.dark-mode) .manager-cert-badge {
  background: var(--off-white);
  color: var(--navy);
}

body:not(.dark-mode) .manager-cert-badge i {
  color: var(--gold);
}

/* Light mode overrides */
body:not(.dark-mode) #komanda {
  background: var(--off-white);
}
body:not(.dark-mode) .exp-card {
  background: #ffffff;
  border-color: var(--border);
}
body:not(.dark-mode) .exp-card-name {
  color: var(--navy);
}
body:not(.dark-mode) .exp-cert-badge {
  background: var(--off-white);
  color: var(--navy);
}
body:not(.dark-mode) .exp-card:hover .exp-cert-badge {
  background: var(--bg-secondary);
  color: var(--navy);
}
@media(min-width:768px){
/* .dark-mode .exp-card:hover .exp-cert-badge{
  background-color: red;
} */

}
/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section { background: var(--bg); padding: 80px 0; }
.cta-box {
  max-width: 760px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #1b4280 , var(--gold));
}
.cta-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.cta-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800;
  color: var(--heading); margin-bottom: 14px; line-height: 1.3;
}
.cta-title em { color: #1b4280 ; font-style: normal; }
.dark-mode .cta-title em { color: var(--gold); }
.cta-desc {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Section standard helpers */
.section { padding: 88px 0; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--eyebrow, var(--accent));
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--heading); line-height: 1.2; margin-bottom: 16px;
}
.section-title em { color: #1b4280 ; font-style: normal; }
.dark-mode .section-title em { color: var(--gold); }
.section-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin: auto; }


/* MOBİL REJİM ÜÇÜN (Ekran kiçiləndə oxların kənara daşmaması üçün) */
@media (max-width: 768px) {
  .exp-prev {
    left: 5px;  /* Mobildə daxilə doğru çəkilir */
  }
  
  .exp-next {
    right: 5px; /* Mobildə daxilə doğru çəkilir */
  }
}
/* ── REDUCED MOTION ─────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════
   3. TABLE STYLES — Clients Table (Müştərilər Cədvəli)
   ═══════════════════════════════════════════════════════════════ */
.clients-section{
  padding: 0% 3%;
}
/* ── Table Wrapper ── */
.clients-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ── Table Toolbar ── */
.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.table-search {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.table-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.table-search input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.8125rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease;
}

.dark-mode .table-search input {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.table-search input::placeholder {
  color: var(--text-muted);
}

.table-search input:focus {
  border-color: var(--gold);
}

/* Filter Buttons */
.table-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.3);
}

/* ── Table ── */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.clients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.clients-table thead {
  background: var(--bg-secondary);
}

.clients-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.clients-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.clients-table tbody tr:hover {
  background: var(--bg-secondary);
}

.clients-table tbody tr:last-child {
  border-bottom: none;
}

.clients-table td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  color: var(--text);
}

/* Column: Logo */
.col-logo {
  width: 60px;
}

.client-logo-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.clients-table tbody tr:hover .client-logo-box {
  border-color: var(--gold);
  transform: scale(1.05);
}

.client-logo-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Column: Name */
.col-name {
  min-width: 180px;
}

.col-name strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}

.client-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Column: Sector */
.col-sector {
  white-space: nowrap;
}

.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sector-qida {
  background: rgba(207, 94, 18, 0.1);
  color: #cf5e12;
  border: 1px solid rgba(207, 94, 18, 0.2);
}

.sector-horeca {
  background: rgba(200, 146, 42, 0.1);
  color: var(--gold);
  border: 1px solid rgba(200, 146, 42, 0.2);
}

.sector-saglamliq {
  background: rgba(25, 122, 58, 0.1);
  color: #197a3a;
  border: 1px solid rgba(25, 122, 58, 0.2);
}

.dark-mode .sector-saglamliq {
  color: #5bc97a;
}

.sector-kend {
  background: rgba(27, 66, 128, 0.1);
  color: #1b4280;
  border: 1px solid rgba(27, 66, 128, 0.2);
}

.dark-mode .sector-kend {
  color: #4d87f5;
}

.sector-dovlet {
  background: rgba(11, 31, 58, 0.08);
  color: var(--navy);
  border: 1px solid rgba(11, 31, 58, 0.15);
}

.dark-mode .sector-dovlet {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Column: Services */
.col-services {
  min-width: 240px;
}

.service-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sv-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  background: var(--bg-secondary);
  color: var(--text-muted);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.clients-table tbody tr:hover .sv-tag {
  background: rgba(200, 146, 42, 0.08);
  color: var(--gold);
  border-color: rgba(200, 146, 42, 0.25);
}

/* Column: Status */
.col-status {
  white-space: nowrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-active {
  background: rgba(25, 122, 58, 0.1);
  color: #197a3a;
  border: 1px solid rgba(25, 122, 58, 0.2);
}

.dark-mode .status-active {
  color: #5bc97a;
}

.status-active i {
  font-size: 6px;
  color: #25d366;
}

.status-completed {
  background: rgba(27, 66, 128, 0.1);
  color: var(--navy);
  border: 1px solid rgba(27, 66, 128, 0.2);
}

.dark-mode .status-completed {
  color: #4d87f5;
}

.status-completed i {
  font-size: 0.625rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE TABLE DESIGN (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .table-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .table-search {
    max-width: 100%;
  }

  .table-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .clients-table th,
  .clients-table td {
    padding: 0.875rem 1rem;
  }

  .col-logo {
    width: 50px;
  }

  .client-logo-box {
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE TABLE VIEW (≤ 640px) — CARD LAYOUT
   ═══════════════════════════════════════════════════════════════ */



@media (max-width: 640px) {

  /* thead gizlət */
  .clients-table thead {
    display: none;
  }

  /* Hər sətir ayrı kart olur */
  .clients-table tbody tr {
    display: block;
    padding: 1rem 1.25rem 0.75rem;
    margin-bottom: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .clients-table tbody tr:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 4px 18px rgba(200, 146, 42, 0.10);
  }

  /* Loqo + ad birlikdə yuxarıda göstər */
  .clients-table td.col-logo,
  .clients-table td.col-name {
    display: inline-flex;
    vertical-align: middle;
    padding: 0.25rem 0;
    border-bottom: none;
  }

  .clients-table td.col-logo {
    width: auto;
    margin-right: 0.75rem;
    align-items: center;
  }

  .clients-table td.col-logo::before,
  .clients-table td.col-name::before {
    display: none;
  }

  /* Qalan sütunlar — etiket + dəyər */
  .clients-table td.col-sector,
  .clients-table td.col-services,
  .clients-table td.col-status {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }

  .clients-table td.col-status {
    border-bottom: none;
    padding-bottom: 0.25rem;
  }

  /* data-label etiketlər */
  .clients-table td[data-label]::before {
    content: attr(data-label);
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 80px;
    flex-shrink: 0;
    padding-top: 3px;
  }
}

@media (max-width: 480px) {
  .clients-table tbody tr {
    padding: 0.875rem 1rem 0.625rem;
    margin-bottom: 0.75rem;
  }

  .clients-table td.col-logo {
    margin-right: 0.5rem;
  }

  .client-logo-box {
    width: 36px;
    height: 36px;
  }

  .col-name strong {
    font-size: 0.8125rem;
  }

  .service-tags-row {
    gap: 3px;
  }

  .sv-tag {
    font-size: 0.5rem;
    padding: 2px 6px;
  }
}


  .modal-overlay,
  .modal-container,
  .mstep-panel,
  .mstep-chev,
  .mstep-icon,
  .mstep-num,
  .modal-hero-img img {
    transition: none !important;
    animation: none !important;
  }

  .modal-container {
    transform: none !important;
  }


  
/* ═══════════════════════════════════════════════════════════════
   CUSTOMERS CAROUSEL — MOBILE VIEW
   ═══════════════════════════════════════════════════════════════ */

.table-desktop {
  display: block;
}

.table-mobile {
  display: none;
}

.customers-carousel-wrapper {
  position: relative;
  padding: 1.5rem 0;
}

.customers-carousel-track-outer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.customers-carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.customer-card {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.customer-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.customer-card-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.customer-card-logo img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.customer-card-name {
  flex: 1;
}

.customer-card-name strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}

.customer-card-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.customer-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.customer-card-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.customer-card-label {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.customer-card-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.carousel-arrow {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1rem;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-prev {
  left: -20px;
}

.carousel-next {
  right: -20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding: 0 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Mobile Carousel Adjustments */
@media (max-width: 640px) {
  .table-desktop {
    display: none;
  }

  .table-mobile {
    display: block;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .carousel-prev {
    left: 4px;
  }

  .carousel-next {
    right: 4px;
  }
}

@media (min-width:768px) {
  .carousel-dots{
    display: none;
  }
}

/* ── DARK MODE OVERRIDES ─────────────────────────────────────── */
.dark-mode #komanda { background: var(--bg-secondary); }
.dark-mode .exp-card { background: var(--bg-card); border-color: var(--border); }
.dark-mode .exp-cert-badge { background: var(--bg-secondary); color: var(--text); }
.dark-mode .risk-level--high { background: rgba(239,68,68,0.15); color: #fca5a5; border-color: rgba(239,68,68,0.2); }
.dark-mode .risk-level--mid { background: rgba(245,158,11,0.15); color: #fcd34d; border-color: rgba(245,158,11,0.2); }
