/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto+Condensed:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --brand-blue: #48A0E3;
  --brand-blue-dark: #0D70B7;
  --brand-blue-deeper: #084a7a;
  --brand-magenta: #E42380;
  --brand-magenta-light: #f24d9e;

  /* Derived */
  --primary: #0a1628;
  --primary-light: #0e1f38;
  --primary-surface: #111d30;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-50: #f1f3f9;
  --gray-100: #e4e8f0;
  --gray-200: #cdd3de;
  --gray-400: #8892a4;
  --gray-500: #64738b;
  --gray-600: #475569;
  --gray-700: #334155;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64738b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  --gradient-magenta: linear-gradient(135deg, var(--brand-magenta) 0%, var(--brand-magenta-light) 100%);
  --gradient-hero: linear-gradient(135deg, #060d1a 0%, #0e1f38 50%, #132b4f 100%);
  --gradient-dark: linear-gradient(135deg, #0a1628 0%, #0e1f38 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.14);
  --shadow-brand: 0 8px 32px rgba(72, 160, 227, 0.3);
  --shadow-magenta: 0 8px 32px rgba(228, 35, 128, 0.25);

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;

  /* Layout */
  --container-max: 1240px;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(72, 160, 227, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ias-partner-link {
  display: inline-flex;
  align-items: center;
  margin-left: -18px;
}

.ias-partner-link img {
  height: 22px;
  width: auto;
  display: block;
}

/* ===== TAB NAVIGATION ===== */
.nav-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}

.nav-tab {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
  background: none;
  border: none;
  white-space: nowrap;
}

.nav-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--brand-blue);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-tab.active {
  color: var(--white);
}

.nav-tab.active::after {
  transform: scaleX(1);
}

.nav-contact-btn {
  margin-left: 16px;
  padding: 10px 26px;
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-brand);
  letter-spacing: 0.3px;
}

.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(72, 160, 227, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

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

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

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

/* ===== PAGE / TAB CONTENT SYSTEM ===== */
.tab-page {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
}

.tab-page.active {
  display: block;
  opacity: 1;
}

.tab-page.fade-in {
  animation: tabFadeIn 0.5s ease forwards;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* ===== COMMON SECTION ===== */
.page-section {
  padding: 80px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(72, 160, 227, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: rgba(72, 160, 227, 0.05);
}

.section-label i {
  font-size: 0.72rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading .accent {
  color: var(--brand-blue);
}

.section-heading .accent-m {
  color: var(--brand-magenta);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 400;
}

.section-desc.centered {
  margin: 0 auto;
  text-align: center;
}

.text-center {
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Geometric accents */
.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-geo-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(72, 160, 227, 0.12) 0%, transparent 70%);
  animation: geoFloat 12s ease-in-out infinite;
}

.hero-geo-2 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(228, 35, 128, 0.08) 0%, transparent 70%);
  animation: geoFloat 15s ease-in-out infinite reverse;
}

.hero-geo-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(72, 160, 227, 0.06) 0%, transparent 70%);
  animation: geoFloat 10s ease-in-out infinite 2s;
}

@keyframes geoFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

/* Grid lines pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(72, 160, 227, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 160, 227, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(228, 35, 128, 0.1);
  border: 1px solid rgba(228, 35, 128, 0.2);
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease forwards;
}

.hero-trust-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--brand-magenta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-trust-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-magenta-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.hero-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-title .line {
  display: block;
}

.hero-title .line-accent {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-magenta-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.hero-text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-brand);
  letter-spacing: 0.3px;
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(72, 160, 227, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeUp 0.8s ease 0.8s both;
}

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

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-showcase {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  position: relative;
}

.hero-module-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-module {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.hero-module:nth-child(4),
.hero-module:nth-child(5) {
  flex: 0 1 calc(33.333% - 12px);
}

.hero-module:hover {
  background: rgba(72, 160, 227, 0.08);
  border-color: rgba(72, 160, 227, 0.15);
  transform: translateY(-4px);
}

.hero-module i {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
  color: var(--brand-blue);
}

.hero-module:nth-child(2) i {
  color: var(--brand-magenta);
}

.hero-module:nth-child(4) i {
  color: #10b981;
}

.hero-module:nth-child(5) i {
  color: #a78bfa;
}

.hero-module:nth-child(6) i {
  color: var(--brand-magenta);
}

.hero-module span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating pill */
.float-pill {
  position: absolute;
  padding: 10px 20px;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(72, 160, 227, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatY 4s ease-in-out infinite;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.float-pill i {
  color: var(--brand-blue);
}

.float-pill.pill-1 {
  top: -16px;
  right: -20px;
}

.float-pill.pill-2 {
  bottom: -12px;
  left: -16px;
  animation-delay: 1.5s;
}

.float-pill.pill-2 i {
  color: var(--brand-magenta);
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--gradient-dark);
  padding: 100px 0 80px;
  color: var(--white);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-hero-content .section-label {
  border-color: rgba(228, 35, 128, 0.2);
  color: var(--brand-magenta);
  background: rgba(228, 35, 128, 0.05);
}

.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-hero-content h1 .accent {
  color: var(--brand-blue);
}

.about-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 32px;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.about-value:hover {
  background: rgba(72, 160, 227, 0.06);
  border-color: rgba(72, 160, 227, 0.15);
}

.about-value i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(72, 160, 227, 0.12);
  color: var(--brand-blue);
}

.about-value:nth-child(2) i {
  background: rgba(228, 35, 128, 0.12);
  color: var(--brand-magenta);
}

.about-value:nth-child(3) i {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.about-value:nth-child(4) i {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-value p {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* About visual panel */
.about-visual {
  position: relative;
}

.about-glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-xl);
  padding: 48px;
  backdrop-filter: blur(16px);
  text-align: center;
}

.about-badge-big {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 28px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
}

.about-badge-big i {
  font-size: 2.5rem;
  color: var(--white);
}

.about-glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-glass-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-stat-box {
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
}

.about-stat-box .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
}

.about-stat-box:nth-child(2) .number {
  color: var(--brand-magenta);
}

.about-stat-box:nth-child(3) .number {
  color: #10b981;
}

.about-stat-box .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* About Mission/Vision */
.about-mission {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mission-card {
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: var(--transition);
}

.mission-card:nth-child(1)::before {
  background: var(--gradient-brand);
}

.mission-card:nth-child(2)::before {
  background: var(--gradient-magenta);
}

.mission-card:nth-child(3)::before {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.mission-card:nth-child(4)::before {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}

.mission-card:nth-child(5)::before {
  background: var(--gradient-brand);
}

.mission-card:nth-child(6)::before {
  background: var(--gradient-magenta);
}

.mission-card:nth-child(4)::before {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}

.mission-card:nth-child(5)::before {
  background: var(--gradient-brand);
}

.mission-card:nth-child(6)::before {
  background: var(--gradient-magenta);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mission-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.mission-card:nth-child(1) .mission-card-icon {
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
}

.mission-card:nth-child(2) .mission-card-icon {
  background: rgba(228, 35, 128, 0.1);
  color: var(--brand-magenta);
}

.mission-card:nth-child(3) .mission-card-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.mission-card:nth-child(4) .mission-card-icon {
  background: rgba(167, 139, 250, 0.1);
  color: #7c3aed;
}

.mission-card:nth-child(5) .mission-card-icon {
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
}

.mission-card:nth-child(6) .mission-card-icon {
  background: rgba(228, 35, 128, 0.1);
  color: var(--brand-magenta);
}

.mission-card:nth-child(4) .mission-card-icon {
  background: rgba(167, 139, 250, 0.1);
  color: #7c3aed;
}

.mission-card:nth-child(5) .mission-card-icon {
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
}

.mission-card:nth-child(6) .mission-card-icon {
  background: rgba(228, 35, 128, 0.1);
  color: var(--brand-magenta);
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* About-history dark bg card overrides */
.about-history {
  background: var(--gradient-dark);
}

.about-history .section-label {
  color: var(--brand-blue);
  border-color: rgba(72, 160, 227, 0.2);
  background: rgba(72, 160, 227, 0.06);
}

.about-history .section-heading {
  color: var(--white);
}

.about-history .mission-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.about-history .mission-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.about-history .mission-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.about-history .mission-card:hover {
  background: rgba(72, 160, 227, 0.1);
  border-color: rgba(72, 160, 227, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ===== VİZYON & MİSYON SECTION ===== */
.about-vision-mission {
  background: var(--surface);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(72, 160, 227, 0.3);
}

.vm-card:hover::before {
  opacity: 1;
}

.vm-vision {
  border-top: 3px solid var(--brand-blue);
}

.vm-mission {
  border-top: 3px solid #7c3aed;
}

.vm-values {
  border-top: 3px solid #059669;
}

.vm-icon {
  width: 56px;
  height: 56px;
  background: rgba(72, 160, 227, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
}

.vm-mission .vm-icon {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.vm-values .vm-icon {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.97rem;
  margin: 0;
}

/* Expandable Content Logic */
.expandable-content {
  max-height: 110px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
}

.expandable-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--glass-bg));
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vm-card.is-expanded .expandable-content {
  max-height: 1000px; /* Large enough to fit content */
}

.vm-card.is-expanded .expandable-content::after {
  opacity: 0;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  color: var(--brand-magenta);
  text-decoration: underline;
}

.vm-card.is-expanded .read-more-btn i {
  transform: rotate(180deg);
}

.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.vm-list li i {
  color: #059669;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== TIMELINE SECTION ===== */
.about-timeline-section {
  background: var(--gradient-dark);
}

.about-timeline-section .section-label,
.about-timeline-section .section-heading {
  color: var(--white);
}

.about-timeline {
  position: relative;
  padding: 2rem 0;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(72, 160, 227, 0.5), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 32px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0 0 2.5rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-align: right;
  padding-top: 4px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 106px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--brand-blue);
  border-radius: 50%;
  border: 2px solid var(--dark-bg);
}

.timeline-content {
  grid-column: 3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.timeline-content:hover {
  background: rgba(72, 160, 227, 0.08);
  border-color: rgba(72, 160, 227, 0.25);
  transform: translateX(6px);
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .about-timeline::before {
    left: 70px;
  }

  .timeline-item {
    grid-template-columns: 60px 20px 1fr;
    gap: 0.75rem;
  }

  .timeline-item::after {
    left: 66px;
  }

  .timeline-year {
    font-size: 0.9rem;
  }
}

/* ===== APPROACH STEPS SECTION ===== */
.about-approach-section {
  background: var(--surface);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }
}

.approach-step {
  display: flex;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: var(--transition);
  align-items: flex-start;
}

.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(72, 160, 227, 0.3);
}

.approach-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.approach-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.approach-body h4 i {
  color: var(--brand-blue);
  font-size: 0.95rem;
}

.approach-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== SERVICES — FLIP CARDS ===== */
.services-page {
  background: var(--off-white);
}

.services-hero-section {
  background: var(--gradient-dark);
  padding: 100px 0 60px;
  color: var(--white);
  text-align: center;
}

.services-hero-section .section-heading {
  color: var(--white);
}

.services-hero-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== NEW SERVICES PAGE (HUB & SUB-VIEWS) ===== */
.services-page {
  background: var(--off-white);
  padding: 60px 0;
}

/* Master Diagram */
.erp-master-diagram {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto 60px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.emd-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.emd-line {
  stroke: var(--brand-blue);
  stroke-width: 2;
  stroke-dasharray: 6, 4;
  opacity: 0.4;
  animation: dashFlow 20s linear infinite;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -100;
  }
}

.emd-center {
  position: absolute;
  z-index: 3;
}

.emd-core {
  background: var(--gradient-dark);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: 4px solid var(--white);
}

.emd-core i {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--brand-blue);
}

.emd-core:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(72, 160, 227, 0.4);
}

.emd-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.emd-node {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 15px;
  width: 150px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
  cursor: pointer;
  transition: var(--transition);
  transform: translate(-50%, -50%);
}

.emd-node i {
  font-size: 1.5rem;
  color: var(--brand-magenta);
  margin-bottom: 8px;
  display: block;
}

.emd-node span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.emd-node:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%) translateY(-5px);
}

.emd-node:hover i {
  color: var(--brand-blue);
}

/* Node Positioning within 800x500 box */
.node-tl {
  top: 25%;
  left: 20%;
}

.node-tr {
  top: 25%;
  left: 80%;
}

.node-bl {
  top: 75%;
  left: 20%;
}

.node-br {
  top: 75%;
  left: 80%;
}

.node-top {
  top: 10%;
  left: 50%;
}

.node-bottom {
  top: 90%;
  left: 50%;
}

@media (max-width: 768px) {
  .erp-master-diagram {
    height: 700px;
  }

  .node-top {
    top: 8%;
    left: 50%;
  }

  .node-bottom {
    top: 92%;
    left: 50%;
  }

  .node-tl {
    top: 28%;
    left: 25%;
  }

  .node-tr {
    top: 28%;
    left: 75%;
  }

  .node-bl {
    top: 72%;
    left: 25%;
  }

  .node-br {
    top: 72%;
    left: 75%;
  }

  .emd-node {
    width: 120px;
    padding: 10px;
  }

  .emd-node span {
    font-size: 0.8rem;
  }
}

/* Categories Grid */
.module-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.cat-icon {
  width: 60px;
  height: 60px;
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-card:hover .cat-icon {
  background: var(--brand-blue);
  color: var(--white);
  transform: rotateY(180deg);
}

.category-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.category-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.cat-action {
  font-weight: 600;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.category-card:hover .cat-action {
  gap: 12px;
  color: var(--brand-magenta);
}

/* Catalog Hub Card Specifics — Elegant Design */
.catalog-hub-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 0 !important;
  border: 1px solid var(--gray-100) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  cursor: default !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-card-inner {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid var(--brand-blue);
  background: linear-gradient(to bottom, rgba(72, 160, 227, 0.02), var(--white));
}

.catalog-hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(72, 160, 227, 0.15) !important;
}

.hub-catalog-actions {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-catalog-hub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-brand);
  width: 100%;
  font-size: 0.95rem;
}

.btn-catalog-hub:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(72, 160, 227, 0.4);
  color: var(--white);
}

.catalog-hint-mini {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  opacity: 0.7;
}


/* ===== SUB-VIEWS (Details Pages) ===== */
#services-sub-views {
  display: none;
}

.service-sub-page {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.service-sub-page.active {
  display: block;
}

.sub-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 30px;
}

.btn-back {
  background: none;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--gray-100);
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: -10px;
  transition: var(--transition);
}

.btn-back:hover {
  background: var(--brand-blue);
  color: var(--white);
  gap: 12px;
}

.sub-title-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sub-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-dark);
  color: var(--brand-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.sub-title-area h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.sub-content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

/* Mini Flow Diagram & Advanced Flow */
.sub-diagram {
  margin-bottom: 50px;
  padding: 30px;
  background: var(--off-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

.mini-flow,
.advanced-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.advanced-flow {
  gap: 15px;
  /* Tighter gap for complex flows */
}

.mf-node {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 160px;
  position: relative;
  transition: var(--transition);
}

.advanced-flow .mf-node {
  padding: 12px 20px;
  min-width: 120px;
  font-size: 1rem;
}

.mf-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(72, 160, 227, 0.4);
}

.mf-node small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.mini-flow i.fa-arrow-right-long,
.advanced-flow i {
  color: var(--brand-magenta);
  font-size: 1.5rem;
}

/* Flex breaks for complex flows to push nodes to next line and use down arrows */
.flow-break {
  flex-basis: 100%;
  height: 0;
  margin: 0;
}

.flow-down-arrow {
  flex-basis: 100%;
  text-align: center;
  margin: 10px 0;
}

/* Sub Grid for module details (Updated for many modules) */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.sub-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--brand-blue);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.sub-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-left-color: var(--brand-magenta);
}

.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.sub-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  padding-right: 10px;
}

.sc-code {
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.sub-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
  flex-grow: 1;
}

/* Project Methodology CSS Timeline (Eski kodlar silindi) */

/* Project Methodology CSS Timeline */
.css-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.css-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--brand-magenta), var(--brand-blue));
  border-radius: 4px;
}

.timeline-step {
  position: relative;
  padding: 0 0 40px 80px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.ts-num {
  position: absolute;
  left: 10px;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.timeline-step:nth-child(even) .ts-num {
  background: var(--brand-magenta);
}

.timeline-step h5 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-top: 8px;
}

.timeline-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-step ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.timeline-step ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

/* Methodology & Catalog Layout */
.methodology-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .methodology-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.catalog-sidebar {
  position: sticky;
  top: 100px;
}

.catalog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border-top: 5px solid var(--brand-magenta);
  transition: var(--transition);
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.catalog-icon {
  font-size: 4rem;
  color: var(--brand-magenta);
  margin-bottom: 24px;
  display: inline-block;
  opacity: 0.9;
}

.catalog-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.catalog-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-brand);
  width: 100%;
  justify-content: center;
}

.btn-catalog:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(72, 160, 227, 0.4);
}

.catalog-hint {
  display: block;
  margin-top: 15px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}


/* ===== REFERENCES — FLIP CARDS ===== */
.references-page {
  background: var(--off-white);
}

.ref-hero-section {
  background: var(--gradient-dark);
  padding: 100px 0 60px;
  color: var(--white);
  text-align: center;
}

.ref-hero-section .section-heading {
  color: var(--white);
}

.ref-counter {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.ref-counter-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ref-card {
  height: 200px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ref-card .ref-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  background: rgba(72, 160, 227, 0.08);
  color: var(--brand-blue);
}

.ref-card:nth-child(even) .ref-logo-icon {
  background: rgba(228, 35, 128, 0.08);
  color: var(--brand-magenta);
}

.ref-card:nth-child(3n) .ref-logo-icon {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.ref-card .ref-company-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.ref-card .ref-sector {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Logo image in ref card */
.ref-card .ref-logo-img {
  width: 80px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: grayscale(20%);
  opacity: 1;
  transition: filter 0.3s ease;
}

.ref-card:hover .ref-logo-img {
  filter: grayscale(0%);
}

/* ===== HOME PAGE EXTENSIONS ===== */
.home-services-overview {
  background: var(--white);
  padding: 100px 0;
}

.home-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.home-service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  padding: 40px 28px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.btn-service-cta {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  cursor: pointer;
  transition: var(--transition);
}

.btn-service-cta:hover {
  color: var(--brand-magenta);
  gap: 12px;
}

/* Row 2 Centering (4th and 5th items) */
.home-service-card:nth-child(4),
.home-service-card:nth-child(5) {
  flex: 0 1 calc(33.333% - 24px);
}

.home-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.home-service-card:hover::before {
  transform: scaleX(1);
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.home-service-card:nth-child(2)::before {
  background: var(--gradient-magenta);
}

.home-service-card:nth-child(3)::before {
  background: linear-gradient(135deg, #10b981, #059669);
}

.home-service-card:nth-child(4)::before {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.home-service-card:nth-child(5)::before {
  background: var(--gradient-brand);
}

.home-service-card:nth-child(6)::before {
  background: var(--gradient-magenta);
}

.home-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  background: rgba(72, 160, 227, 0.08);
  color: var(--brand-blue);
}

.home-service-card:nth-child(2) .home-service-icon {
  background: rgba(228, 35, 128, 0.08);
  color: var(--brand-magenta);
}

.home-service-card:nth-child(3) .home-service-icon {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.home-service-card:nth-child(4) .home-service-icon {
  background: rgba(167, 139, 250, 0.08);
  color: #a78bfa;
}

.home-service-card:nth-child(5) .home-service-icon {
  background: rgba(72, 160, 227, 0.08);
  color: var(--brand-blue-dark);
}

.home-service-card:nth-child(6) .home-service-icon {
  background: rgba(228, 35, 128, 0.08);
  color: var(--brand-magenta);
}

.home-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.home-service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Home Stats Section */
.home-stats {
  background: var(--gradient-dark);
  padding: 80px 0;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.home-stat-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.home-stat-item:hover {
  background: rgba(72, 160, 227, 0.06);
  border-color: rgba(72, 160, 227, 0.15);
  transform: translateY(-6px);
}

.home-stat-item .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
}

.home-stat-item:nth-child(2) .stat-icon {
  background: rgba(228, 35, 128, 0.1);
  color: var(--brand-magenta);
}

.home-stat-item:nth-child(3) .stat-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.home-stat-item:nth-child(4) .stat-icon {
  background: rgba(167, 139, 250, 0.1);
  color: #a78bfa;
}

.home-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.home-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Home Sectors Marquee */
.home-sectors-marquee {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.home-sectors-marquee .section-heading {
  margin-bottom: 40px;
}

.sector-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.sector-track-wrapper::before,
.sector-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.sector-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.sector-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.sector-track {
  display: flex;
  gap: 30px;
  animation: marqueeScroll 40s linear infinite;
  width: fit-content;
}

.sector-card {
  width: 300px;
  height: 200px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sector-card:hover img {
  transform: scale(1.1);
}

.sector-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
}

.sector-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  transition: var(--transition);
  z-index: 3;
}

.sector-card:hover::after {
  border-color: var(--brand-blue);
  box-shadow: inset 0 0 20px rgba(72, 160, 227, 0.3);
}


/* Home Logo Marquee */
.home-logo-marquee {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
}

.home-logo-marquee .section-label {
  display: block;
  text-align: center;
  margin-bottom: 32px;
}

.logo-track-wrapper {
  overflow: hidden;
  position: relative;
}

.logo-track-wrapper::before,
.logo-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.logo-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.logo-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.logo-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  width: fit-content;
}

.logo-track img {
  width: 120px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(60%) opacity(0.7);
  transition: filter 0.3s ease;
  flex-shrink: 0;
  display: block;
}

.logo-track img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Home Problem-Solution Section */
.home-faq {
  background: var(--off-white);
  padding: 100px 0;
}

/* Home Problem-Solution Section - Improved grid logic */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 48px;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.faq-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  min-height: 160px; /* Force consistent visual weight */
  height: 100%;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(72, 160, 227, 0.15);
}

.faq-card .faq-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(228, 35, 128, 0.08);
  color: var(--brand-magenta);
}

.faq-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.faq-card > div:not(.faq-icon) {
  flex: 1;
}

.faq-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Home CTA Section */
.home-cta {
  background: var(--gradient-dark);
  padding: 80px 0;
  text-align: center;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.home-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.home-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HORIZONTAL TIMELINE ===== */
.timeline-page {
  background: var(--off-white);
}

.timeline-hero-section {
  background: var(--gradient-dark);
  padding: 100px 0 40px;
  color: var(--white);
  text-align: center;
}

.timeline-hero-section .section-heading {
  color: var(--white);
}

.timeline-scroll-section {
  background: var(--gradient-dark);
  padding: 0 0 80px;
  overflow: hidden;
}

.timeline-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 28px 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-blue) rgba(255, 255, 255, 0.05);
}

.timeline-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--brand-blue);
  border-radius: 10px;
}

.timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  min-width: max-content;
  padding-top: 60px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-magenta), var(--brand-blue));
  border-radius: 10px;
}

.tl-item {
  flex: 0 0 340px;
  position: relative;
  padding: 0 20px;
  cursor: default;
}

.tl-dot {
  position: absolute;
  top: 51px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--brand-blue);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(72, 160, 227, 0.15);
  transition: var(--transition);
}

.tl-item:nth-child(even) .tl-dot {
  background: var(--brand-magenta);
  box-shadow: 0 0 0 6px rgba(228, 35, 128, 0.15);
}

.tl-item:hover .tl-dot {
  transform: translateX(-50%) scale(1.3);
}

.tl-year {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 32px;
}

.tl-item:nth-child(even) .tl-year {
  color: var(--brand-magenta);
}

.tl-card {
  margin-top: 36px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  transition: var(--transition);
  min-height: 200px;
}

.tl-card:hover {
  background: rgba(72, 160, 227, 0.06);
  border-color: rgba(72, 160, 227, 0.15);
  transform: translateY(-6px);
}

.tl-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tl-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

.tl-card .tl-highlight {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  background: rgba(72, 160, 227, 0.1);
  border: 1px solid rgba(72, 160, 227, 0.15);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tl-item:nth-child(even) .tl-card .tl-highlight {
  background: rgba(228, 35, 128, 0.1);
  border-color: rgba(228, 35, 128, 0.15);
  color: var(--brand-magenta);
}

/* Timeline Scroll hint */
.timeline-hint {
  text-align: center;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timeline-hint i {
  animation: scrollHint 1.5s ease infinite;
}

@keyframes scrollHint {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}


/* ===== NEWSLETTER PAGE ===== */
#page-newsletter {
  background: var(--off-white);
}

.newsletter-hero {
  padding: 110px 0 60px;
  text-align: center;
  background: var(--gradient-dark);
}

.newsletter-hero .section-heading {
  color: var(--white);
}

.newsletter-hero .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-grid-section {
  padding: 60px 0 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.news-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-blue);
}

.news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-badge.linkedin {
  background: rgba(10, 102, 194, 0.9);
}

.news-badge.internal {
  background: rgba(228, 35, 128, 0.9);
}

.news-badge.digital {
  background: rgba(72, 160, 227, 0.9);
}

.news-image {
  height: 240px;
  overflow: hidden;
}

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

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.82rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.news-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.news-link {
  font-weight: 700;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.news-card:hover .news-link {
  color: var(--brand-magenta);
  gap: 12px;
}

/* Social Glass Card */
.newsletter-social {
  padding: 40px 0 100px;
}

.social-glass-card {
  background: var(--gradient-dark);
  border: 1px solid rgba(72, 160, 227, 0.2);
  border-radius: var(--border-radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.social-glass-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.social-info {
  position: relative;
  z-index: 2;
}

.social-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.social-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 500px;
}

.btn-linkedin {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #0a66c2;
  color: var(--white);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(10, 102, 192, 0.3);
}

.btn-linkedin:hover {
  background: #004182;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(10, 102, 192, 0.5);
}

.newsletter-live-feed {
  padding: 10px 0 100px;
}

.linkedin-feed-status {
  text-align: center;
  margin: 22px auto 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.linkedin-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.linkedin-feed-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.linkedin-feed-date {
  font-size: 0.8rem;
  color: var(--brand-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.linkedin-feed-text {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

.linkedin-feed-link {
  margin-top: auto;
  color: var(--brand-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.linkedin-feed-link:hover {
  color: var(--brand-magenta);
}

/* ===== TEAM PAGE ===== */
.team-page {
  background: var(--off-white);
}

.team-hero-section {
  background: var(--gradient-dark);
  padding: 80px 0 80px;
  color: var(--white);
  text-align: center;
}

.team-hero-section .section-heading {
  color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.team-avatar {
  height: 200px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(72, 160, 227, 0.15) 0%, transparent 60%);
}

.team-avatar i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.team-card:hover .team-avatar i {
  color: var(--brand-blue);
  transform: scale(1.1);
}

/* Avatar photo variant */
.team-avatar--photo {
  padding: 0;
  height: 280px;
  background: #ddd8d0;
  overflow: hidden;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  display: block;
  position: relative;
  z-index: 1;
}

.team-info {
  padding: 28px 20px;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.team-info .role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.team-card:nth-child(1) .team-info .role {
  color: var(--brand-magenta);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  background: var(--off-white);
}

.contact-hero {
  background: var(--gradient-dark);
  padding: 100px 0 60px;
  color: var(--white);
  text-align: center;
}

.contact-hero .section-heading {
  color: var(--white);
}

.contact-body {
  background: var(--white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* Google Maps wrapper */
.contact-map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  flex: 1;
  min-height: 160px;
}

.contact-map-wrapper .contact-map-link,
.contact-map-wrapper iframe {
  height: 100%;
  width: 100%;
  display: block;
}

.contact-map-wrapper:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.contact-map-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.contact-map-link iframe {
  pointer-events: none;
  /* tıklamayı <a>'ya yönlendirir */
}

.map-overlay-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  opacity: 0;
  transition: var(--transition);
}

.contact-map-link:hover .map-overlay-hint {
  opacity: 1;
}

.map-overlay-hint i {
  color: var(--brand-blue);
}


.c-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.c-info-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.c-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(72, 160, 227, 0.1);
  color: var(--brand-blue);
}

.c-info-card:nth-child(2) .c-info-icon {
  background: rgba(228, 35, 128, 0.1);
  color: var(--brand-magenta);
}

.c-info-card:nth-child(3) .c-info-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.c-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.c-info-card p,
.c-info-card a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.c-info-card a:hover {
  color: var(--brand-blue);
}

.contact-form-card {
  background: var(--off-white);
  padding: 44px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(72, 160, 227, 0.1);
}

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

.btn-submit-brand {
  width: 100%;
  padding: 16px 32px;
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-brand);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(72, 160, 227, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-row img {
  height: 38px;
}

.footer-logo-row .f-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--brand-blue);
  padding-left: 4px;
}

/* ===== TESTIMONIALS SECTION ===== */
.ref-testimonials-section {
  background: var(--gray-50);
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
}

.testimonials-slider-container {
  margin-top: 50px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  min-height: 280px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 2rem;
  color: var(--brand-blue);
  opacity: 0.1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.slider-btn:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--brand-blue);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: var(--brand-blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-text {
    margin: 0 auto 40px;
  }

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

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

  .hero-visual {
    max-width: 480px;
    margin: 40px auto 0;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  .ref-flip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .extra-modules-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-tabs {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 100px 28px 40px;
    gap: 0;
    transition: var(--transition-slow);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
    align-items: stretch;
    z-index: 1000;
  }

  .nav-tabs.open {
    right: 0;
  }

  .nav-tab {
    height: auto;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-tab::after {
    display: none;
  }

  .nav-contact-btn {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-module:nth-child(5),
  .hero-module:nth-child(6) {
    display: none;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
  }


  .ref-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section-heading {
    font-size: 2rem;
  }

  .float-pill {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-module-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-stats-bar {
    gap: 20px;
  }

  .hero-stat .num {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-brand,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }

  .ref-flip-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 1.7rem;
  }

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

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== SCROLL ANIM ===== */
.anim-up,
.anim-left,
.anim-right,
.anim-zoom {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.anim-up {
  transform: translateY(40px);
}

.anim-left {
  transform: translateX(-50px);
}

.anim-right {
  transform: translateX(50px);
}

.anim-zoom {
  transform: scale(0.9);
}

.anim-up.visible,
.anim-left.visible,
.anim-right.visible,
.anim-zoom.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered Delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* Pulse Animation for attention */
@keyframes attention-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(72, 160, 227, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(72, 160, 227, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(72, 160, 227, 0);
  }
}

.pulse-primary {
  animation: attention-pulse 2s infinite;
}

/* ===== LEGAL MODAL ===== */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.legal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal-container {
  background: var(--primary-light);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(72, 160, 227, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.legal-modal-overlay.active .legal-modal-container {
  transform: translateY(0) scale(1);
}

.legal-modal-header {
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.btn-close-modal {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-close-modal:hover {
  background: var(--brand-magenta);
  transform: rotate(90deg);
}

.legal-modal-body {
  padding: 32px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: var(--brand-blue);
  border-radius: 10px;
}

.legal-modal-body h4 {
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-modal-body h4:first-child {
  margin-top: 0;
}

.f-column-legal a {
  cursor: pointer;
  transition: var(--transition);
  display: block;
  margin-bottom: 8px;
}

.f-column-legal a:hover {
  color: var(--brand-blue);
  padding-left: 4px;
}

/* ========================================= */
/* SUPPORT & FAQ SECTION */
/* ========================================= */
.faq-section {
  padding: 60px 0 100px;
}

/* Consolidated with line 2665 */
/* .faq-grid removed to avoid duplication */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--brand-dark);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--brand-blue);
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  background: var(--gray-50);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 24px;
  border-top: 1px solid var(--gray-100);
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Support Sidebar */
.support-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-contact-card {
  background: var(--gradient-brand);
  padding: 40px 30px;
  border-radius: 24px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-contact-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.support-contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.support-contact-card p {
  margin-bottom: 24px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.support-contact-card .btn-brand {
  background: var(--white);
  color: var(--brand-blue);
  width: 100%;
}

.help-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  color: var(--brand-dark);
  font-weight: 600;
  transition: var(--transition);
}

.help-link:hover {
  background: var(--gray-50);
  transform: translateX(5px);
  color: var(--brand-blue);
}

.help-link i {
  color: var(--brand-blue);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* FOOTER RESTURCTURE */
/* ========================================= */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.f-contact-item i {
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin-top: 4px;
}

.f-contact-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.f-contact-item:hover {
  color: var(--brand-blue);
}

/* ========================================= */
/* FAQ MODAL & ACCORDION */
/* ========================================= */
.faq-modal-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--brand-blue-light);
}

.faq-item.active {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--brand-blue);
  font-weight: 600;
}

.faq-item.active .faq-question h3 {
  color: var(--brand-blue);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--brand-magenta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--gray-50);
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 20px 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.faq-modal-footer {
  text-align: center;
  padding: 30px;
  background: var(--gray-50);
  border-radius: 16px;
  margin-bottom: 20px;
}

.faq-modal-footer h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-modal-footer p {
  margin-bottom: 20px;
  color: var(--gray-500);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}