/* ============================================
   LawTeam KZ - Командная юридическая помощь
   Navy #1E3A5F + Light Gray, Inter
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #f7f8fa;
  overflow-x: hidden;
}

a {
  color: #1E3A5F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2c5a8f;
}

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

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 --- */
.crew-heading-xl {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1E3A5F;
  letter-spacing: -0.02em;
}

.crew-heading-lg {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1E3A5F;
}

.crew-heading-md {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1E3A5F;
}

.crew-heading-sm {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1E3A5F;
}

.crew-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.crew-paragraph--lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3d3d3d;
}

.crew-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1E3A5F;
}

/* --- Layout --- */
.crew-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.crew-section {
  padding: 4rem 0;
}

.crew-section--gray {
  background-color: #eef0f4;
}

.crew-section--navy {
  background-color: #1E3A5F;
  color: #ffffff;
}

.crew-section--navy .crew-heading-lg,
.crew-section--navy .crew-heading-md,
.crew-section--navy .crew-heading-sm {
  color: #ffffff;
}

.crew-section--navy .crew-paragraph {
  color: #c8d6e5;
}

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

.crew-section-header .crew-label {
  display: block;
  margin-bottom: 0.75rem;
}

.crew-section-header .crew-heading-lg {
  margin-bottom: 1rem;
}

.crew-section-header .crew-paragraph {
  max-width: 640px;
  margin: 0 auto;
}

.crew-grid {
  display: grid;
  gap: 2rem;
}

.crew-grid--2 {
  grid-template-columns: 1fr;
}

.crew-grid--3 {
  grid-template-columns: 1fr;
}

.crew-grid--4 {
  grid-template-columns: 1fr;
}

.crew-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

/* --- Buttons --- */
.crew-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
  line-height: 1;
}

.crew-btn--primary {
  background-color: #1E3A5F;
  color: #ffffff;
}

.crew-btn--primary:hover {
  background-color: #2c5a8f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.crew-btn--outline {
  background-color: transparent;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
}

.crew-btn--outline:hover {
  background-color: #1E3A5F;
  color: #ffffff;
  transform: translateY(-2px);
}

.crew-btn--white {
  background-color: #ffffff;
  color: #1E3A5F;
}

.crew-btn--white:hover {
  background-color: #eef0f4;
  color: #1E3A5F;
  transform: translateY(-2px);
}

.crew-btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.crew-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

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

/* --- Header / Navbar --- */
.crew-topbar {
  background-color: #1E3A5F;
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

.crew-topbar a {
  color: #c8d6e5;
}

.crew-topbar a:hover {
  color: #ffffff;
}

.crew-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.crew-topbar-contacts {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.crew-topbar-contacts iconify-icon {
  margin-right: 0.35rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

.crew-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.crew-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.crew-logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: #1E3A5F;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crew-logo iconify-icon {
  font-size: 1.75rem;
  color: #2c5a8f;
}

.crew-nav-list {
  display: none;
  gap: 0;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.crew-nav-list.active {
  display: flex;
}

.crew-nav-link {
  display: block;
  padding: 0.625rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2d2d2d;
  transition: color 0.3s ease;
  border-bottom: 1px solid #eef0f4;
}

.crew-nav-link:hover,
.crew-nav-link--active {
  color: #1E3A5F;
}

.crew-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
}

.crew-burger span {
  width: 24px;
  height: 2px;
  background-color: #1E3A5F;
  transition: all 0.3s ease;
}

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

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

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

.crew-nav-cta {
  display: none;
}

/* --- Breadcrumbs --- */
.crew-breadcrumbs {
  padding: 0.875rem 0;
  background-color: #eef0f4;
  font-size: 0.8125rem;
}

.crew-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.crew-breadcrumbs-list li::after {
  content: '/';
  margin-left: 0.35rem;
  color: #999;
}

.crew-breadcrumbs-list li:last-child::after {
  content: '';
}

.crew-breadcrumbs-list a {
  color: #1E3A5F;
}

.crew-breadcrumbs-list span {
  color: #777;
}

/* --- Hero --- */
.crew-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #152c48 60%, #0f1f33 100%);
  padding: 4rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.crew-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.crew-hero .crew-heading-xl {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.crew-hero .crew-paragraph--lead {
  color: #c8d6e5;
  margin-bottom: 2rem;
}

.crew-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.crew-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.crew-hero-stat {
  text-align: center;
}

.crew-hero-stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.crew-hero-stat-label {
  font-size: 0.8125rem;
  color: #a0b4c8;
}

/* --- Cards --- */
.crew-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.crew-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1E3A5F, #2c5a8f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.crew-card-icon iconify-icon {
  font-size: 1.5rem;
  color: #ffffff;
}

.crew-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 0.75rem;
}

.crew-card-text {
  font-size: 0.9375rem;
  color: #5a5a5a;
  line-height: 1.65;
}

.crew-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-top: 1rem;
}

.crew-card-link:hover {
  gap: 0.6rem;
}

/* --- Advantages / Features --- */
.crew-advantage {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.crew-advantage-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #eef0f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-advantage-icon iconify-icon {
  font-size: 1.25rem;
  color: #1E3A5F;
}

.crew-advantage-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.35rem;
}

.crew-advantage-text {
  font-size: 0.9375rem;
  color: #5a5a5a;
}

/* --- Team / Lawyers --- */
.crew-member {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.crew-member:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.crew-member-photo {
  width: 100%;
  height: 280px;
  background-color: #dde3ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-member-photo iconify-icon {
  font-size: 4rem;
  color: #a0b4c8;
}

.crew-member-body {
  padding: 1.5rem;
}

.crew-member-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 0.25rem;
}

.crew-member-role {
  font-size: 0.875rem;
  color: #2c5a8f;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.crew-member-desc {
  font-size: 0.9375rem;
  color: #5a5a5a;
  line-height: 1.6;
}

/* --- Pricing --- */
.crew-pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.crew-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.crew-pricing-card--featured {
  border-color: #1E3A5F;
}

.crew-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1E3A5F;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crew-pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 0.5rem;
}

.crew-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 0.25rem;
}

.crew-pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
}

.crew-pricing-desc {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.crew-pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.crew-pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.crew-pricing-features li:last-child {
  border-bottom: none;
}

.crew-pricing-features iconify-icon {
  color: #1E3A5F;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Reviews / Testimonials --- */
.crew-review {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.crew-review-quote {
  font-size: 0.9375rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.crew-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.crew-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E3A5F, #2c5a8f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.crew-review-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E3A5F;
}

.crew-review-info {
  font-size: 0.8125rem;
  color: #777;
}

.crew-review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.crew-review-stars iconify-icon {
  color: #f0a500;
  font-size: 1rem;
}

/* --- FAQ / Accordion --- */
.crew-faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.crew-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s ease;
}

.crew-faq-question:hover {
  background-color: #f7f8fa;
}

.crew-faq-question iconify-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.crew-faq-item.active .crew-faq-question iconify-icon {
  transform: rotate(180deg);
}

.crew-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.crew-faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: #5a5a5a;
  line-height: 1.7;
}

/* --- Contact Form --- */
.crew-form-group {
  margin-bottom: 1.25rem;
}

.crew-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.4rem;
}

.crew-form-input,
.crew-form-textarea,
.crew-form-select {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #2d2d2d;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.crew-form-input:focus,
.crew-form-textarea:focus,
.crew-form-select:focus {
  outline: none;
  border-color: #1E3A5F;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

.crew-form-consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: #5a5a5a;
}

.crew-form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #1E3A5F;
}

.crew-form-consent a {
  color: #1E3A5F;
  text-decoration: underline;
}

.crew-form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* --- Contact Info Block --- */
.crew-contact-block {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.crew-contact-item-icon {
  width: 44px;
  height: 44px;
  background: #eef0f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crew-contact-item-icon iconify-icon {
  font-size: 1.25rem;
  color: #1E3A5F;
}

.crew-contact-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.15rem;
}

.crew-contact-item-text {
  font-size: 0.9375rem;
  color: #5a5a5a;
}

.crew-contact-item-text a {
  color: #5a5a5a;
}

.crew-contact-item-text a:hover {
  color: #1E3A5F;
}

/* --- Map --- */
.crew-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.crew-map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* --- Footer --- */
.crew-footer {
  background-color: #152c48;
  color: #a0b4c8;
  padding: 3.5rem 0 0;
}

.crew-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.crew-footer-brand {
  max-width: 320px;
}

.crew-footer-brand .crew-logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.crew-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #8b9fb5;
}

.crew-footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.crew-footer-links a {
  color: #8b9fb5;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.crew-footer-links a:hover {
  color: #ffffff;
}

.crew-footer-contacts li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.crew-footer-contacts iconify-icon {
  font-size: 1rem;
  color: #2c5a8f;
}

.crew-footer-contacts a {
  color: #8b9fb5;
}

.crew-footer-contacts a:hover {
  color: #ffffff;
}

.crew-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
}

.crew-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.crew-footer-bottom a {
  color: #8b9fb5;
}

.crew-footer-bottom a:hover {
  color: #ffffff;
}

/* --- CTA Banner --- */
.crew-cta {
  background: linear-gradient(135deg, #1E3A5F 0%, #2c5a8f 100%);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  color: #ffffff;
}

.crew-cta .crew-heading-lg {
  color: #ffffff;
  margin-bottom: 1rem;
}

.crew-cta .crew-paragraph {
  color: #c8d6e5;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* --- Page Hero --- */
.crew-page-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #152c48 100%);
  padding: 3rem 0;
  color: #ffffff;
  text-align: center;
}

.crew-page-hero .crew-heading-xl {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.crew-page-hero .crew-paragraph--lead {
  color: #c8d6e5;
}

/* --- Services List --- */
.crew-service-detailed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.crew-service-detailed:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.crew-service-icon-lg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1E3A5F, #2c5a8f);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-service-icon-lg iconify-icon {
  font-size: 1.75rem;
  color: #ffffff;
}

.crew-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 0.5rem;
}

.crew-service-desc {
  font-size: 0.9375rem;
  color: #5a5a5a;
  line-height: 1.7;
}

.crew-service-list {
  list-style: none;
  padding: 0;
}

.crew-service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: #4a4a4a;
}

.crew-service-list iconify-icon {
  color: #1E3A5F;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- About page timeline --- */
.crew-timeline {
  position: relative;
  padding-left: 2rem;
}

.crew-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #1E3A5F;
}

.crew-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.crew-timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  background-color: #1E3A5F;
  border-radius: 50%;
  border: 3px solid #eef0f4;
  transform: translateX(-50%);
  left: -6px;
}

.crew-timeline-year {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2c5a8f;
  margin-bottom: 0.25rem;
}

.crew-timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.25rem;
}

.crew-timeline-text {
  font-size: 0.9375rem;
  color: #5a5a5a;
}

/* --- Stats counter --- */
.crew-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.crew-stat-item {
  text-align: center;
  padding: 1.5rem;
}

.crew-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1E3A5F;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.crew-stat-text {
  font-size: 0.875rem;
  color: #5a5a5a;
}

/* --- Thank You --- */
.crew-thankyou {
  text-align: center;
  padding: 5rem 0;
}

.crew-thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1E3A5F, #2c5a8f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.crew-thankyou-icon iconify-icon {
  font-size: 2.5rem;
  color: #ffffff;
}

/* --- 404 --- */
.crew-notfound {
  text-align: center;
  padding: 5rem 0;
}

.crew-notfound-code {
  font-size: 8rem;
  font-weight: 800;
  color: #1E3A5F;
  line-height: 1;
  opacity: 0.15;
}

/* --- Cookie Banner --- */
.crew-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E3A5F;
  color: #ffffff;
  padding: 1.25rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.crew-cookie-banner.visible {
  display: block;
}

.crew-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.crew-cookie-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #c8d6e5;
}

.crew-cookie-text a {
  color: #ffffff;
  text-decoration: underline;
}

.crew-cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.crew-cookie-accept {
  padding: 0.625rem 1.5rem;
  background-color: #ffffff;
  color: #1E3A5F;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.crew-cookie-accept:hover {
  background-color: #eef0f4;
}

.crew-cookie-decline {
  padding: 0.625rem 1.5rem;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.crew-cookie-decline:hover {
  border-color: #ffffff;
}

/* --- Legal / Text pages --- */
.crew-legal-content {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.crew-legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1E3A5F;
  margin: 2rem 0 1rem;
}

.crew-legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E3A5F;
  margin: 1.5rem 0 0.75rem;
}

.crew-legal-content p {
  font-size: 0.9375rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.crew-legal-content ul,
.crew-legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.crew-legal-content ul {
  list-style: disc;
}

.crew-legal-content ol {
  list-style: decimal;
}

.crew-legal-content li {
  font-size: 0.9375rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* --- Success Message --- */
.crew-alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: none;
}

.crew-alert--success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.crew-alert--error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* --- Scroll to Top --- */
.crew-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background-color: #1E3A5F;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.crew-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.crew-scroll-top:hover {
  background-color: #2c5a8f;
  transform: translateY(-3px);
}

.crew-scroll-top iconify-icon {
  font-size: 1.25rem;
}

/* --- Utilities --- */
.crew-text-center {
  text-align: center;
}

.crew-text-white {
  color: #ffffff;
}

.crew-mt-1 { margin-top: 0.5rem; }
.crew-mt-2 { margin-top: 1rem; }
.crew-mt-3 { margin-top: 1.5rem; }
.crew-mt-4 { margin-top: 2rem; }
.crew-mb-1 { margin-bottom: 0.5rem; }
.crew-mb-2 { margin-bottom: 1rem; }
.crew-mb-3 { margin-bottom: 1.5rem; }
.crew-mb-4 { margin-bottom: 2rem; }

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

/* --- Process Steps --- */
.crew-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: process-step;
}

.crew-process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: process-step;
}

.crew-process-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #1E3A5F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.crew-process-content {
  flex: 1;
}

.crew-process-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.25rem;
}

.crew-process-text {
  font-size: 0.9375rem;
  color: #5a5a5a;
}

/* --- Partners / Trust --- */
.crew-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.crew-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #5a5a5a;
}

.crew-trust-item iconify-icon {
  font-size: 1.5rem;
  color: #1E3A5F;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .crew-container {
    padding: 0 2rem;
  }

  .crew-heading-xl {
    font-size: 3rem;
  }

  .crew-heading-lg {
    font-size: 2.25rem;
  }

  .crew-section {
    padding: 5rem 0;
  }

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

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

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

  .crew-hero {
    padding: 5rem 0;
  }

  .crew-hero-stats {
    gap: 3.5rem;
  }

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

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

  .crew-cookie-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .crew-legal-content {
    padding: 2.5rem;
  }

  .crew-cta {
    padding: 4rem 3rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .crew-heading-xl {
    font-size: 3.25rem;
  }

  .crew-section {
    padding: 6rem 0;
  }

  .crew-nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    padding: 0;
    gap: 0.25rem;
  }

  .crew-nav-link {
    border-bottom: none;
    padding: 0.5rem 0.75rem;
    position: relative;
  }

  .crew-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1E3A5F;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .crew-nav-link:hover::after,
  .crew-nav-link--active::after {
    width: 80%;
  }

  .crew-burger {
    display: none;
  }

  .crew-nav-cta {
    display: inline-flex;
  }

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

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

  .crew-hero {
    padding: 6rem 0;
  }

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

  .crew-footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .crew-heading-xl {
    font-size: 3.5rem;
  }

  .crew-hero {
    padding: 7rem 0;
  }

  .crew-hero-content {
    max-width: 740px;
  }
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}
