@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #0f1923;
  --color-primary-light: #1a2b3d;
  --color-accent: #c8a55a;
  --color-accent-light: #dcc07a;
  --color-accent-dark: #a8863a;
  --color-white: #ffffff;
  --color-offwhite: #f5f3ef;
  --color-gray-100: #e8e6e1;
  --color-gray-200: #d1cfc9;
  --color-gray-400: #8a8780;
  --color-gray-600: #5a5852;
  --color-gray-800: #2d2b27;
  --color-text: #1a1a1a;
  --color-text-light: #6b6b6b;
  --color-overlay: rgba(15, 25, 35, 0.7);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --max-width: 1200px;
  --max-width-wide: 1400px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: var(--max-width-wide);
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-medium);
}

.nav--scrolled {
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__logo-mark {
  height: 58px;
  width: auto;
  transition: height var(--transition-medium);
}

.nav__logo-text {
  height: 42px;
  width: auto;
  transition: height var(--transition-medium);
}

.nav--scrolled .nav__logo-mark {
  height: 46px;
}

.nav--scrolled .nav__logo-text {
  height: 34px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-medium);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--color-accent);
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.3) brightness(0.9);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 22, 48, 0.72) 0%,
    rgba(10, 28, 56, 0.58) 40%,
    rgba(8, 18, 38, 0.78) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero__logo {
  width: 280px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-200);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.7s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.9s;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.2s;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 165, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 25, 35, 0.3);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--light:hover {
  background: var(--color-offwhite);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 7rem 0;
}

.section--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section--offwhite {
  background: var(--color-offwhite);
}

.section--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section--dark .section__subtitle {
  color: var(--color-gray-200);
}

.section__header {
  margin-bottom: 4rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__subtitle {
  margin: 0 auto;
}

/* ========== ABOUT / TWO-COLUMN SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about__image--greyscale {
  filter: grayscale(100%);
}

.about__accent-bar {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 1.5rem;
}

/* ========== PROCESS STEPS ========== */
.process-steps-container {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  padding: 2.75rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 1.5rem;
}

.process-step__marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-indent: 0;
  flex-shrink: 0;
  z-index: 1;
}

.process-step:not(:last-child) .process-step__marker::after {
  content: '';
  position: absolute;
  top: 48px;
  bottom: -1.5rem;
  left: 50%;
  width: 2px;
  background: var(--color-gray-200);
  transform: translateX(-50%);
}

.process-step__content {
  padding-bottom: 2.25rem;
  padding-top: 0.35rem;
}

.process-step:last-child .process-step__content {
  padding-bottom: 0;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.process-step__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.about__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.about__text .btn {
  margin-top: 1rem;
}

/* ========== FOCUS / SERVICES CARDS ========== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.focus-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.focus-card:hover::before {
  transform: scaleX(1);
}

.focus-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.focus-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.focus-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.focus-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.focus-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-200);
}

/* Light variant */
.focus-card--light {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.focus-card--light:hover {
  background: var(--color-white);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.focus-card--light .focus-card__title {
  color: var(--color-text);
}

.focus-card--light .focus-card__text {
  color: var(--color-text-light);
}

/* ========== STATS BAR ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--color-gray-200);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5c 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 165, 90, 0.08) 0%, transparent 70%);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 1rem;
  color: var(--color-gray-200);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== TEAM ========== */
.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4.5rem;
  max-width: none;
  margin: 0 auto;
}

.section.section--team {
  padding: 3.5rem 0 6rem;
}

.team-card {
  flex: 0 1 400px;
  width: 100%;
  max-width: 400px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0.75rem 0;
  box-sizing: border-box;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.team-card__image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(200, 165, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__image-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
}

.team-card__info {
  padding: 1.75rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.team-card__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card__linkedin:hover {
  color: var(--color-accent);
}

.team-card__linkedin svg {
  width: 16px;
  height: 16px;
}

/* ========== NEWS ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.news-card__image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  position: relative;
  overflow: hidden;
}

.news-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.75rem;
}

.news-card__body {
  padding: 1.75rem;
}

.news-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.news-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card__link:hover {
  color: var(--color-accent);
}

.news-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.news-card__link:hover svg {
  transform: translateX(4px);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.contact__info-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.contact__info-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.contact__info-text a {
  color: var(--color-text);
}

.contact__info-text a:hover {
  color: var(--color-accent);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
  border-color: #c0392b;
}

.form-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #c0392b;
}

.form-error[hidden] {
  display: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-400);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: var(--color-primary);
  padding: 10rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(200, 165, 90, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(26, 59, 92, 0.2) 0%, transparent 50%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-200);
  max-width: 600px;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
  color: var(--color-gray-200);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-400);
  max-width: 300px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-gray-400);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray-400);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__links {
  text-align: center;
}

.mobile-menu__links a {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  padding: 0.75rem 0;
  transition: color var(--transition-fast);
}

.mobile-menu__links a:hover {
  color: var(--color-accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__logo {
    width: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid--reverse {
    direction: ltr;
  }

  .about-grid--reverse > .process-steps-container {
    order: 2;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .team-card {
    flex: 0 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 160px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
