/* ============================================================
   GANJ MOLIYA — Design System
   .NET 10 MVC Banking Website
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --color-primary: #F29F05;
  --color-primary-dark: #F25C05;
  --color-primary-gradient: linear-gradient(135deg, #F29F05 0%, #F25C05 100%);
  --color-primary-light: rgba(242, 159, 5, 0.1);
  --color-primary-hover: rgba(242, 159, 5, 0.05);
  --color-primary-border: rgba(242, 159, 5, 0.2);

  /* Text Colors */
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-text-white: #ffffff;

  /* Background Colors */
  --color-bg-page: #f8f8f5;
  --color-bg-white: #ffffff;
  --color-bg-light: #f1f5f9;
  --color-bg-dark: #1e293b;
  --color-bg-dark-card: #334155;

  /* Border Colors */
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* Status Colors */
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --text-hero: clamp(2.5rem, 5vw, 4.5rem);
  --text-h1: clamp(2rem, 4vw, 3rem);
  --text-h2: clamp(1.5rem, 3vw, 2rem);
  --text-h3: 1.25rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-caption: 0.75rem;

  /* Spacing */
  --section-py: 6rem;
  --section-py-sm: 3rem;
  --container-max: 1280px;
  --gap-sm: 0.5rem;
  --gap-md: 1rem;
  --gap-lg: 1.5rem;
  --gap-xl: 2rem;
  --gap-2xl: 3rem;

  /* Shapes */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.2s ease;
  --transition-slow: all 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-page);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: var(--section-py) 0;
}

.section--sm {
  padding: var(--section-py-sm) 0;
}

.grid {
  display: grid;
  gap: var(--gap-lg);
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
  line-height: 1.2;
}

.text-hero {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.1;
}

.text-h1 {
  font-size: var(--text-h1);
  font-weight: 800;
}

.text-h2 {
  font-size: var(--text-h2);
  font-weight: 700;
}

.text-h3 {
  font-size: var(--text-h3);
  font-weight: 700;
}

.text-body {
  font-size: var(--text-body);
}

.text-small {
  font-size: var(--text-small);
}

.text-caption {
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-white {
  color: var(--color-text-white);
}

.text-success {
  color: var(--color-success);
}

.text-danger {
  color: var(--color-danger);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  padding: 12px 32px;
  font-weight: 700;
  font-size: var(--text-small);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-primary-gradient);
  color: var(--color-text-white);
  border: none;
  padding: 14px 34px;
}

.btn--primary:hover {
  box-shadow: var(--shadow-lg);
  opacity: 0.92;
}

.btn--secondary {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  background: var(--color-bg-light);
  border-color: var(--color-text-muted);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: transparent;
  padding: 8px 16px;
}

.btn--ghost:hover {
  background: var(--color-primary-light);
}

.btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border-color: transparent;
}

.btn--dark:hover {
  background: #0f172a;
}

.btn--lg {
  padding: 16px 40px;
  font-size: var(--text-body);
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: 8px 20px;
  font-size: var(--text-caption);
}

.btn--block {
  width: 100%;
}

/* ── Cards ── */
.card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  transition: var(--transition-base);
}

.card:hover {
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--gap-lg);
  transition: var(--transition-base);
}

.card:hover .card__icon {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.card__icon .material-symbols-outlined {
  font-size: 28px;
}

.card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--gap-sm);
}

.card__text {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--gap-lg);
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-small);
  transition: var(--transition-base);
}

.card__link:hover {
  gap: 8px;
}

.card__link .material-symbols-outlined {
  font-size: 16px;
}

.card__actions {
  display: flex;
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
}

.badge--primary {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.badge--success {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
}

.badge--danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-danger);
}

.badge--warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.badge--info {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-info);
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  text-decoration: none;
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__logo span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

/* ── Header Navigation (Mega-Menu) ── */
.header__nav {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-item {
  position: relative;
}

.header__nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: var(--font-family);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.header__nav-btn:hover,
.header__nav-item.active .header__nav-btn {
  color: var(--color-primary);
}

.header__nav-item.active .header__nav-btn::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.header__nav-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.header__nav-item.open .header__nav-arrow {
  transform: rotate(180deg);
}

/* ── Mega Menu Dropdown ── */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  min-width: 520px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.header__nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  padding: var(--gap-xl);
}

.mega-menu__heading {
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--gap-md);
}

.mega-menu__link {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-md);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-base);
}

.mega-menu__link:hover {
  background: var(--color-primary-hover);
}

.mega-menu__link .material-symbols-outlined {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 20px;
  margin-top: 2px;
}

.mega-menu__link strong {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.mega-menu__link p {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.mega-menu__link:hover strong {
  color: var(--color-primary);
}

/* ── Header Actions ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.header__lang {
  display: none;
  align-items: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 2px;
}

@media (min-width: 640px) {
  .header__lang {
    display: flex;
  }
}

.header__lang a {
  padding: 4px 10px;
  font-size: var(--text-caption);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  text-decoration: none;
  line-height: 1.4;
}

.header__lang a:hover {
  color: var(--color-text-primary);
}

.header__lang a.active {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-primary);
}

@media (min-width: 1024px) {
  .header__phone {
    display: flex;
  }
}

.header__phone .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-primary);
}

.header__cta {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--color-primary-gradient);
  color: var(--color-text-white);
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: var(--text-small);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
  }
}

.header__cta:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-md);
}

.header__cta .material-symbols-outlined {
  font-size: 16px;
}

/* ── Mobile menu toggle ── */
.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}

/* ── Mobile Navigation (Accordion) ── */
.header__mobile-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--gap-md) 0;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.header__mobile-nav.open {
  display: block;
}

.mobile-accordion {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--gap-lg) var(--gap-xl);
  font-family: var(--font-family);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.mobile-accordion__trigger:hover {
  color: var(--color-primary);
}

.mobile-accordion__trigger .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.mobile-accordion.open .mobile-accordion__trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.mobile-accordion__panel {
  display: none;
  padding: 0 var(--gap-xl) var(--gap-md);
}

.mobile-accordion.open .mobile-accordion__panel {
  display: block;
}

.mobile-accordion__panel a {
  display: block;
  padding: 10px var(--gap-lg);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-accordion__panel a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.mobile-accordion__cta {
  padding: var(--gap-lg) var(--gap-xl);
}

/* ── Mega-menu backdrop/overlay ── */
.mega-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.mega-menu-overlay.active {
  display: block;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-md) 0;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  color: var(--color-text-muted);
  font-size: var(--text-caption);
}

/* ── Footer ── */
.footer {
  background: var(--color-bg-page);
  border-top: 1px solid var(--color-border);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-2xl);
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
  text-decoration: none;
}

.footer__logo img {
  height: 24px;
  width: auto;
}

.footer__logo span {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.footer__description {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--gap-lg);
}

.footer__social {
  display: flex;
  gap: var(--gap-md);
}

.footer__social a {
  color: var(--color-text-muted);
  transition: var(--transition-base);
}

.footer__social a:hover {
  color: var(--color-primary);
}

.footer__social .material-symbols-outlined {
  font-size: 22px;
}

.footer__column h5 {
  font-weight: 700;
  font-size: var(--text-small);
  margin-bottom: var(--gap-lg);
  color: var(--color-text-primary);
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.footer__column a {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}

.footer__column a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--gap-xl);
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
}

.footer__payments img {
  height: 20px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--transition-base);
}

.footer__payments img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ── Hero Sections ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0 8rem;
  }
}

.hero--home {
  background: var(--color-bg-page);
}

.hero--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.hero--dark h1,
.hero--dark h2 {
  color: var(--color-text-white);
}

.hero--banner {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero--banner h1 {
  color: var(--color-text-white);
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--gap-lg);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--gap-xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.hero__users {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  margin-top: var(--gap-2xl);
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 4px solid var(--color-bg-page);
  object-fit: cover;
}

.hero__avatars img+img {
  margin-left: -12px;
}

.hero__bg-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--color-primary-gradient);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ── Calculator Widget ── */
.calculator {
  background: var(--color-bg-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  padding: var(--gap-xl);
  position: relative;
  z-index: 1;
}

.calculator__tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--gap-xl);
}

.calculator__tab {
  flex: 1;
  padding-bottom: var(--gap-md);
  font-size: var(--text-small);
  font-weight: 700;
  text-align: center;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition-base);
}

.calculator__tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.calculator__currency {
  display: flex;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
}

.calculator__currency-btn {
  flex: 1;
  padding: 8px;
  border-radius: var(--radius-md);
  font-size: var(--text-caption);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  background: var(--color-bg-light);
  color: var(--color-text-secondary);
}

.calculator__currency-btn.active {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.calculator__field {
  margin-bottom: var(--gap-lg);
}

.calculator__field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--gap-sm);
}

.calculator__label {
  font-size: var(--text-small);
  font-weight: 600;
}

.calculator__value {
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--color-primary);
}

.calculator__slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 3px solid var(--color-bg-white);
  box-shadow: var(--shadow-md);
}

.calculator__result {
  background: var(--color-primary-hover);
  border: 1px solid var(--color-primary-border);
  border-radius: var(--radius-xl);
  padding: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}

.calculator__result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}

.calculator__result-divider {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-primary-border);
  padding-top: var(--gap-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Exchange Rates ── */
.rates {
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--section-py-sm) 0;
}

.rates__layout {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .rates__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.rates__header {
  flex-shrink: 0;
}

.rates__header h3 {
  font-size: var(--text-h2);
  font-weight: 700;
  margin-bottom: var(--gap-sm);
}

.rates__table {
  width: 100%;
  flex: 1;
  overflow-x: auto;
}

.rates__table table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.rates__table thead th {
  padding-bottom: var(--gap-md);
  padding-left: var(--gap-md);
  padding-right: var(--gap-md);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.rates__table tbody td {
  padding: var(--gap-md);
  border-top: 1px solid var(--color-border-light);
}

.rates__currency-name {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.rates__currency-name strong {
  font-weight: 700;
}

.rates__currency-label {
  font-size: var(--text-caption);
  background: var(--color-bg-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

.rates__tabs {
  display: flex;
  gap: var(--gap-sm);
  margin-top: var(--gap-md);
}

.rates__tab {
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-bg-white);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
}

.rates__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.rates__tab.active {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border-color: var(--color-bg-dark);
}

/* ── Services Cards ── */
.services {
  padding: var(--section-py) 0;
  background: var(--color-bg-page);
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__header h2 {
  font-size: var(--text-h1);
  font-weight: 800;
  margin-bottom: var(--gap-md);
}

.services__header p {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Deposit/Loan Product Cards ── */
.product-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--gap-md);
}

.product-card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--gap-sm);
}

.product-card__text {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--gap-lg);
}

.product-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  padding: var(--gap-md) 0;
  border-top: 1px solid var(--color-border-light);
  margin-bottom: var(--gap-lg);
}

.product-card__stat-label {
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.product-card__stat-value {
  font-size: var(--text-h3);
  font-weight: 700;
}

.product-card__stat-value .text-primary {
  color: var(--color-primary);
}

.product-card__features {
  margin-bottom: var(--gap-lg);
  flex: 1;
}

.product-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm);
  font-size: var(--text-small);
}

.product-card__feature .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-card__actions {
  display: flex;
  gap: var(--gap-md);
  margin-top: auto;
}

.product-card__actions .btn {
  flex: 1;
}

/* ── Data Tables ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead th {
  padding: var(--gap-md);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: left;
  border-bottom: 2px solid var(--color-border);
}

.data-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-fast);
}

.data-table tbody tr:hover {
  background: var(--color-primary-hover);
}

.data-table tbody td {
  padding: var(--gap-md);
  font-size: var(--text-small);
}

.data-table--striped tbody tr:nth-child(even) {
  background: var(--color-bg-light);
}

.data-table--striped tbody tr:nth-child(even):hover {
  background: var(--color-primary-hover);
}

.data-table .highlight {
  color: var(--color-primary);
  font-weight: 700;
}

/* ── Alert / Notice ── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-md);
  padding: var(--gap-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--gap-xl);
}

.alert--warning {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert--info {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.alert--danger {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert__icon {
  flex-shrink: 0;
  font-size: 24px;
}

.alert--warning .alert__icon {
  color: var(--color-warning);
}

.alert--info .alert__icon {
  color: var(--color-info);
}

.alert--danger .alert__icon {
  color: var(--color-danger);
}

.alert__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.alert__text {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Forms ── */
.form-group {
  margin-bottom: var(--gap-lg);
}

.form-label {
  display: block;
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-secondary);
  margin-bottom: var(--gap-sm);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-body);
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  transition: var(--transition-base);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-input--error {
  border-color: var(--color-danger);
}

.form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input--success {
  border-color: var(--color-success);
}

.form-error {
  font-size: var(--text-caption);
  color: var(--color-danger);
  margin-top: 4px;
}

.form-phone-group {
  display: flex;
  gap: 0;
}

.form-phone-prefix {
  padding: 12px 16px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
}

.form-phone-group .form-input {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: 600;
  background: var(--color-bg-white);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-tab.active {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border-color: var(--color-bg-dark);
}

/* ── Sidebar Navigation ── */
.sidebar-nav {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
}

.sidebar-nav__title {
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--gap-md);
}

.sidebar-nav__item {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-md) var(--gap-md);
  border-radius: var(--radius-md);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.sidebar-nav__item:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.sidebar-nav__item.active {
  background: var(--color-primary);
  color: var(--color-text-white);
  font-weight: 600;
}

.sidebar-nav__item .material-symbols-outlined {
  font-size: 20px;
}

/* ── Search ── */
.search-box {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 var(--gap-md);
  transition: var(--transition-base);
}

.search-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.search-box .material-symbols-outlined {
  color: var(--color-text-muted);
  font-size: 20px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: var(--text-small);
  background: transparent;
}

/* ── Trust Section ── */
.trust {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--section-py-sm) 0;
  border-radius: var(--radius-xl);
  margin: var(--gap-xl) 0;
}

.trust__stat-number {
  font-size: var(--text-h1);
  font-weight: 800;
  color: var(--color-primary);
}

.trust__stat-label {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

/* ── Branch Cards ── */
.branch-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  margin-bottom: var(--gap-md);
  transition: var(--transition-base);
}

.branch-card:hover {
  border-color: var(--color-primary-border);
}

.branch-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap-md);
}

.branch-card__name {
  font-weight: 700;
}

.branch-card__detail {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--gap-sm);
}

.branch-card__detail .material-symbols-outlined {
  font-size: 16px;
  color: var(--color-primary);
}

/* ── Info Cards (top contact strip) ── */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-2xl);
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-card__icon .material-symbols-outlined {
  font-size: 24px;
}

.info-card__title {
  font-weight: 700;
  font-size: var(--text-body);
  margin-bottom: 2px;
}

.info-card__text {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}

/* ── Map ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  min-height: 400px;
  height: 100%;
}

.map-container iframe,
.map-container #map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ── Split Layout ── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-2xl);
}

@media (min-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout--sidebar {
    grid-template-columns: 280px 1fr;
  }

  .split-layout--form {
    grid-template-columns: 3fr 2fr;
  }
}

/* ── Mobile App Section ── */
.mobile-app {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.mobile-app h2 {
  color: var(--color-text-white);
}

.mobile-app__stores {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.mobile-app__store {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  color: var(--color-text-white);
}

.mobile-app__store:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-app__store-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}

.mobile-app__store-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.mobile-app__phone {
  position: relative;
}

.mobile-app__phone img {
  width: 280px;
  border-radius: 2rem;
  border: 6px solid #334155;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.mobile-app__phone::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: var(--color-primary);
  opacity: 0.25;
  filter: blur(40px);
  border-radius: 50%;
}

/* ── Projected Earnings Panel ── */
.earnings-panel {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border-radius: var(--radius-xl);
  padding: var(--gap-xl);
}

.earnings-panel h3 {
  color: var(--color-text-white);
  margin-bottom: var(--gap-lg);
}

.earnings-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap-sm) 0;
  font-size: var(--text-small);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.earnings-panel__row:last-of-type {
  border-bottom: none;
}

.earnings-panel__label {
  color: var(--color-text-muted);
}

.earnings-panel__value {
  font-weight: 700;
}

.earnings-panel__total {
  text-align: center;
  margin-top: var(--gap-lg);
  padding-top: var(--gap-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.earnings-panel__total-label {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--gap-sm);
}

.earnings-panel__total-value {
  font-size: var(--text-h1);
  font-weight: 900;
  color: var(--color-primary);
}

/* ── Collateral Icons ── */
.collateral-grid {
  display: flex;
  gap: var(--gap-xl);
  flex-wrap: wrap;
  padding: var(--gap-xl);
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

.collateral-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-sm);
  text-align: center;
}

.collateral-item__icon {
  width: 64px;
  height: 64px;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.collateral-item__icon .material-symbols-outlined {
  font-size: 28px;
}

.collateral-item__label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* ── Rate Cards ── */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-md);
}

.rate-card {
  padding: var(--gap-lg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  background: var(--color-bg-white);
}

.rate-card:hover {
  border-color: var(--color-primary-border);
}

.rate-card--highlight {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.rate-card__type {
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--gap-sm);
}

.rate-card__rate {
  font-size: var(--text-h1);
  font-weight: 900;
}

.rate-card__rate-suffix {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* ── Stat Cards ── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap-md);
}

.stat-card {
  padding: var(--gap-lg);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.stat-card__label {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-card__value {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-primary);
}

/* ── Pagination ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-md) 0;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.pagination__buttons {
  display: flex;
  gap: var(--gap-sm);
}

.pagination__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-white);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-text-secondary);
}

.pagination__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--gap-sm);
}

.mb-md {
  margin-bottom: var(--gap-md);
}

.mb-lg {
  margin-bottom: var(--gap-lg);
}

.mb-xl {
  margin-bottom: var(--gap-xl);
}

.mb-2xl {
  margin-bottom: var(--gap-2xl);
}

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--gap-sm);
}

.gap-md {
  gap: var(--gap-md);
}

.gap-lg {
  gap: var(--gap-lg);
}

.gap-xl {
  gap: var(--gap-xl);
}

/* ============================================================
   ABOUT SECTION — Page-Specific Styles
   ============================================================ */

/* ── Page Hero (inner pages) ── */
.hero--page {
  background: linear-gradient(135deg, #fdf8ef 0%, #fef3e0 50%, #fff7eb 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--color-border);
}

.hero--page .hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: var(--gap-md);
}

.hero--page .hero__subtitle {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.hero--page .breadcrumb {
  margin-bottom: var(--gap-lg);
}

/* ── About Mission / Values Grid ── */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-value-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--gap-2xl);
  text-align: center;
  transition: var(--transition-base);
}

.about-value-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.about-value-card .material-symbols-outlined {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: var(--gap-lg);
}

.about-value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--gap-sm);
}

.about-value-card p {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-xl);
  padding: var(--gap-2xl) 0;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stats-bar__value {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
}

.stats-bar__label {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 1px;
}

.timeline__item {
  position: relative;
  padding-bottom: var(--gap-2xl);
  padding-left: var(--gap-lg);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-page);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline__year {
  font-size: var(--text-small);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.timeline__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-xl);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-base);
}

.team-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo .material-symbols-outlined {
  font-size: 48px;
  color: #94a3b8;
}

.team-card__info {
  padding: var(--gap-lg);
}

.team-card__name {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.team-card__title {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Document Cards ── */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

@media (min-width: 640px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .doc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doc-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--gap-lg);
  transition: var(--transition-base);
}

.doc-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.doc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-card__icon .material-symbols-outlined {
  font-size: 24px;
}

.doc-card__title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.doc-card__meta {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  margin-bottom: var(--gap-sm);
}

.doc-card__download {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-base);
}

.doc-card__download:hover {
  color: var(--color-secondary);
}

/* ── News Cards ── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
}

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.news-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.news-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #fef3e0, #fdf8ef);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__image .material-symbols-outlined {
  font-size: 40px;
  color: var(--color-primary);
  opacity: 0.4;
}

.news-card__body {
  padding: var(--gap-xl);
}

.news-card__date {
  font-size: var(--text-caption);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--gap-sm);
}

.news-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--gap-sm);
  line-height: 1.4;
}

.news-card__excerpt {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--gap-lg);
}

.news-card__link {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-base);
}

.news-card__link:hover {
  color: var(--color-secondary);
}

/* ── Care / Initiative Cards ── */
.care-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
}

@media (min-width: 768px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.care-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.care-card:hover {
  box-shadow: var(--shadow-lg);
}

.care-card__image {
  width: 100%;
  aspect-ratio: 2/1;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.care-card__image .material-symbols-outlined {
  font-size: 48px;
  color: var(--color-primary);
  opacity: 0.4;
}

.care-card__body {
  padding: var(--gap-xl);
}

.care-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--gap-sm);
}

.care-card__desc {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Vacancy/Job Listings ── */
.job-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.job-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-xl);
  flex-wrap: wrap;
  transition: var(--transition-base);
}

.job-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.job-card__info h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.job-card__meta {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
}

.job-card__meta span {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-card__meta .material-symbols-outlined {
  font-size: 16px;
}

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-item {
  text-align: center;
  padding: var(--gap-xl);
}

.benefit-item .material-symbols-outlined {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: var(--gap-md);
}

.benefit-item h4 {
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Tender Table Cards ── */
.tender-table-wrapper {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tender-table {
  width: 100%;
  border-collapse: collapse;
}

.tender-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.tender-table td {
  padding: 1rem 1.5rem;
  font-size: var(--text-small);
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
}

.tender-table tr:last-child td {
  border-bottom: none;
}

.tender-table tr:hover td {
  background: rgba(242, 159, 5, 0.03);
}

.tender-table__title {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ── Section Titles ── */
.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--gap-sm);
}

.section__subtitle {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--gap-2xl);
  max-width: 600px;
}

/* ── Tab Pills ── */
.tab-pills {
  display: flex;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-2xl);
  flex-wrap: wrap;
}

.tab-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-bg-white);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
}

.tab-pill:hover,
.tab-pill.active {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

/* ── About Institutional Info Cards ── */
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

@media (min-width: 768px) {
  .about-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .about-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-info-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--gap-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.about-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: var(--transition-base);
}

.about-info-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.about-info-card:hover::before {
  opacity: 1;
}

.about-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(242, 159, 5, 0.12), rgba(242, 159, 5, 0.06));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-info-card__icon .material-symbols-outlined {
  font-size: 26px;
}

.about-info-card__icon--license {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
  color: #10b981;
}

.about-info-card__icon--activity {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06));
  color: #3b82f6;
}

.about-info-card__icon--mission {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.06));
  color: #f59e0b;
}

.about-info-card__icon--insurance {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.06));
  color: #8b5cf6;
}

.about-info-card__icon--trademark {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(236, 72, 153, 0.06));
  color: #ec4899;
}

.about-info-card__content h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.about-info-card__content p {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── About Page Split Content (text + image side by side) ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-split__image {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fef3e0, #fdf8ef);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-split__image .material-symbols-outlined {
  font-size: 64px;
  color: var(--color-primary);
  opacity: 0.3;
}