:root {
  --ink: #0B1B33;
  --navy-800: #16294A;
  --navy-700: #203a63;
  --paper: #FAF6EF;
  --paper-2: #F1EAD9;
  --gold: #A9822F;
  --gold-light: #D9BE84;
  --sage: #3F5D4F;
  --sage-light: #E7EEE9;
  --line: rgba(11, 27, 51, 0.12);
  --shadow: 0 20px 50px -25px rgba(11, 27, 51, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
  font-family: 'Fraunces', serif;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .06em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

/* focus */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- HEADER ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--line);
}


/* ---------- NAVBAR ---------- */

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

  gap: 28px;

  width: 100%;
  max-width: 1440px;

  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 48px);
}


/* ---------- BRAND / LOGO ---------- */

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

  flex-shrink: 0;

  text-decoration: none;
}

.brand img {
  display: block;

  width: 260px;
  height: auto;

  max-width: none;

  object-fit: contain;
  object-position: left center;

  flex-shrink: 0;

  transform: translateY(2px);
}


/* Caso ainda utilize o brand-mark em algum lugar */

.brand-mark {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  border-radius: 50%;

  background: linear-gradient(145deg,
      var(--gold-light),
      var(--gold));

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--ink);

  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.85rem;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}


/* ---------- NAV LINKS ---------- */

.nav-links {
  display: flex;
  align-items: center;

  gap: clamp(20px, 2vw, 32px);

  margin-left: auto;

  font-size: 0.92rem;
  font-weight: 500;

  flex-shrink: 0;
}

.nav-links a {
  position: relative;

  display: inline-block;

  padding: 4px 0;

  color: var(--navy-800);

  white-space: nowrap;

  text-decoration: none;
}

.nav-links a::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* ---------- CTA ---------- */

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  white-space: nowrap;

  background: var(--ink);
  color: var(--paper);

  padding: 11px 22px;

  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 600;

  line-height: 1.2;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  background: var(--navy-700);

  transform: translateY(-1px);
}


/* ---------- MOBILE MENU BUTTON ---------- */

.menu-toggle {
  display: none;

  flex-shrink: 0;

  background: none;

  border: none;

  cursor: pointer;

  padding: 6px;
}

.menu-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--ink);

  margin: 5px 0;

  transition: 0.3s;
}


/* ==================================================
   TABLET / MOBILE
================================================== */

@media (max-width: 860px) {

  .nav {
    position: relative;

    gap: 12px;

    padding: 12px clamp(16px, 4vw, 24px);
  }


  /* Logo menor */

  .brand img {
    width: 190px;
    height: auto;

    max-width: none;

    transform: translateY(1px);
  }


  /* Menu dropdown */

  .nav-links {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 99;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    width: 100%;

    padding: 24px clamp(20px, 5vw, 48px);

    margin: 0;

    background: var(--paper);

    border-bottom: 1px solid var(--line);

    transform: translateY(-140%);

    opacity: 0;
    visibility: hidden;

    transition:
      transform 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);

    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    width: 100%;

    white-space: normal;
  }


  /* CTA */

  .nav-cta {
    margin-left: auto;

    padding: 8px 16px;

    font-size: 0.8rem;

    white-space: nowrap;
  }


  /* Hamburger */

  .menu-toggle {
    display: block;
  }
}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 480px) {

  .nav {
    gap: 8px;

    padding: 10px 14px;
  }


  /* Logo */

  .brand img {
    width: 150px;
    height: auto;

    max-width: none;

    transform: none;
  }


  /* CTA */

  .nav-cta {
    padding: 7px 11px;

    font-size: 0.7rem;
  }


  /* Hamburger */

  .menu-toggle {
    padding: 4px;
  }

  .menu-toggle span {
    width: 20px;
  }


  /* Dropdown */

  .nav-links {
    padding: 22px 18px;

    gap: 16px;
  }
}


/* ==================================================
   MOBILE MUITO PEQUENO
================================================== */

@media (max-width: 380px) {

  .brand img {
    width: 135px;
  }

  .nav-cta {
    padding: 6px 9px;

    font-size: 0.66rem;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--sage);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.signature-underline {
  display: block;
  width: min(320px, 70%);
  height: 34px;
  margin-top: 2px;
}

.signature-underline path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 1.8s .5s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero p.lead {
  margin-top: 22px;
  max-width: 460px;
  color: var(--navy-700);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, background .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--navy-700);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color .25s ease, background .25s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--paper-2);
}

.play-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-dot svg {
  width: 9px;
  height: 9px;
  fill: #fff;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: linear-gradient(135deg, var(--sage), var(--navy-700));
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
}

.avatars span:first-child {
  margin-left: 0;
}

.trust-row .count {
  font-weight: 700;
  font-size: 1rem;
}

.trust-row .label {
  font-size: .78rem;
  color: var(--navy-700);
}

/* hero visual */
.hero-visual {
  position: relative;
}

.portrait-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-800), var(--ink) 60%, #0a1424);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow);
}

.portrait-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 239, 0.55);
  gap: 10px;
  text-align: center;
  padding: 20px;
}

.portrait-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: .5;
}

.portrait-placeholder small {
  font-size: .72rem;
  letter-spacing: .05em;
}

.portrait-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px 26px 22px;
  background: linear-gradient(to top, rgba(11, 27, 51, 0.92), rgba(11, 27, 51, 0));
  color: var(--paper);
}

.portrait-caption .name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
}

.portrait-caption .role {
  font-size: .8rem;
  opacity: .75;
  margin-top: 2px;
}

.float-card {
  position: absolute;
  z-index: 10;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}

.float-card.seal {
  top: -6%;
  left: -8%;
}

.float-card.stat {
  bottom: 10%;
  right: -9%;
  animation-delay: 1.2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.seal-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
}

.float-card .title {
  font-weight: 700;
  font-size: .85rem;
}

.float-card .sub {
  font-size: .72rem;
  color: var(--navy-700);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-grid>div:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .signature-underline {
    margin-inline: auto;
  }

  .hero p.lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .float-card {
    position: static;
    margin-top: 14px;
    animation: none;
    display: inline-flex;
  }

  .hero-visual {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-head {
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow {
    justify-content: center;
  }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-grid .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-light);
}

.stats-grid .lbl {
  font-size: .76rem;
  opacity: .7;
  margin-top: 4px;
  max-width: 150px;
  margin-inline: auto;
}

@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
}

.section-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-head p {
  margin-top: 14px;
  color: var(--navy-700);
  font-size: 1rem;
}

/* ---------- PRACTICE AREAS ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper-2);
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.area-card:nth-child(1) {
  background: #EFEFE4;
}

.area-card:nth-child(2) {
  background: var(--sage-light);
}

.area-card:nth-child(3) {
  background: #F3E8D8;
}

.area-card:nth-child(4) {
  background: #EEF1EC;
}

.area-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.area-icon svg {
  width: 20px;
  height: 20px;
}

.area-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.area-card p {
  font-size: .86rem;
  color: var(--navy-700);
  margin-top: 8px;
}

.area-arrow {
  align-self: flex-end;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(11, 27, 51, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  transition: background .3s ease, transform .3s ease;
}

.area-card:hover .area-arrow {
  background: var(--ink);
  transform: rotate(45deg);
}

.area-arrow svg {
  width: 13px;
  height: 13px;
}

.area-card:hover .area-arrow svg {
  filter: invert(1);
}

@media (max-width: 960px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- ABOUT / INTERACTIVE CIRCULAR LAYOUT ---------- */
.about-interactive-layout {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Base styles for the cards */
.about-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -15px rgba(11, 27, 51, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(11, 27, 51, 0.15);
}

.about-card-content {
  flex: 1;
}

.about-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-card p {
  font-size: 0.86rem;
  color: var(--navy-700);
  line-height: 1.5;
}

/* Speech bubble badges */
.about-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 27, 51, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.about-card:hover .about-badge {
  transform: translateY(-50%) scale(1.1);
}

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

.about-badge-icon svg {
  width: 16px;
  height: 16px;
}

/* Left Column adjustments: text aligned right, badge protruding right */
.about-column-left {
  text-align: right;
}

.about-card-left {
  padding-right: 48px;
  /* space for badge */
}

.about-badge-left {
  right: -23px;
  background: var(--sage);
  border-radius: 50% 50% 0 50%;
  /* tail points bottom-right (towards center) */
}

.about-badge-left .about-badge-icon svg {
  color: var(--sage);
}

/* Right Column adjustments: text aligned left, badge protruding left */
.about-column-right {
  text-align: left;
}

.about-card-right {
  padding-left: 48px;
  /* space for badge */
}

.about-badge-right {
  left: -23px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  /* tail points bottom-left (towards center) */
}

.about-badge-right .about-badge-icon svg {
  color: var(--gold);
}

/* Center column with circular image */
.about-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.about-portrait-circle {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 8px solid var(--paper-2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--navy-800), var(--ink));
}

.about-portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.about-center:hover .about-portrait-circle img {
  transform: scale(1.05);
}

/* OAB Seal overlapping portrait */
.about-portrait-seal {
  position: absolute;
  bottom: -15px;
  right: 15px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(169, 130, 47, 0.5);
  z-index: 12;

  /* Initial state for animation */
  transform: scale(0) rotate(-18deg);
  transition: transform 0.6s cubic-bezier(0.2, 1.4, 0.4, 1);
}

.about-portrait-seal.in {
  transform: scale(1) rotate(-10deg);
}

.about-portrait-seal span {
  font-family: 'Fraunces', serif;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

/* Responsiveness */
@media (max-width: 1100px) {
  .about-interactive-layout {
    grid-template-columns: 1fr 260px 1fr;
    gap: 24px;
  }

  .about-portrait-circle {
    width: 230px;
    height: 230px;
    border-width: 6px;
  }

  .about-portrait-seal {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: 5px;
  }

  .about-portrait-seal span {
    font-size: 0.6rem;
  }
}

@media (max-width: 960px) {
  .about-interactive-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-center {
    order: -1;
    /* image at the top */
  }

  .about-portrait-circle {
    width: 250px;
    height: 250px;
  }

  .about-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

  .about-card-left {
    padding-left: 48px;
    padding-right: 24px;
  }

  .about-badge-left {
    left: -23px;
    right: auto;
    border-radius: 50% 50% 50% 0;
    /* matches left badge pointing style */
  }
}

@media (max-width: 700px) {
  .about-column {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 20px 24px;
  }

  .about-card-left,
  .about-card-right {
    padding-left: 56px;
    padding-right: 20px;
  }

  .about-badge-left,
  .about-badge-right {
    left: -18px;
    width: 40px;
    height: 40px;
  }

  .about-badge-icon {
    width: 28px;
    height: 28px;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--navy-800);
  color: var(--paper);
}

.testimonials-section .section-head p {
  color: rgba(250, 246, 239, 0.7);
}

.testimonials-section .eyebrow {
  color: var(--gold-light);
}

.testimonials-section .eyebrow::before {
  background: var(--gold-light);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(250, 246, 239, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(11, 27, 51, 0.2);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              background-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(250, 246, 239, 0.07);
  border-color: var(--gold-light);
  box-shadow: 0 20px 40px rgba(169, 130, 47, 0.15), 0 30px 60px -15px rgba(11, 27, 51, 0.4);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.testimonial-text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(250, 246, 239, 0.85);
  font-style: italic;
  margin-bottom: 28px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(250, 246, 239, 0.08);
  padding-top: 20px;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
  box-shadow: 0 4px 10px rgba(11, 27, 51, 0.25);
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper);
}

.client-case {
  font-size: 0.76rem;
  color: var(--gold-light);
  margin-top: 2px;
  font-weight: 500;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- PROCESS ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-item {
  padding: 28px 36px;
  border-right: 1px solid var(--line);
  position: relative;
}

.process-item:first-child {
  padding-left: 0;
}

.process-item:last-child {
  padding-right: 0;
  border-right: none;
}

.process-item .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  color: var(--gold);
}

.process-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-top: 10px;
}

.process-item p {
  font-size: .85rem;
  color: var(--navy-700);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-item,
  .process-item:first-child,
  .process-item:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 16px;
  }
}

@media (max-width: 560px) {
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-item,
  .process-item:first-child,
  .process-item:last-child {
    border-right: none;
    padding: 24px 0;
  }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(140deg, var(--ink), #0a1424);
  color: var(--paper);
  border-radius: 32px;
  padding: 64px clamp(24px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
}

.final-cta h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.final-cta p {
  margin: 16px auto 30px;
  max-width: 480px;
  opacity: .75;
  font-size: .98rem;
}

.final-cta .btn-primary {
  background: var(--gold);
  color: #fff;
}

.final-cta .btn-primary:hover {
  background: var(--gold-light);
  color: #fff;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 56px 0 32px;
  font-size: .82rem;
  color: var(--navy-700);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-cols h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-cols a {
  display: block;
  margin-bottom: 8px;
  opacity: .8;
}

.footer-cols a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}