.link-primary {
  color: #1e40af;
  text-decoration: underline;
  font-weight: 600;
}

.link-primary:hover {
  color: #1d4ed8;
}

/*
 * Foresenic Invole - Modern Clean Design
 * Inspired by clean, modern financial websites
 */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
  font-size: 15px;
}

/* Removed body padding - header is now in normal flow, not sticky */

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.is-hidden {
  display: none !important;
}

.col-6 {
  flex: 1;
}

.col-8 {
  flex: 1;
  max-width: 66.666667%;
}

.col-4 {
  flex: 1;
  max-width: 33.333333%;
}

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

/* ===== FORM UTILITIES ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: white;
  transition: border-color 0.2s ease;
}

.form-select:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-section {
  margin-bottom: 3rem;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Form checkbox styling */
.form-checkbox-label {
  display: flex;
  align-items: center;
  color: #374151;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.form-checkbox {
  margin-right: 0.5rem;
  cursor: pointer;
}

.form-checkbox-label:hover {
  color: #1f2937;
}

.form-section-header {
  color: #111827;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.form-section-header i {
  color: #1e40af;
  margin-right: 0.5rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* ===== UNIFIED HEADER SYSTEM ===== */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  z-index: 9999;
  transition: all 0.3s ease;
  width: 100%;
  padding: 1.25rem 0;
}

@media (min-width: 992px) {
  .main-header {
    position: absolute;
    top: 0;
  }
}

/* Homepage header variant removed - all headers now use consistent .main-header styling */

.header-brand {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 3.125rem;
  /* 50px at 16px base - responsive unit */
  width: auto;
  transition: transform 0.3s ease;
  max-height: 60px;
  /* Cap maximum size */
}

.logo-image:hover {
  transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  /* Increased gap for better spacing */
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 700;
}


.contact-btn {
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.contact-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 25, 47, 0.95);
  box-shadow: none;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem;
  z-index: 9998;
}

.mobile-nav.active {
  display: block !important;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: 0.5rem;
}

.mobile-nav-menu li:last-child {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ca8a04;
  color: #000000;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.header-cta-btn:hover {
  background: #a16207;
  color: #000000;
  transform: translateY(-1px);
}

.mobile-nav-cta {
  background: #ca8a04;
  color: #000000;
  font-weight: 800;
  text-align: center;
}

.mobile-nav-cta:hover {
  background: #a16207;
  color: #000000;
}


/* ===== HERO SECTION ===== */
.hero-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
  color: white;
  height: 600px;
  display: flex;
  align-items: center;
  animation: heroGlow 3s ease-in-out infinite alternate;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
}

.hero-slide.active {
  display: flex;
}

.hero-nav-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dot.active {
  background: white;
}

@keyframes heroGlow {
  0% {
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.2);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.15"><circle cx="20" cy="20" r="2"/><circle cx="10" cy="10" r="1"/><circle cx="30" cy="10" r="1"/><circle cx="10" cy="30" r="1"/><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: white;
}

.hero-title .highlight {
  color: #fbbf24;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image svg {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background: #1e40af;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-light {
  background: #ffffff;
  color: #1e3a8a;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-light:hover {
  background: #e0e7ff;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.25);
}

.btn-danger {
  background: #ef4444;
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25);
}

.btn-danger:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.35);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 4rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 6rem 0;
}

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

.section-white {
  background: #ffffff;
}

.section-muted {
  background: #f8fafc;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-subtitle {
  margin: 0;
}

.section-title {
  margin-bottom: 1rem;
  color: #111827;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HOME PAGE STYLES ===== */
.home-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.8)), url('../images/home-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}

.home-hero .hero-slider {
  height: 100%;
}

.home-hero .hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.home-hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-form-col {
  position: relative;
}

.hero-quick-form-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: 28px;
  z-index: 10;
  width: 100%;
  max-width: 390px;
}

.hero-quick-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}

.hero-quick-form__header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.hero-quick-form__header h3 {
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.hero-quick-form__header p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.hero-quick-form .form-row {
  display: flex;
  gap: 0.75rem;
}

.hero-quick-form .form-row.two-col .form-group {
  flex: 1;
}

.hero-quick-form .form-group {
  margin-bottom: 0.9rem;
}

.hero-quick-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

.hero-quick-form .form-input,
.hero-quick-form .form-select,
.hero-quick-form .form-textarea {
  padding: 0.6rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.hero-quick-form .form-textarea {
  min-height: 80px;
  resize: none;
}

.hero-quick-form .btn-block {
  width: 100%;
}

.hero-quick-form .quick-contact-form button[type="submit"] {
  margin-top: 10px;
}

.quick-contact-form .submit-loading {
  display: none;
}

.quick-contact-form.is-submitting .submit-text {
  display: none;
}

.quick-contact-form.is-submitting .submit-loading {
  display: inline;
}

.quick-contact-form {
  margin-bottom: 1rem;
}

.hero-quick-form .form-messages {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
}

.hero-quick-form .form-messages.success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.hero-quick-form .form-messages.error {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.hero-quick-form .form-privacy-note {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.hero-quick-form .form-privacy-note a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.hero-quick-form .form-privacy-note i {
  color: #10b981;
  margin-right: 0.25rem;
}

.hero-mobile-form-section {
  display: none;
  padding: 4rem 0;
  background: #f8fafc;
}

.hero-mobile-form-section .hero-quick-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  backdrop-filter: none;
}

.hero-mobile-form-section .section-header {
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .hero-quick-form-wrapper {
    display: none;
  }

  .hero-mobile-form-section {
    display: block;
  }
}

.hero-gradient-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.84) 0%, rgba(0, 0, 0, 0.74) 50%, rgba(30, 58, 138, 0.64) 100%);
}

.text-dark-yellow {
  color: #B8860B;
}

.bg-dark-yellow {
  background-color: #B8860B;
}

.border-dark-yellow {
  border-color: #B8860B;
}

.text-dark-yellow\/10 {
  color: rgba(184, 134, 11, 0.1);
}

.text-dark-yellow\/20 {
  color: rgba(184, 134, 11, 0.2);
}

.bg-dark-yellow\/10 {
  background-color: rgba(184, 134, 11, 0.1);
}

.bg-dark-yellow\/20 {
  background-color: rgba(184, 134, 11, 0.2);
}

.border-dark-yellow\/20 {
  border-color: rgba(184, 134, 11, 0.2);
}

.hero-review-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-review-card .review-title {
  color: #111827;
  font-weight: 800;
}

.hero-review-card .review-subtitle {
  color: #374151;
}

.hero-review-card .review-text {
  color: #4b5563;
}

.hero-review-card .star-icon {
  color: #fbbf24;
}

.scroll-discover-btn {
  transition: opacity 0.3s ease;
}

.scroll-discover-btn:hover {
  opacity: 0.8;
}

.home-why {
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/company-founding.webp');
  background-size: cover;
  background-position: center;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.home-why__card {
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.home-why__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #eef2ff;
  border-radius: 16px;
  color: #1e40af;
}

.card-media {
  height: 200px;
  border-radius: 0.75rem 0.75rem 0 0;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  background-size: cover;
  background-position: center;
}

.card-media--digital-forensics,
.card-media--computer-supply {
  background-image: url('../images/service-digital-forensics.webp');
}

.card-media--database {
  background-image: url('../images/service-crypto-recovery.webp');
}

.card-media--software {
  background-image: url('../images/service-romance-scam.webp');
}

.card-media--analytics,
.card-media--email-security {
  background-image: url('../images/service-investment-fraud.webp');
}

.card-media--infrastructure,
.card-media--phishing {
  background-image: url('../images/service-phishing-fraud.webp');
}

.card-media--security,
.card-media--identity-theft {
  background-image: url('../images/service-identity-theft.webp');
}

.card-media--bec {
  background-image: url('../images/service-bec-scam.webp');
}

.card-media--wire-fraud {
  background-image: url('../images/service-wire-fraud.webp');
}

.card-media--social-media {
  background-image: url('../images/service-social-media.webp');
}

.process-section {
  padding-top: 4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.process-card {
  text-align: left;
}

.process-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #eef2ff;
  border-radius: 16px;
  color: #1e40af;
}

.process-card h3 {
  color: #111827;
  margin-bottom: 1rem;
}

.process-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.home-cta {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
}

.home-cta .section-header h2 {
  color: white;
  font-weight: 900;
  font-size: 3rem;
}

.home-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.home-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mobile-app-section {
  display: none;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.mobile-app-section h2 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.mobile-app-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.mobile-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.quick-action {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 15px 25px rgba(15, 23, 42, 0.12);
  text-decoration: none;
  color: #1e40af;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(15, 23, 42, 0.16);
}

.quick-action__title {
  font-weight: 600;
  color: #1e293b;
}

.quick-action__subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.quick-action__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: #fff;
  font-size: 1.1rem;
}

.quick-action__icon--chat {
  background: #1e40af;
}

.quick-action__icon--call {
  background: #10b981;
}

.quick-action__icon--team {
  background: #f59e0b;
}

.quick-action__icon--stories {
  background: #8b5cf6;
}

.quick-action__icon i {
  font-size: 1.1rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.8)), url('../images/team-expertise.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-hero .hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.about-quick-actions {
  background: #f8fafc;
  color: #1e293b;
}

.about-quick-actions__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.about-quick-actions__intro h2 {
  color: #1e40af;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-quick-actions__intro p {
  color: #6b7280;
  margin: 0;
}

.about-story__timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.about-story__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-story__content {
  text-align: left;
}

.about-story__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-story__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-story__icon--challenge {
  background: #ef4444;
}

.about-story__icon--innovation {
  background: #10b981;
}

.about-story__heading {
  margin: 0;
  font-size: 1.5rem;
  color: #111827;
}

.about-text {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

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

.about-story__image {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.about-story__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story__milestone {
  background: #f0f8ff;
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.about-story__milestone-year {
  font-size: 2.5rem;
  color: #1e40af;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-story__milestone-text {
  color: #6b7280;
  font-size: 1rem;
}

.about-story__impact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
}

.about-story__impact-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-story__impact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-story__impact-title {
  margin: 0;
  font-size: 1.6rem;
  color: #111827;
}

.about-story__impact-text {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-story__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
}

.about-story__stat-value {
  font-size: 3rem;
  color: #1e40af;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.about-story__stat-label {
  color: #111827;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-story__stat-description {
  color: #6b7280;
  font-size: 0.9rem;
}

.about-expertise__image {
  margin: 3rem 0;
  border-radius: 1rem;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.about-expertise__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.about-expertise__card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
  text-align: left;
}

.about-expertise__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-expertise__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1e40af;
}

.about-expertise__card h3 {
  color: #111827;
  margin-bottom: 1rem;
}

.about-expertise__card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.about-values__item {
  text-align: left;
}

.about-values__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1e40af;
}

.about-values__item h3 {
  color: #111827;
  margin-bottom: 1rem;
}

.about-values__item p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.success-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/success-stories-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.success-hero .hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.success-stat {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.success-stat__value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.success-stat__title {
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-stat__subtitle {
  color: #6b7280;
  font-size: 0.875rem;
}

.success-stat__value--green {
  color: #10b981;
}

.success-stat__value--blue {
  color: #1e40af;
}

.success-stat__value--purple {
  color: #8b5cf6;
}

.success-stat__value--amber {
  color: #f59e0b;
}

.case-card {
  position: relative;
  overflow: hidden;
}

.case-card__meta {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.case-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.case-card__badge--blue {
  background: #dbeafe;
  color: #1e40af;
}

.case-card__badge--amber {
  background: #fef3c7;
  color: #f59e0b;
}

.case-card__badge--rose {
  background: #fef2f2;
  color: #ef4444;
}

.case-card__badge--violet {
  background: #f3e8ff;
  color: #8b5cf6;
}

.case-card__badge--emerald {
  background: #ecfdf5;
  color: #10b981;
}

.case-card__badge--sky {
  background: #dbeafe;
  color: #1e40af;
}

.case-card__badge--indigo {
  background: #e0e7ff;
  color: #3730a3;
}

.case-card__meta-value {
  color: #64748b;
  font-weight: 600;
  font-size: 0.85rem;
}

.case-card__metrics {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
}

.case-card__metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.875rem;
  color: #1f2937;
}

.case-card__metrics--green {
  background: #f0fdf4;
}

.case-card__metrics--amber {
  background: #fef3c7;
}

.case-card__metrics--rose {
  background: #fef2f2;
}

.case-card__metrics--violet {
  background: #f3e8ff;
}

.case-card__metrics--emerald {
  background: #ecfdf5;
}

.case-card__metrics--sky {
  background: #dbeafe;
}

.case-card__metrics--indigo {
  background: #e0e7ff;
}

.success-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.success-testimonial {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
}

.success-testimonial__rating {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.success-testimonial__quote {
  color: #374151;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.success-testimonial__author {
  font-weight: 600;
  color: #111827;
}

.success-testimonial__project {
  color: #6b7280;
  font-size: 0.875rem;
}

.testimonial-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/team-expertise.webp');
  background-size: cover;
  background-position: center;
}

.testimonial-hero__title {
  color: #ffffff;
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.testimonials-stat__value {
  font-size: 3rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.testimonials-stat__label {
  color: #6b7280;
  font-weight: 600;
}

.testimonial-card__badge {
  background: #dcfce7;
  color: #16a34a;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 600;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__rating {
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.testimonial-card__author {
  margin: 0 0 0.25rem 0;
  color: #111827;
  font-weight: 700;
}

.testimonial-card__role {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.testimonial-card__quote {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-video-card__preview {
  height: 200px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.testimonial-video-card__icon {
  font-size: 4rem;
  color: #ffffff;
}

.testimonial-video-card__preview--blue {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.testimonial-video-card__preview--pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.testimonial-video-card__preview--green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.testimonial-video-card__title {
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.testimonial-video-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.section-slate {
  background: #f1f5f9;
}

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

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.application-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(37, 99, 235, 0.85)), url('../images/apply-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.application-hero .container {
  padding-top: 90px;
}

.application-hero .hero-description {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
}

.application-hero .hero-cta {
  margin-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.application-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

.application-status {
  display: none;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.application-status--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #34d399;
}

.application-status--error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #f87171;
}

.application-form {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.application-section {
  margin-top: 2.5rem;
}

.application-section:first-of-type {
  margin-top: 0;
}

.application-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #0f172a;
}

.application-section-title i {
  font-size: 1.25rem;
}

.application-section-title--blue i {
  color: #2563eb;
}

.application-section-title--emerald i {
  color: #10b981;
}

.application-section-title--amber i {
  color: #f59e0b;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.form-grid--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.application-field-group {
  margin-top: 1.5rem;
}

.application-label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.application-input,
.application-select,
.application-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #dbe1ea;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.application-input:focus,
.application-select:focus,
.application-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
  background: #ffffff;
}

.application-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.application-capability {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.8);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.application-capability:hover {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}

.application-capability input {
  accent-color: #2563eb;
}

.application-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  margin-top: 1.75rem;
}

.application-consent input {
  margin-top: 0.2rem;
}

.application-consent label {
  color: #1f2937;
  line-height: 1.6;
}

.application-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.application-submit .btn {
  padding: 0.9rem 2.5rem;
}

.legal-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/company-founding.webp');
  background-size: cover;
  background-position: center;
}

.legal-hero .hero-content {
  max-width: 720px;
  color: #ffffff;
}

.legal-hero__title {
  color: #ffffff;
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.legal-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.legal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-quick-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-quick-nav__link {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.legal-quick-nav__link:hover {
  color: #1d4ed8;
}

.legal-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-card {
  margin: 0;
}

.legal-card+.legal-card {
  margin-top: 2rem;
}

.legal-card h3 {
  color: #111827;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
}

.legal-list li+li {
  margin-top: 0.5rem;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.legal-contact-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.legal-contact-card h3 {
  color: #111827;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.legal-contact-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.legal-contact-card a {
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
}

.legal-contact-card a:hover {
  color: #1d4ed8;
}

.legal-cta .section-header h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 3rem;
}

.legal-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.process-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/process-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.process-hero .container {
  padding-top: 90px;
}

.process-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.process-overview__title {
  color: #111827;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.process-overview__text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.process-overview__text p:last-child {
  margin-bottom: 0;
}

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

.process-overview__image {
  width: 100%;
  max-width: 420px;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  margin-bottom: 2rem;
}

.process-overview__stat {
  background: #f0f8ff;
  padding: 3rem;
  border-radius: 1rem;
}

.process-overview__stat-value {
  font-size: 3rem;
  color: #1e40af;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-overview__stat-label {
  color: #6b7280;
  font-size: 1rem;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-step-card__badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}

.process-step-card__badge--emerald {
  background: #10b981;
}

.process-step-card__badge--blue {
  background: #3b82f6;
}

.process-step-card__badge--violet {
  background: #8b5cf6;
}

.process-step-card__badge--amber {
  background: #f59e0b;
}

.process-step-card__badge--red {
  background: #ef4444;
}

.process-step-card__badge--indigo {
  background: #1e40af;
}

.process-step-card__title {
  color: #111827;
  margin: 0;
}

.process-step-card__text {
  color: #6b7280;
  line-height: 1.6;
}

.process-step-card__list {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.process-step-card__list li+li {
  margin-top: 0.35rem;
}

.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-card {
  text-align: center;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.timeline-card__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-card__badge--blue {
  background: #dbeafe;
  color: #1e40af;
}

.timeline-card__badge--emerald {
  background: #f0fdf4;
  color: #10b981;
}

.timeline-card__badge--amber {
  background: #fef3c7;
  color: #f59e0b;
}

.timeline-card__badge--rose {
  background: #fee2e2;
  color: #ef4444;
}

.timeline-card__title {
  color: #111827;
  margin-bottom: 0.5rem;
}

.timeline-card__description {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.process-cta .section-header h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 3rem;
}

.process-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.news-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/home-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.news-hero .container {
  padding-top: 90px;
}

.news-featured {
  background: #ffffff;
  margin-top: 3rem;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}

.news-featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3rem;
  align-items: center;
}

.news-featured__meta {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.news-featured__title {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.news-featured__summary {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.news-featured__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.news-tag--blue {
  background: #dbeafe;
  color: #1e40af;
}

.news-tag--green {
  background: #dcfce7;
  color: #16a34a;
}

.news-tag--amber {
  background: #fef3c7;
  color: #d97706;
}

.news-featured__media {
  height: 200px;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9)), url('../images/crypto-fraud.webp');
  background-size: cover;
  background-position: center;
}

.news-featured__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 64, 175, 0.75);
}

.news-featured__icon {
  position: relative;
  font-size: 4rem;
  color: #ffffff;
}

.news-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid #e2e8f0;
}

.news-controls__group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-controls__label {
  font-weight: 600;
  color: #374151;
}

.news-select {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #374151;
  font-weight: 500;
  min-width: 180px;
}

.news-controls__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.news-grid {
  margin-top: 1.5rem;
}

.pagination-container {
  margin-top: 3rem;
}

.newsletter-section {
  background: #f8fafc;
}

.newsletter-wrapper {
  max-width: 500px;
  margin: 3rem auto 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.newsletter-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.news-cta .section-header h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 3rem;
}

.news-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.article-loading,
.article-error {
  text-align: center;
  padding: 5rem 0;
}

.article-loading__spinner {
  border: 4px solid #f3f4f6;
  border-top: 4px solid #1e40af;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: article-spin 1s linear infinite;
  margin: 0 auto 2rem;
}

@keyframes article-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.article-error__icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 0.3;
}

.article-error__title {
  color: #ef4444;
  margin-bottom: 1rem;
}

.article-error__message {
  color: #6b7280;
  margin-bottom: 2rem;
}

.article-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/home-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.article-hero .container {
  padding-top: 90px;
}

.article-breadcrumb {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.article-breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb__link:hover {
  color: #ffffff;
}

.article-meta {
  margin-bottom: 1.5rem;
}

.article-meta__tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-meta__tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.article-meta__date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.article-meta__author {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.article-title {
  color: #ffffff;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.article-excerpt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-body-section {
  background: #ffffff;
}

.article-body {
  line-height: 1.8;
  color: #374151;
  font-size: 1.125rem;
}

.article-image {
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  display: none;
}

.article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-image--placeholder {
  margin-bottom: 3rem;
  display: none;
  border-radius: 1rem;
  border: 2px dashed #cbd5e1;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem;
  text-align: center;
  color: #64748b;
}

.article-image--placeholder-inner {
  text-align: center;
}

.article-image--placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.article-image--placeholder-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.article-image--placeholder-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.article-share {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.article-share__title {
  color: #111827;
  margin-bottom: 0.5rem;
}

.article-share__buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #1e40af;
  color: #1e40af;
}

.article-share__back {
  text-align: right;
}

.article-related {
  background: #f8fafc;
}

.article-related .section-header {
  text-align: left;
}

.article-related .card-grid {
  margin-top: 3rem;
}

.article-cta .section-header h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 3rem;
}

.article-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.careers-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.82), rgba(59, 130, 246, 0.82)), url('../images/company-founding.webp');
  background-size: cover;
  background-position: center;
}

.careers-hero .hero-content {
  max-width: 700px;
  color: #ffffff;
}

.careers-hero__title {
  color: #ffffff;
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.careers-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.careers-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-icon--blue {
  background: #1e40af;
  color: #ffffff;
}

.card-icon--emerald {
  background: #10b981;
  color: #ffffff;
}

.card-icon--pink {
  background: #ec4899;
  color: #ffffff;
}

.card-icon--amber {
  background: #f59e0b;
  color: #ffffff;
}

.card-icon--violet {
  background: #8b5cf6;
  color: #ffffff;
}

.card-icon--red {
  background: #ef4444;
  color: #ffffff;
}

.careers-highlight-grid {
  gap: 3rem;
}

.careers-highlight .card-description {
  color: #6b7280;
}

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.career-benefit {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.career-benefit__icon {
  margin-bottom: 0;
  margin-right: 0;
  flex-shrink: 0;
}

.career-benefit__title {
  margin: 0 0 0.5rem 0;
  color: #111827;
  font-size: 1.075rem;
}

.career-benefit__description {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.careers-process-grid {
  margin-top: 3rem;
  gap: 3rem;
}

.careers-process .process-step {
  text-align: left;
}

.careers-process .process-number {
  margin: 0 0 1rem 0;
}

.process-number--blue {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.process-number--emerald {
  background: linear-gradient(135deg, #059669, #34d399);
}

.process-number--pink {
  background: linear-gradient(135deg, #db2777, #f472b6);
}

.careers-cta .section-header h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 3rem;
}

.careers-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.team-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.85)), url('../images/team-expertise.webp');
  background-size: cover;
  background-position: center;
}

.team-hero .hero-content {
  max-width: 720px;
  color: #ffffff;
}

.team-hero__title {
  color: #ffffff;
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.team-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.team-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.team-leadership__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  font-size: 3rem;
}

.team-card__avatar--blue {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.team-card__avatar--pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.team-card__avatar--green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.team-card__role {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card__role--pink {
  color: #ec4899;
}

.team-card__role--green {
  color: #10b981;
}

.team-card__skills {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.team-card__skill {
  background: #f3f4f6;
  padding: 0.35rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  color: #475569;
}

.team-specialists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.team-member__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.team-member__avatar--blue {
  background: #1e40af;
}

.team-member__avatar--pink {
  background: #ec4899;
}

.team-member__avatar--green {
  background: #10b981;
}

.team-member__avatar--amber {
  background: #f59e0b;
}

.team-member__avatar--purple {
  background: #8b5cf6;
}

.team-member__avatar--red {
  background: #ef4444;
}

.team-member__name {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.team-member__role {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.team-member__description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

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

.team-stats__value {
  font-size: 3rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.team-stats__label {
  color: #6b7280;
  font-weight: 600;
}

.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-cta-btn {
  background: white;
  color: #1e40af;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 15px 25px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.2);
}

.mobile-footer-links {
  display: none;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mobile-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-footer-links a:hover {
  color: white;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #dbeafe;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1e40af;
  font-size: 1.5rem;
}

.card-title {
  margin-bottom: 1rem;
  color: #111827;
}

.card-description {
  margin-bottom: 1.5rem;
}

.service-card__list {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 1rem 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.service-card__list li+li {
  margin-top: 0.35rem;
}

/* ===== RECOVERY PROCESS ===== */
.recovery-process-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.recovery-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem auto;
}

.process-step h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.process-step p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 90px 0;
  background: #f0f8ff;
  min-height: 450px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

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

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

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-info h4 {
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.testimonial-info p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars .star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: #1e40af;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #f8fafc;
  padding: 4rem 0;
}

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

.faq-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 100px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  margin-top: 0;
}

.footer .container {
  max-width: 80rem;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #60a5fa;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #60a5fa;
  color: #60a5fa;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 15px;
  line-height: 1.6;
}

.contact-item i {
  color: #60a5fa;
  margin-top: 0.2rem;
  font-size: 1rem;
  min-width: 16px;
}

.contact-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #60a5fa;
}

.emergency-phone {
  color: #fbbf24 !important;
  font-weight: 600;
}

.emergency-phone:hover {
  color: #f59e0b !important;
}

.emergency-label {
  display: block;
  font-size: 12px;
  color: #fbbf24;
  margin-top: 2px;
  font-weight: 500;
}

.business-hours {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #374151;
}

.business-hours span {
  color: #10b981;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 2rem 0;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
  background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.8)), url('../images/contact-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-hero .container {
  padding-top: 90px;
}

.contact-hero .hero-content {
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
}

.contact-hero .hero-cta {
  flex-wrap: wrap;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-method-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
}

.contact-method-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
}

.contact-method-card__meta {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.contact-method-card__link {
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.contact-method-card__link--hotline {
  color: #ef4444;
}

.contact-method-card__link--hotline:hover {
  color: #dc2626;
}

.contact-method-card__link--email {
  color: #1e40af;
}

.contact-method-card__link--email:hover {
  color: #1d4ed8;
}

.contact-method-card__link--chat {
  color: #10b981;
}

.contact-method-card__link--chat:hover {
  color: #059669;
}

.contact-method-card--hotline {
  background: #fef2f2;
}

.contact-method-card--hotline .contact-method-card__icon {
  background: #ef4444;
}

.contact-method-card--email {
  background: #dbeafe;
}

.contact-method-card--email .contact-method-card__icon {
  background: #1e40af;
}

.contact-method-card--chat {
  background: #f0fdf4;
}

.contact-method-card--chat .contact-method-card__icon {
  background: #10b981;
}

.contact-emergency-banner {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #fef2f2;
  border-radius: 1rem;
  border: 2px solid #ef4444;
}

.contact-emergency-banner h3 {
  color: #ef4444;
  margin-bottom: 1rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-card__header {
  display: flex;
  align-items: center;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact-info-card__header i {
  color: #1e40af;
  margin-right: 0.75rem;
}

.contact-info-card h4 {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.contact-info-card__group {
  margin-bottom: 1.5rem;
}

.contact-info-card__group:last-child {
  margin-bottom: 0;
}

.contact-info-highlight {
  padding: 1rem;
  background: #fef2f2;
  border-radius: 0.5rem;
}

.contact-info-highlight h4 {
  color: #ef4444;
}

.contact-info-highlight p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-quick-links {
  display: grid;
  gap: 1rem;
}

.quick-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  color: #111827;
}

.quick-link:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.quick-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.quick-link__icon--services {
  background: #dbeafe;
  color: #1e40af;
}

.quick-link__icon--process {
  background: #f0fdf4;
  color: #10b981;
}

.quick-link__icon--success {
  background: #fef3c7;
  color: #f59e0b;
}

.quick-link__title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.quick-link__subtitle {
  color: #6b7280;
  font-size: 0.875rem;
}

.contact-emergency-card {
  background: #fef2f2;
  border: 2px solid #ef4444;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(239, 68, 68, 0.05);
}

.contact-emergency-card a {
  display: flex;
  align-items: center;
  background: #ef4444;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  gap: 0.75rem;
}

.contact-emergency-card a:hover {
  background: #dc2626;
}

.contact-emergency-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ef4444;
}

.contact-emergency-card__header i {
  font-size: 1.5rem;
}

.contact-emergency-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-testimonial {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.contact-testimonial blockquote {
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-testimonial__rating {
  display: flex;
  color: #f59e0b;
  gap: 0.25rem;
}

.contact-testimonial__meta span {
  color: #6b7280;
  font-size: 0.9rem;
}

.contact-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-testimonial__name {
  font-weight: 600;
  color: #111827;
}

.contact-testimonial__role {
  color: #6b7280;
  font-size: 0.875rem;
}

.contact-steps.card {
  margin-top: 2rem;
}

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-step:last-child {
  margin-bottom: 0;
}

.contact-step__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1e40af;
  flex-shrink: 0;
}

.contact-step__badge--primary {
  background: #dbeafe;
}

.contact-step__badge--success {
  background: #f0fdf4;
  color: #10b981;
}

.contact-step__badge--warning {
  background: #fef3c7;
  color: #f59e0b;
}

.contact-step h4 {
  margin-bottom: 0.5rem;
  color: #111827;
}

.contact-step p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.contact-quick-links-card {
  margin-top: 2rem;
}

.contact-emergency-card {
  margin-top: 2rem;
}

.contact-testimonial__avatar {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
}

.form-messages {
  margin-bottom: 1rem;
  display: none;
}

.contact-form {
  margin-top: 2rem;
}

.captcha-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.captcha-helper {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.captcha-container {
  background: #f8fafc;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1rem;
}

.captcha-display {
  background: #ffffff;
  border: 2px solid #1e40af;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e40af;
  letter-spacing: 3px;
  min-width: 120px;
  text-align: center;
  user-select: none;
}

.captcha-refresh-btn {
  background: #1e40af;
  color: #ffffff;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.captcha-refresh-btn:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

.acknowledgment-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #374151;
  cursor: pointer;
  line-height: 1.5;
}

.acknowledgment-checkbox {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: #1e40af;
  cursor: pointer;
}

.form-field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-field-success {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

.alert i {
  font-size: 1rem;
}

.alert--success {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert--error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
}

@media (max-width: 1024px) {

  .application-grid,
  .form-grid--three,
  .application-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-overview__grid {
    grid-template-columns: 1fr;
  }

  .process-overview__media {
    margin-top: 2.5rem;
  }

  .news-featured__grid {
    grid-template-columns: 1fr;
  }

  .news-featured {
    padding: 2.5rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Mobile Header Adjustments */
  .header-container {
    padding: 0 1.5rem;
  }

  .logo-image {
    height: 2.5rem;
    /* Smaller logo on mobile */
  }

  .row {
    flex-direction: column;
    gap: 2rem;
  }

  .col-8,
  .col-4,
  .col-6 {
    max-width: 100%;
  }

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

  .form-section {
    padding: 2rem 1.5rem;
  }

  .hero-section {
    padding: 6rem 0 4rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .captcha-display {
    font-size: 1rem;
    letter-spacing: 2px;
    min-width: 100px;
    padding: 0.5rem 0.75rem;
  }

  .captcha-container {
    padding: 0.75rem;
  }

  .acknowledgment-label {
    font-size: 0.9rem;
  }

  .acknowledgment-checkbox {
    width: 16px;
    height: 16px;
  }

  /* Mobile Navigation */
  .mobile-menu-btn {
    display: block !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .header-cta-btn {
    display: none !important;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.95);
    box-shadow: none;
    border-radius: 0 0 1rem 1rem;
    padding: 1rem;
    z-index: 9998;
  }

  .mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-menu li {
    margin-bottom: 0.5rem;
  }

  .mobile-nav-menu li:last-child {
    margin-bottom: 0;
  }

  .mobile-nav-link {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-cta {
    background: #ca8a04;
    color: #000000;
    font-weight: 800;
    text-align: center;
  }

  .mobile-nav-cta:hover,
  .mobile-nav-cta.active {
    background: #a16207;
    color: #000000;
  }

  .nav-menu {
    display: none;
  }

  /* Home hero adjustments */
  .home-page .hero-section,
  .about-page .hero-section,
  .team-page .hero-section,
  .success-page .hero-section,
  .testimonials-page .hero-section,
  .careers-page .hero-section,
  .application-page .hero-section,
  .legal-page .hero-section,
  .process-page .hero-section,
  .news-page .hero-section,
  .single-news-page .hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    background-attachment: scroll;
    padding: 3rem 0 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .home-page .hero-section::before,
  .about-page .hero-section::before,
  .team-page .hero-section::before,
  .success-page .hero-section::before,
  .testimonials-page .hero-section::before,
  .careers-page .hero-section::before,
  .application-page .hero-section::before,
  .legal-page .hero-section::before,
  .process-page .hero-section::before,
  .news-page .hero-section::before,
  .single-news-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }

  .home-page .hero-section .row,
  .about-page .hero-section .row,
  .team-page .hero-section .row,
  .success-page .hero-section .row,
  .testimonials-page .hero-section .row,
  .careers-page .hero-section .row,
  .application-page .hero-section .row,
  .legal-page .hero-section .row,
  .process-page .hero-section .row,
  .news-page .hero-section .row,
  .single-news-page .hero-section .row {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .home-page .hero-section .col-6,
  .about-page .hero-section .col-6,
  .team-page .hero-section .col-6,
  .success-page .hero-section .col-6,
  .testimonials-page .hero-section .col-6,
  .careers-page .hero-section .col-6,
  .application-page .hero-section .col-6,
  .legal-page .hero-section .col-6,
  .process-page .hero-section .col-6,
  .news-page .hero-section .col-6,
  .single-news-page .hero-section .col-6 {
    width: 100%;
    margin-bottom: 0;
  }

  .home-page .hero-section .col-6:last-child,
  .about-page .hero-section .col-6:last-child,
  .team-page .hero-section .col-6:last-child,
  .success-page .hero-section .col-6:last-child,
  .testimonials-page .hero-section .col-6:last-child,
  .careers-page .hero-section .col-6:last-child,
  .application-page .hero-section .col-6:last-child,
  .legal-page .hero-section .col-6:last-child,
  .process-page .hero-section .col-6:last-child,
  .news-page .hero-section .col-6:last-child,
  .single-news-page .hero-section .col-6:last-child {
    display: none;
  }

  .home-page .hero-content,
  .about-page .hero-content,
  .team-page .hero-content,
  .success-page .hero-content,
  .testimonials-page .hero-content,
  .careers-page .hero-content,
  .application-page .hero-content,
  .legal-page .hero-content,
  .process-page .hero-content,
  .news-page .hero-content,
  .single-news-page .hero-content {
    color: white;
    padding: 0 1rem;
  }

  .home-page .hero-content .hero-badge,
  .about-page .hero-content .hero-badge,
  .team-page .hero-content .hero-badge,
  .success-page .hero-content .hero-badge,
  .testimonials-page .hero-content .hero-badge,
  .careers-page .hero-content .hero-badge,
  .application-page .hero-content .hero-badge,
  .legal-page .hero-content .hero-badge,
  .process-page .hero-content .hero-badge,
  .news-page .hero-content .hero-badge,
  .single-news-page .hero-content .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    backdrop-filter: blur(10px);
  }

  .home-page .hero-content h1,
  .about-page .hero-content h1,
  .team-page .hero-content h1,
  .success-page .hero-content h1,
  .testimonials-page .hero-content h1,
  .careers-page .hero-content h1,
  .application-page .hero-content h1,
  .legal-page .hero-content h1,
  .process-page .hero-content h1,
  .news-page .hero-content h1,
  .single-news-page .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .home-page .hero-content .hero-description,
  .about-page .hero-content .hero-description,
  .team-page .hero-content .hero-description,
  .team-page .team-hero__subtitle,
  .success-page .hero-content .hero-description,
  .testimonials-page .hero-content .hero-description,
  .careers-page .hero-content .hero-description,
  .application-page .hero-content .hero-description,
  .legal-page .hero-content .hero-description,
  .process-page .hero-content .hero-description,
  .news-page .hero-content .hero-description,
  .single-news-page .hero-content .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
  }

  .home-page .hero-cta,
  .about-page .hero-cta,
  .team-page .hero-cta,
  .team-page .team-hero__actions,
  .success-page .hero-cta,
  .testimonials-page .hero-cta,
  .careers-page .hero-cta,
  .application-page .hero-cta,
  .legal-page .hero-cta,
  .process-page .hero-cta,
  .news-page .hero-cta,
  .single-news-page .hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .home-page .hero-cta .btn,
  .about-page .hero-cta .btn,
  .team-page .hero-cta .btn,
  .team-page .team-hero__actions .btn,
  .success-page .hero-cta .btn,
  .testimonials-page .hero-cta .btn,
  .careers-page .hero-cta .btn,
  .application-page .hero-cta .btn,
  .legal-page .hero-cta .btn,
  .process-page .hero-cta .btn,
  .news-page .hero-cta .btn,
  .single-news-page .hero-cta .btn {
    width: auto;
    min-width: 200px;
    max-width: 90%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
  }

  .home-page .hero-nav-dots,
  .about-page .hero-nav-dots,
  .team-page .hero-nav-dots,
  .success-page .hero-nav-dots,
  .testimonials-page .hero-nav-dots,
  .careers-page .hero-nav-dots,
  .application-page .hero-nav-dots,
  .legal-page .hero-nav-dots {
    display: none;
  }

  .home-page .hero-slider,
  .about-page .hero-slider,
  .team-page .hero-slider,
  .success-page .hero-slider,
  .testimonials-page .hero-slider,
  .careers-page .hero-slider,
  .application-page .hero-slider,
  .legal-page .hero-slider {
    overflow: hidden;
  }

  .home-page .hero-slide,
  .about-page .hero-slide,
  .team-page .hero-slide,
  .success-page .hero-slide,
  .testimonials-page .hero-slide,
  .careers-page .hero-slide,
  .application-page .hero-slide,
  .legal-page .hero-slide {
    position: static;
    transform: none;
    opacity: 1;
    display: block;
  }

  .home-page .hero-slide:not(:first-child),
  .about-page .hero-slide:not(:first-child),
  .team-page .hero-slide:not(:first-child),
  .success-page .hero-slide:not(:first-child),
  .testimonials-page .hero-slide:not(:first-child),
  .careers-page .hero-slide:not(:first-child),
  .application-page .hero-slide:not(:first-child),
  .legal-page .hero-slide:not(:first-child) {
    display: none;
  }

  .home-cta__actions {
    flex-direction: column;
  }

  .mobile-app-section {
    display: block;
  }

  .mobile-footer-links {
    display: flex;
  }

  .about-story__row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

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

  .about-story__title {
    justify-content: center;
  }

  .about-story__impact {
    padding: 2.5rem 1.5rem;
  }

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

  .about-story__stat-value {
    font-size: 2.5rem;
  }

  .about-expertise__image {
    height: 260px;
  }

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

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

  .team-hero__title {
    font-size: 2.6rem;
  }

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

  .team-stats__value {
    font-size: 2.5rem;
  }

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

  .success-stat__value {
    font-size: 2.5rem;
  }

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

  .testimonials-stat__value {
    font-size: 2.5rem;
  }

  .testimonial-hero__title {
    font-size: 2.6rem;
  }

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

  .careers-hero__title {
    font-size: 2.6rem;
  }

  .careers-hero__subtitle {
    font-size: 1.1rem;
  }

  .legal-hero__title {
    font-size: 2.6rem;
  }

  .legal-hero__subtitle {
    font-size: 1.1rem;
  }

  .legal-quick-nav {
    gap: 1.25rem;
  }

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

  .application-grid,
  .form-grid--three,
  .application-capabilities {
    grid-template-columns: 1fr;
  }

  .application-consent {
    flex-direction: column;
  }

  .careers-highlight-grid {
    gap: 2rem;
  }

  .careers-benefits-grid {
    grid-template-columns: 1fr;
  }

  .career-benefit {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-benefit__icon {
    margin-bottom: 1rem;
  }

  .careers-process-grid {
    gap: 2rem;
  }

  .application-grid,
  .form-grid--three,
  .application-capabilities {
    grid-template-columns: 1fr;
  }

  .application-consent {
    flex-direction: column;
  }

  /* Mobile logo adjustments */
  .logo-image {
    height: 42px;
  }

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

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

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

  .footer {
    padding-top: 100px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding-top: 100px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-item i {
    margin-top: 0;
  }

  .emergency-label {
    margin-left: 0;
    margin-top: 4px;
  }

  .business-hours {
    margin-top: 1rem;
  }
}

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

  .hero-description {
    font-size: 1.1rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .mobile-quick-actions {
    grid-template-columns: 1fr;
  }

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

  .team-hero__title {
    font-size: 2.2rem;
  }

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

  .team-stats__value {
    font-size: 2.2rem;
  }

  .success-stats {
    grid-template-columns: 1fr;
  }

  .success-stat__value {
    font-size: 2.2rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
  }

  .testimonials-stat__value {
    font-size: 2.2rem;
  }

  .testimonial-hero__title {
    font-size: 2.2rem;
  }

  .testimonial-hero__subtitle {
    font-size: 1rem;
  }

  .careers-hero__title {
    font-size: 2.2rem;
  }

  .careers-hero__subtitle {
    font-size: 1rem;
  }

  .careers-highlight-grid {
    gap: 1.5rem;
  }

  .careers-benefits-grid {
    gap: 1.5rem;
  }

  .careers-process-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero__title {
    font-size: 2.2rem;
  }

  .legal-hero__subtitle {
    font-size: 1rem;
  }

  .legal-quick-nav {
    gap: 1rem;
  }

  .legal-quick-nav__link {
    font-size: 0.95rem;
  }

  .process-overview__stat {
    padding: 2rem;
  }

  .process-overview__stat-value {
    font-size: 2rem;
  }

  .process-step-card__badge {
    width: 45px;
    height: 45px;
    font-size: 1.05rem;
  }

  .process-step-card {
    padding: 1.5rem;
  }

  .process-timeline-grid {
    gap: 1.25rem;
  }

  .timeline-card {
    padding: 1.5rem;
  }

  .timeline-card__badge {
    width: 65px;
    height: 65px;
    font-size: 0.95rem;
  }

  .news-featured {
    padding: 1.75rem;
  }

  .news-featured__title {
    font-size: 1.6rem;
  }

  .news-controls__label {
    width: 100%;
  }

  .news-controls__group {
    align-items: flex-start;
  }

  .news-select {
    width: 100%;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-excerpt {
    font-size: 1rem;
  }

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

  .article-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA heading responsive sizing */
  .section h2[style*="font-size: 3rem"] {
    font-size: 2rem !important;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
    /* Medium padding for tablets */
  }

  .nav-menu {
    gap: 1.25rem;
    /* Slightly reduced gap for tablets */
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 768px) {

  /* CTA heading responsive sizing for tablets */
  .section h2[style*="font-size: 3rem"] {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .process-overview__grid {
    gap: 2rem;
  }

  .process-overview__media {
    margin-top: 2rem;
  }

  .process-overview__stat {
    padding: 2.25rem;
  }

  .process-overview__stat-value {
    font-size: 2.25rem;
  }

  .process-steps-grid {
    gap: 1.75rem;
  }

  .process-step-card {
    padding: 1.5rem;
  }

  .process-timeline-grid {
    gap: 1.5rem;
  }

  .timeline-card__badge {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }

  .news-featured {
    padding: 2rem;
  }

  .news-featured__grid {
    gap: 2rem;
  }

  .news-featured__title {
    font-size: 1.8rem;
  }

  .news-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .news-controls__group,
  .news-controls__actions {
    width: 100%;
  }

  .news-controls__actions {
    justify-content: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

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

  .article-excerpt {
    font-size: 1.1rem;
  }

  .article-share {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .article-share__back {
    text-align: left;
  }
}

/* ===== RICH TEXT CONTENT (CKEditor Styling) ===== */
.rich-text-content {
  color: #4b5563;
  line-height: 1.8;
}

.rich-text-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.rich-text-content ul {
  list-style-type: disc !important;
  margin-left: 2rem !important;
  margin-bottom: 1.5rem !important;
  padding-left: 0 !important;
}

.rich-text-content ol {
  list-style-type: decimal !important;
  margin-left: 2rem !important;
  margin-bottom: 1.5rem !important;
  padding-left: 0 !important;
}

.rich-text-content li {
  margin-bottom: 0.75rem !important;
  display: list-item !important;
}

.rich-text-content h2 {
  font-size: 1.75rem !important;
  color: #111827 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1.25rem !important;
  font-weight: 700 !important;
}

.rich-text-content h3 {
  font-size: 1.4rem !important;
  color: #111827 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
}

.rich-text-content h4 {
  font-size: 1.2rem !important;
  color: #111827 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.75rem !important;
  font-weight: 600 !important;
}

.rich-text-content strong {
  color: #111827;
  font-weight: 700;
}

.rich-text-content a {
  color: #1e40af;
  text-decoration: underline;
}

.rich-text-content blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1.5rem;
  font-style: italic;
  margin: 2rem 0;
  color: #6b7280;
}
