/* ============================================
   SAUBHAGYA INTERNATIONAL LIMITED
   Corporate Website — Style System
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --color-primary: #6E00F5;
  --color-primary-dark: #4A00B8;
  --color-primary-light: #9D32FF;
  --color-accent: #E300B8;
  --color-accent-soft: #FF49C7;

  /* Backgrounds */
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F2F2F2;
  --color-bg-surface: #ECECF3;
  --color-bg-lavender: #F3E7FF;
  --color-bg-deep: #26004F;

  /* Text */
  --color-text-dark: #181A22;
  --color-text-medium: #5F6473;
  --color-text-light: #8A8FA0;
  --color-text-white: #FFFFFF;

  /* Borders & Dividers */
  --color-border: #E3E5EC;
  --color-border-light: #EDEEF2;

  /* Functional */
  --color-success: #1FCB3A;
  --color-success-bg: #EAFBEA;
  --color-warning: #E6A200;
  --color-error: #D93025;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6E00F5 0%, #A100FF 48%, #FF00A8 100%);
  --gradient-hero: linear-gradient(160deg, #2B005B 0%, #6E00F5 55%, #FF00A8 100%);
  --gradient-card-hover: linear-gradient(135deg, #F4EFFF 0%, #FAFAFC 100%);
  --gradient-accent: linear-gradient(135deg, #6E00F5 0%, #FF00A8 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Line Heights */
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(110, 0, 245, 0.14);
  --shadow-card-hover: 0 10px 28px rgba(227, 0, 184, 0.24);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 80px;
}


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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

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

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


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text-dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  color: var(--color-text-medium);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-md);
}

.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-success { color: var(--color-success); }
.text-medium { color: var(--color-text-medium); }
.text-white { color: var(--color-text-white); }

.fw-medium { font-weight: var(--fw-medium); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold { font-weight: var(--fw-bold); }


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

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--bg-light {
  background-color: var(--color-bg-light);
}

.section--bg-surface {
  background-color: var(--color-bg-surface);
}

.section--bg-lavender {
  background-color: var(--color-bg-lavender);
}

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

.section--bg-dark h2,
.section--bg-dark h3,
.section--bg-dark h4 {
  color: var(--color-text-white);
}

.section--bg-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.section--bg-dark .section__label {
  color: var(--color-accent-soft);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-medium);
}

.section--bg-dark .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}


/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }
.flex--gap-lg { gap: var(--space-lg); }
.flex--gap-xl { gap: var(--space-xl); }


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.btn--primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text-white);
}

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

.btn--secondary:hover {
  background: var(--color-bg-lavender);
  color: var(--color-primary);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-text-white);
}

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

.btn--ghost:hover {
  background: var(--color-bg-lavender);
}

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

.btn--lg {
  font-size: var(--text-lg);
  padding: 16px 36px;
}

.btn__icon {
  width: 18px;
  height: 18px;
}


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

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

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-lavender);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  font-size: 24px;
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--text-base);
  color: var(--color-text-medium);
  line-height: var(--lh-normal);
}

.card--highlight {
  border-color: var(--color-primary);
  position: relative;
}

.card--highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}


/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: all var(--transition-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header__logo--footer {
  margin-bottom: 0;
}

.header__logo-image {
  display: block;
  height: 42px;
  width: auto;
  max-width: 42px;
  object-fit: contain;
}

.header__logo-image--footer {
  height: 48px;
  max-width: 280px;
}

.footer__logo-badge {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 8px 12px;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--fw-extrabold);
  font-size: var(--text-lg);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  line-height: var(--lh-tight);
}

.header__logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-medium);
  letter-spacing: 0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-text-medium);
  padding: 8px 10px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-primary);
  background: var(--color-bg-lavender);
}

.header__cta {
  margin-left: 0;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}


/* --- Hero --- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: calc(var(--header-height) + var(--space-5xl)) 0 var(--space-5xl);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 31, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(209, 0, 184, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero__label-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-text-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #E84FD0, #9B5BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

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

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-xs);
}


/* --- Stats Bar --- */
.stats-bar {
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stats-bar__item {
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

.stats-bar__value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.stats-bar__label {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  margin-top: var(--space-xs);
}


/* --- Service Cards --- */
.service-card {
  background: var(--gradient-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--color-text-white);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 32px;
  color: var(--color-primary-dark);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text-white);
  margin-bottom: var(--space-sm);
}

.service-card__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.service-card__link:hover {
  gap: var(--space-sm);
}


/* --- Trust Section --- */
.trust-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.trust-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-success-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-size: 20px;
}

.trust-item__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.trust-item__text {
  font-size: var(--text-base);
  color: var(--color-text-medium);
}


/* --- Process Section --- */
.process-step {
  text-align: center;
  position: relative;
  padding: var(--space-xl);
}

.process-step__number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  margin: 0 auto var(--space-lg);
}

.process-step__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
}


/* --- FAQ --- */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-item__question {
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-white);
  width: 100%;
  text-align: left;
  border: none;
  transition: background var(--transition-fast);
}

.faq-item__question:hover {
  background: var(--color-bg-light);
}

.faq-item__icon {
  font-size: var(--text-xl);
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-medium);
  line-height: var(--lh-relaxed);
}


/* --- CTA Banner --- */
.cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(209, 0, 184, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner__title {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.cta-banner__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-banner .btn--white {
  background: var(--color-bg-white);
  color: var(--color-primary);
  border-color: transparent;
}

.cta-banner .btn--white:hover {
  background: var(--color-bg-lavender);
  color: var(--color-primary);
}


/* --- Footer --- */
.footer {
  background: var(--color-bg-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-lg);
}

.footer__heading {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-white);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  align-items: flex-start;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__cin {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* --- Page Header (Inner Pages) --- */
.page-header {
  background: var(--gradient-hero);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
}

.page-header__title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  margin-bottom: var(--space-sm);
}

.page-header__breadcrumb {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-header__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.page-header__breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}


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

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(90, 0, 214, 0.1);
}

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


/* --- Tables --- */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

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

.data-table th {
  background: var(--color-bg-surface);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border);
}

.data-table td {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  color: var(--color-text-medium);
  border-bottom: 1px solid var(--color-border-light);
}

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

.data-table tr:hover td {
  background: var(--color-bg-light);
}


/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.badge--primary {
  background: var(--color-bg-lavender);
  color: var(--color-primary);
}

.badge--success {
  background: var(--color-success-bg);
  color: var(--color-success);
}


/* --- Document Card --- */
.doc-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

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

.doc-card__info {
  flex: 1;
}

.doc-card__title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.doc-card__meta {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.doc-card__action {
  flex-shrink: 0;
}


/* --- Content Blocks --- */
.content-block {
  margin-bottom: var(--space-2xl);
}

.content-block h3 {
  margin-bottom: var(--space-md);
}

.content-block p {
  margin-bottom: var(--space-md);
}

.content-block ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-block ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-medium);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}


/* --- Info Box --- */
.info-box {
  background: var(--color-bg-lavender);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.info-box p {
  color: var(--color-text-dark);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.info-box--warning {
  background: #FEF9E7;
  border-left-color: var(--color-warning);
}

.info-box--success {
  background: var(--color-success-bg);
  border-left-color: var(--color-success);
}


/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}


/* --- Responsive --- */
@media (max-width: 1024px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }

  .hero__title { font-size: var(--text-4xl); }
  .hero__stats { gap: var(--space-xl); }

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

  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .two-col--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }

  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-3xl) 0; }
  .section__header { margin-bottom: var(--space-2xl); }

  .hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    min-height: 0;
  }

  .header__logo-image {
    height: 36px;
    max-width: 36px;
  }

  .header__logo-image--footer {
    height: 40px;
    max-width: 220px;
  }

  .hero__title { font-size: var(--text-3xl); }
  .hero__subtitle { font-size: var(--text-base); }
  .hero__stats { flex-direction: column; gap: var(--space-lg); }

  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-toggle { display: flex; }

  /* Mobile Nav Open */
  .header--mobile-open .header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
  }

  .header--mobile-open .header__cta {
    display: inline-flex;
    margin-left: 0;
    margin-top: var(--space-sm);
  }

  .header--mobile-open .header__nav-link {
    padding: 12px 16px;
    width: 100%;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .stats-bar__item:not(:last-child)::after { display: none; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: var(--space-2xl) var(--space-lg);
  }

  .cta-banner__title { font-size: var(--text-2xl); }

  .page-header {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .page-header__title { font-size: var(--text-3xl); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }
}
