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

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #122336;
  --navy-card: #1A2D42;
  --orange:    #E84517;
  --orange-lt: #FF5527;
  --blue:      #2472C4;
  --blue-lt:   #3A8DE0;
  --white:     #FFFFFF;
  --off-white: #F4F6F9;
  --text:      #1A2332;
  --text-mid:  #4A5A6B;
  --text-light:#7A8A9B;
  --border:    rgba(255,255,255,0.08);
  --border-lt: rgba(0,0,0,0.08);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);

  --transition: 0.25s ease;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================
   TYPOGRAPHY UTILITIES
   ============================= */
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }

.section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section__label--light { color: var(--blue-lt); }

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}
.section__title--light { color: var(--white); }

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,69,23,0.35);
}

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

.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* =============================
   NAV
   ============================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { height: 36px; width: auto; }
.nav__brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__brand-go { color: var(--orange); }

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav__ctas { display: flex; gap: 12px; }
.nav__ctas .btn--outline { border-color: rgba(255,255,255,0.4); padding: 8px 20px; font-size: 13px; }
.nav__ctas .btn--primary { padding: 8px 20px; font-size: 13px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================
   HERO
   ============================= */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge   { animation: hero-fade 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero__headline{ animation: hero-fade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both; }
.hero__sub     { animation: hero-fade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.50s both; }
.hero__actions { animation: hero-fade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both; }
.hero__stats   { animation: hero-fade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.74s both; }

.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 88px 0 48px;
}

.hero__bg { display: none; }

.hero__inner {
  position: relative;
  border: solid 2px var(--orange);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  width: 100%;
  animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__text {
  position: relative;
  z-index: 1;
  padding: 64px 56px;
}

.hero__badge {
  display: inline-block;
  background: rgba(36,114,196,0.15);
  border: 1px solid rgba(36,114,196,0.35);
  color: var(--blue-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight { color: var(--orange); }

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Hero image — constrained to container, landscape */
.hero__image-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(13,27,42,0.97) 0%,
    rgba(13,27,42,0.93) 28%,
    rgba(13,27,42,0.65) 52%,
    rgba(13,27,42,0.18) 72%,
    rgba(13,27,42,0.04) 100%
  );
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 5;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* =============================
   VALUE
   ============================= */
.value {
  position: relative;
  overflow: hidden;
}

.value__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/open-office.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value__card {
  border-radius: var(--radius);
  border: 2px solid var(--border-lt);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: all var(--transition);
}
.value__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232,69,23,0.2);
  background: var(--white);
}

.value__card-img {
  height: 160px;
  overflow: hidden;
}
.value__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.value__card:hover .value__card-img img { transform: scale(1.05); }

.value__card-body { padding: 28px; }

.value__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,69,23,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}
.value__icon svg { width: 20px; height: 20px; }

.value__card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.value__card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* =============================
   SERVICES
   ============================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service__card {
  background: var(--navy-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service__card:hover {
  transform: translateY(-4px);
  border-color: rgba(36,114,196,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* Service card image header */
.service__card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service__card:hover .service__card-img img { transform: scale(1.05); }
.service__card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.2) 0%, rgba(13,27,42,0.85) 100%);
}

/* Content below image */
.service__card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service__card--featured {
  border-color: var(--orange);
}
.service__card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0; right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 5;
}

.service__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.service__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-lt);
}
.service__icon svg { width: 22px; height: 22px; }
.service__card--featured .service__icon { color: var(--orange); background: rgba(232,69,23,0.12); }

.service__card h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service__card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }

.service__list { margin-bottom: 28px; flex: 1; }
.service__list li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-lt);
  flex-shrink: 0;
}
.service__card--featured .service__list li::before { background: var(--orange); }

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-lt);
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition);
  margin-top: auto;
}
.service__cta svg { width: 16px; height: 16px; }
.service__cta:hover { gap: 12px; }
.service__card--featured .service__cta { color: var(--orange); }

/* =============================
   TALENT (SPECIALISMS)
   ============================= */
.specialisms {
  position: relative;
  overflow: hidden;
}

.specialisms__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/team-laptops.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.specialisms .container {
  position: relative;
  z-index: 1;
}

.specialisms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.specialism {
  border-radius: var(--radius);
  border: 2px solid var(--border-lt);
  background: rgba(255,255,255,0.92);
  overflow: hidden;
  transition: all var(--transition);
}
.specialism:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232,69,23,0.2);
  background: var(--white);
}

.specialism__img {
  height: 160px;
  overflow: hidden;
}
.specialism__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.specialism:hover .specialism__img img { transform: scale(1.05); }

.specialism__body { 
  padding: 24px; 
  background-color: white;
}

.specialism__icon {
  width: 44px;
  height: 44px;
  background: rgba(36,114,196,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.specialism__icon svg { width: 20px; height: 20px; }

.specialism h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.specialism p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* =============================
   ABOUT
   ============================= */
.about__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.about__image { position: relative; flex-shrink: 0; }

.about__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about__image-accent {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--orange);
  opacity: 0.35;
}

.about__role { font-size: 14px; font-weight: 600; color: var(--blue-lt); margin-bottom: 28px; }

.about__bio { margin-bottom: 28px; }
.about__bio p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 14px; }

.about__quote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.about__footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0px;
}
.about__footer .about__quote {
  border-left: none;
  border-top: 3px solid var(--orange);
  padding: 24px 0 0;
  margin-bottom: 28px;
  background: transparent;
  border-radius: 0;
  max-width: 550px;
  text-align: center;
}
.about__footer .btn { margin-top: 0; }

/* =============================
   PROCESS
   ============================= */
.process {
  position: relative;
  overflow: hidden;
}

.process__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/modern-office.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.process__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: stretch;
}

.process__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,27,42,0.6) 100%);
}

.process__visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.process__visual-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.process__body .section__title { margin-bottom: 36px; }

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-lt);
}
.process__step:last-child { border-bottom: none; }

.process__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(232,69,23,0.4);
  flex-shrink: 0;
}

.process__content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.process__content p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* =============================
   CONTACT
   ============================= */
.contact {
  position: relative;
  overflow: hidden;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact__photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
}
.contact__photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.contact__info { display: flex; flex-direction: column; gap: 16px; }

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.contact__link svg { width: 18px; height: 18px; color: var(--blue-lt); }
.contact__link:hover { color: var(--white); }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form__group select option { background: var(--navy-card); color: var(--white); }
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--blue); }
.form__group textarea { resize: vertical; min-height: 100px; }

.form__success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(36,196,100,0.12);
  border: 1px solid rgba(36,196,100,0.3);
  border-radius: var(--radius-sm);
  color: #5AE68A;
  font-size: 14px;
  text-align: center;
}
.form__success.show { display: block; }

.form__error {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(232,69,23,0.12);
  border: 1px solid rgba(232,69,23,0.3);
  border-radius: var(--radius-sm);
  color: #ff7a57;
  font-size: 14px;
  text-align: center;
}
.form__error.show { display: block; }

/* =============================
   FOOTER
   ============================= */
.footer { background: #070F18; color: rgba(255,255,255,0.5); }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo { height: 36px; width: auto; }
.footer__brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer__brand-go { color: var(--orange); }

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--blue); color: var(--white); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* =============================
   ANIMATIONS
   ============================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials {
  background: var(--off-white);
}

.testimonials__header {
  text-align: center;
}

.testimonials__header .section__label {
  display: block;
}

.testimonials__header .section__title {
  margin-bottom: 32px;
}

/* Thumbs — now between header and card */
.testimonials__thumbs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.testimonials__thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0.45;
  padding: 0;
  outline-offset: 4px;
}

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

.testimonials__thumb.active {
  border-color: var(--orange);
  opacity: 1;
  transform: scale(1.12);
}

.testimonials__thumb:hover:not(.active) {
  opacity: 0.75;
  transform: scale(1.06);
}

/* Track — full container width */
.testimonials__track {
  display: grid;
  grid-template-areas: 'slide';
}

.testimonial__slide {
  grid-area: slide;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  display: grid;
  grid-template-columns: 400px 1fr;
  column-gap: 48px;
  padding: 40px 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial__photo {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.testimonial__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial__quote-icon {
  font-size: 80px;
  line-height: 0.7;
  font-family: Georgia, serif;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

.testimonial__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}

.testimonial__author {
  margin-top: 28px;
}

.testimonial__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.testimonial__role {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 2px;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1080px) {
  .hero__inner { display:block; margin: 10px; }
  .hero__img-main { object-position: 70% 20%; }
  .about__inner { grid-template-columns: 320px 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .process__inner { grid-template-columns: 1fr; gap: 40px; }
  .process__visual { max-width: 480px; }

  .hero__sub { max-width: 400px; }
  .value__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__ctas { display: none; }
  .nav__burger { display: flex; }
  .nav.nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav.nav--open .nav__links a { font-size: 16px; }
  .nav.nav--open .nav__ctas {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0; right: 0;
    background: var(--navy);
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border);
  }

  .hero { padding: 88px 0 32px; min-height: auto; }
  .hero__inner { min-height: 480px; border-radius: var(--radius); }
  .hero__text { padding: 40px 28px; max-width: none; }
  .hero__headline { font-size: 32px; }
  .hero__scroll { display: none; }
  .hero__stats { gap: 20px; }
  .stat__divider { display: none; }

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

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image { max-width: 320px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }

  .hero__sub { max-width: 300px; }
  .value__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; gap: 20px; }

  .testimonial__slide { grid-template-columns: 1fr; padding: 32px 24px; column-gap: 0; }
  .testimonial__photo { width: 250px; height: 250px; border-radius: var(--radius); justify-self: center; }
  .testimonial__body { padding: 24px 0 0; }
  .testimonial__text { font-size: 0.975rem; }
}

@media (max-width: 480px) {
  .specialisms__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__img-main { object-position: 80% 20%; }
  .hero__image-overlay {
    background: linear-gradient(to right,
      rgba(13,27,42,0.97) 0%,
      rgba(13,27,42,0.90) 28%,
      rgba(13,27,42,0.80) 52%,
      rgba(13,27,42,0.60) 72%,
      rgba(13,27,42,0.40) 100%
    );
  }
}
