/* =========================================================
   FORJAI CONTABILIDADE
   Landing page responsiva
   ========================================================= */

   :root {
    --navy-950: #0a1222;
    --navy-900: #111c33;
    --navy-850: #17243d;
    --navy-800: #1d2c49;
  
    --teal-600: #0aa59f;
    --teal-500: #12b8b0;
    --teal-400: #44cec6;
    --teal-100: #dff7f4;
  
    --ink: #162033;
    --muted: #667085;
    --muted-2: #8791a3;
  
    --paper: #ffffff;
    --soft: #f4f6f8;
    --soft-teal: #f0fbfa;
    --line: #dfe4ea;
  
    --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
    --sans: "Manrope", Arial, Helvetica, sans-serif;
  
    --container: 1200px;
    --header-height: 82px;
  
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
  
    --shadow-sm: 0 12px 35px rgba(12, 25, 48, 0.08);
    --shadow-md: 0 22px 60px rgba(5, 20, 40, 0.16);
  
    --transition: 220ms ease;
  }
  
  
  /* =========================================================
     RESET / BASE
     ========================================================= */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: auto !important;
    scroll-padding-top: calc(var(--header-height) + 24px);
  }
  
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  img,
  svg {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
  }
  
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  
  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
  
  button {
    color: inherit;
  }
  
  p,
  h1,
  h2,
  h3 {
    margin-top: 0;
  }
  
  ::selection {
    background: var(--teal-500);
    color: var(--navy-950);
  }
  
  .container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
  }
  
  .section {
    padding: clamp(76px, 8vw, 128px) 0;
  }
  
  .section-dark {
    background: var(--navy-900);
    color: #fff;
  }
  
  .section-soft {
    background: var(--soft);
  }
  
  .page-top-anchor {
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    transform: translateY(-180%);
    border-radius: 8px;
    background: #fff;
    color: var(--navy-900);
    padding: 10px 14px;
    font-weight: 800;
    text-decoration: none;
  }
  
  .skip-link:focus {
    transform: translateY(0);
  }
  
  :focus-visible {
    outline: 3px solid var(--teal-400);
    outline-offset: 4px;
  }
  
  
  /* =========================================================
     TYPOGRAPHY / SHARED
     ========================================================= */
  
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--teal-400);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
  }
  
  .eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
  }
  
  .eyebrow--dark {
    color: var(--teal-600);
  }
  
  .section-heading h2,
  .about-copy h2,
  .process-heading h2,
  .faq-intro h2,
  .contact-copy h2,
  .cta-band h2 {
    margin-bottom: 24px;
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.3vw, 4.15rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
  }
  
  .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
    gap: clamp(36px, 7vw, 100px);
    align-items: end;
    margin-bottom: clamp(44px, 6vw, 76px);
  }
  
  .section-heading--split h2 {
    max-width: 760px;
    margin-bottom: 0;
  }
  
  .section-heading--split > p {
    margin: 0;
    color: var(--muted);
  }
  
  
  /* =========================================================
     HEADER
     ========================================================= */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 18, 34, 0.96);
    color: #fff;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: #fff;
    text-decoration: none;
  }

  .brand-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: min(300px, 34vw);
    object-fit: contain;
  }

  .brand--footer .brand-logo {
    height: 66px;
    max-width: min(340px, 46vw);
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
  }
  
  .main-nav > a {
    position: relative;
    color: #d9deea;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
  }
  
  .main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--teal-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }
  
  .main-nav > a:hover {
    color: #fff;
  }
  
  .main-nav > a:not(.nav-cta):hover::after {
    transform: scaleX(1);
  }
  
  .main-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(68, 206, 198, 0.5);
    border-radius: 999px;
    color: var(--teal-400);
  }
  
  .main-nav .nav-cta:hover {
    background: var(--teal-500);
    border-color: var(--teal-500);
    color: var(--navy-950);
  }
  
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 19px;
    height: 1.5px;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
  }
  
  
  /* =========================================================
     BUTTONS / LINKS
     ========================================================= */
  
  .button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 0.87rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
      transform var(--transition),
      background var(--transition),
      border-color var(--transition),
      color var(--transition),
      box-shadow var(--transition);
  }
  
  .button:hover {
    transform: translateY(-2px);
  }
  
  .button--primary {
    background: var(--teal-500);
    color: var(--navy-950);
    box-shadow: 0 12px 28px rgba(18, 184, 176, 0.18);
  }
  
  .button--primary:hover {
    background: var(--teal-400);
    box-shadow: 0 16px 34px rgba(18, 184, 176, 0.28);
  }
  
  .button--ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  .button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
  }
  
  .button--light {
    background: #fff;
    color: var(--navy-900);
  }
  
  .button--light:hover {
    background: var(--teal-100);
  }
  
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-900);
    font-weight: 800;
    text-decoration: none;
  }
  
  .text-link span {
    color: var(--teal-600);
    transition: transform var(--transition);
  }
  
  .text-link:hover span {
    transform: translate(3px, -3px);
  }
  
  
  /* =========================================================
     HERO
     ========================================================= */
  
  .hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    right: -15%;
    bottom: -35%;
    width: 70%;
    aspect-ratio: 1;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
  }
  
  .hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
  }
  
  .hero-glow--one {
    top: -180px;
    right: -100px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(18, 184, 176, 0.18), rgba(18, 184, 176, 0));
  }
  
  .hero-glow--two {
    bottom: -260px;
    left: -220px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(48, 89, 145, 0.22), rgba(48, 89, 145, 0));
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.82fr);
    align-items: center;
    gap: clamp(52px, 7vw, 108px);
    padding-top: clamp(72px, 8vw, 118px);
    padding-bottom: clamp(72px, 8vw, 118px);
  }
  
  .hero-copy {
    max-width: 760px;
  }
  
  .hero h1 {
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: clamp(3.35rem, 6vw, 6.45rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.89;
  }
  
  .hero h1 span {
    color: var(--teal-400);
  }
  
  .hero-lead {
    max-width: 680px;
    margin-bottom: 34px;
    color: #bcc5d4;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.78;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
  }
  
  .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    color: #c7cfdb;
    font-size: 0.79rem;
    font-weight: 600;
  }
  
  .hero-points > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .point-icon {
    width: 21px;
    height: 21px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(68, 206, 198, 0.45);
    border-radius: 50%;
    color: var(--teal-400);
    font-size: 0.68rem;
  }
  
  .hero-visual {
    position: relative;
    min-height: 590px;
  }
  
  .hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 220px 220px 34px 34px;
    padding: 38px 34px 42px;
  
    /*
      Coloque sua foto em:
      assets/img/hero-forjai.jpg
  
      A camada de gradiente permanece como fallback caso a imagem ainda
      não tenha sido adicionada.
    */
    background:
      linear-gradient(180deg, rgba(8, 19, 34, 0.12) 0%, rgba(8, 19, 34, 0.9) 92%),
      radial-gradient(circle at 60% 24%, rgba(68, 206, 198, 0.55), rgba(33, 57, 86, 0.35) 33%, rgba(13, 25, 45, 0.98) 72%),
      url("assets/img/hero-forjai.jpg") center / cover no-repeat;
    box-shadow: var(--shadow-md);
  }
  
  .hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(110deg, transparent 45%, rgba(255, 255, 255, 0.07) 46%, transparent 47%);
    pointer-events: none;
  }
  
  .hero-photo__top,
  .hero-photo__content {
    position: relative;
    z-index: 1;
  }
  
  .hero-photo__top {
    visibility: hidden;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d8e0ea;
    font-size: 0.72rem;
    font-weight: 700;
  }
  
  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-400);
    box-shadow: 0 0 0 7px rgba(68, 206, 198, 0.1);
  }
  
  .hero-photo__content {
    display: grid;
    gap: 12px;
  }
  
  .mini-label {
    color: var(--teal-400);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
  }
  
  .hero-photo__content strong {
    max-width: 100%;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 3.8vw, 4.15rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.92;
    overflow-wrap: normal;
    word-break: normal;
  }
  
  .floating-card {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(14, 26, 48, 0.92);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  }
  
  .floating-card--services {
    top: 38%;
    left: -6px;
    width: min(280px, 66%);
    display: grid;
    gap: 7px;
    border-radius: 18px;
    padding: 18px 20px;
  }
  
  .floating-card--services span {
    color: var(--teal-400);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .floating-card--services strong {
    font-size: 0.83rem;
  }
  
  .floating-card--consulting {
    right: -20px;
    bottom: -28px;
    width: min(285px, 70%);
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    padding: 17px 18px;
  }
  
  .floating-card__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--teal-500);
    color: var(--navy-950);
    font-weight: 900;
  }
  
  .floating-card--consulting div {
    display: grid;
    line-height: 1.35;
  }
  
  .floating-card--consulting small {
    color: #9da9bb;
    font-size: 0.67rem;
  }
  
  .floating-card--consulting strong {
    margin-top: 3px;
    font-size: 0.78rem;
  }
  
  
  /* =========================================================
     VALUE STRIP
     ========================================================= */
  
  .value-strip {
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  
  .value-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-strip article {
    min-height: 150px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 38px 32px;
    border-right: 1px solid var(--line);
  }
  
  .value-strip article:first-child {
    padding-left: 0;
  }
  
  .value-strip article:last-child {
    padding-right: 0;
    border-right: 0;
  }
  
  .value-strip article > span {
    color: var(--teal-600);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }
  
  .value-strip article div {
    display: grid;
    gap: 5px;
  }
  
  .value-strip strong {
    font-size: 0.93rem;
  }
  
  .value-strip p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
  }
  
  
  /* =========================================================
     SERVICES
     ========================================================= */
  
  .services {
    overflow: hidden;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  
  .service-card {
    position: relative;
    min-height: 350px;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 28px;
    transition:
      transform var(--transition),
      box-shadow var(--transition),
      border-color var(--transition);
  }
  
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 3;
  }
  
  .service-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(18, 184, 176, 0.18);
    border-radius: 50%;
    transition: transform 360ms ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 184, 176, 0.45);
    box-shadow: var(--shadow-sm);
  }
  
  .service-card:hover::after {
    transform: scale(1.28);
  }
  
  .service-card--featured {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff;
  }
  
  .service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    border-radius: 50%;
    background: var(--soft-teal);
    color: var(--teal-600);
  }
  
  .service-card--featured .service-icon {
    background: rgba(68, 206, 198, 0.11);
    color: var(--teal-400);
  }
  
  .service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .service-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #a1aaba;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
  }
  
  .service-card--featured .service-number {
    color: #708099;
  }
  
  .service-card h3 {
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.1vw, 2rem);
    font-weight: 400;
    line-height: 1.05;
  }
  
  .service-card p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 0.87rem;
  }
  
  .service-card--featured p {
    color: #aeb8c8;
  }
  
  .service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--navy-900);
    font-size: 0.77rem;
    font-weight: 800;
    text-decoration: none;
  }
  
  .service-card--featured a {
    color: var(--teal-400);
  }
  
  .service-card a span {
    transition: transform var(--transition);
  }
  
  .service-card a:hover span {
    transform: translate(3px, -3px);
  }
  
  
  /* =========================================================
     ABOUT
     ========================================================= */
  
  .about {
    background: #fbfcfd;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.88fr);
    align-items: center;
    gap: clamp(58px, 8vw, 120px);
  }
  
  .about-visual {
    position: relative;
    min-height: 650px;
  }
  
  .about-photo {
    position: absolute;
    inset: 0 48px 46px 0;
    overflow: hidden;
    border-radius: 34px 170px 34px 34px;
  
    /*
      Coloque sua foto em:
      assets/img/sobre-forjaijpg
    */
    background:
      linear-gradient(180deg, rgba(12, 25, 45, 0.08), rgba(12, 25, 45, 0.78)),
      radial-gradient(circle at 70% 26%, rgba(68, 206, 198, 0.36), rgba(44, 63, 84, 0.42) 34%, rgba(20, 34, 56, 0.98) 72%),
      url("assets/img/sobre-forjai.jpg") center / cover no-repeat;
    box-shadow: var(--shadow-md);
  }
  
  .about-photo__badge {
    position: absolute;
    right: 28px;
    bottom: 30px;
    left: 28px;
    display: grid;
    gap: 7px;
    color: #fff;
  }
  
  .about-photo__badge span {
    color: var(--teal-400);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
  }
  
  .about-photo__badge strong {
    max-width: 400px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.7vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
  }
  
  .about-detail-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(360px, 68%);
    display: flex;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 21px 22px;
    box-shadow: var(--shadow-sm);
  }
  
  .about-detail-card__line {
    width: 4px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--teal-500);
  }
  
  .about-detail-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 600;
    line-height: 1.55;
  }
  
  .about-copy {
    max-width: 620px;
  }
  
  .about-copy h2 {
    margin-bottom: 26px;
  }
  
  .about-copy > p {
    color: var(--muted);
  }
  
  .about-copy .about-lead {
    color: var(--ink);
    font-size: clamp(1.03rem, 1.5vw, 1.16rem);
    font-weight: 600;
  }
  
  .check-list {
    display: grid;
    gap: 16px;
    margin: 32px 0;
  }
  
  .check-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .check-list span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-600);
    font-size: 0.72rem;
    font-weight: 900;
  }
  
  .check-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
  }
  
  
  /* =========================================================
     PROCESS
     ========================================================= */
  
  .process-heading {
    max-width: 820px;
    margin-bottom: clamp(48px, 6vw, 80px);
  }
  
  .process-heading > p:last-child {
    max-width: 670px;
    margin-bottom: 0;
    color: var(--muted);
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d8dde4;
  }
  
  .process-card {
    position: relative;
    padding: 38px 38px 12px 0;
  }
  
  .process-card + .process-card {
    padding-left: 38px;
    border-left: 1px solid #d8dde4;
  }
  
  .process-step {
    display: inline-block;
    margin-bottom: 52px;
    color: var(--teal-600);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  
  .process-line {
    position: absolute;
    top: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal-500);
    box-shadow: 0 0 0 6px var(--soft);
  }
  
  .process-card + .process-card .process-line {
    left: 38px;
  }
  
  .process-card h3 {
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
  }
  
  .process-card p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.86rem;
  }
  
  
  /* =========================================================
     CTA BAND
     ========================================================= */
  
  .cta-band {
    position: relative;
    overflow: hidden;
    background: var(--teal-500);
    color: var(--navy-950);
  }
  
  .cta-band::after {
    content: "";
    position: absolute;
    top: -120px;
    right: 3%;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(10, 18, 34, 0.13);
    border-radius: 50%;
  }
  
  .cta-band__inner {
    position: relative;
    z-index: 1;
    min-height: 340px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 60px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  
  .cta-band .eyebrow {
    color: var(--navy-900);
  }
  
  .cta-band h2 {
    max-width: 860px;
    margin-bottom: 0;
  }
  
  .cta-band .button {
    min-width: 220px;
  }
  
  
  /* =========================================================
     FAQ
     ========================================================= */
  
  .faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: clamp(50px, 8vw, 120px);
  }
  
  .faq-intro {
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 36px);
  }
  
  .faq-intro h2 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
  }
  
  .faq-intro > p {
    max-width: 430px;
    color: var(--muted);
  }
  
  .faq-list {
    border-top: 1px solid var(--line);
  }
  
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  
  .faq-question {
    width: 100%;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    background: transparent;
    padding: 18px 0;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
  }
  
  .faq-question > span:first-child {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    line-height: 1.15;
  }
  
  .faq-plus {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  
  .faq-plus::before,
  .faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    background: var(--navy-900);
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
  }
  
  .faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .faq-question[aria-expanded="true"] .faq-plus::after {
    transform: translate(-50%, -50%) rotate(0);
  }
  
  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
  }
  
  .faq-answer > p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
  }
  
  .faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
  }
  
  .faq-item.is-open .faq-answer > p {
    padding: 0 54px 28px 0;
  }
  
  
  /* =========================================================
     CONTACT
     ========================================================= */
  
  .contact {
    position: relative;
    overflow: hidden;
  }
  
  .contact::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 184, 176, 0.11), transparent 66%);
  }
  
  .contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
    align-items: start;
    gap: clamp(56px, 9vw, 132px);
  }
  
  .contact-copy h2 {
    max-width: 600px;
  }
  
  .contact-copy > p {
    max-width: 560px;
    color: #aeb7c7;
  }
  
  .contact-info {
    display: grid;
    gap: 14px;
    margin-top: 40px;
  }
  
  .contact-info a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    text-decoration: none;
  }
  
  .contact-info__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(68, 206, 198, 0.25);
    border-radius: 50%;
    color: var(--teal-400);
  }
  
  .contact-info a div {
    display: grid;
    gap: 2px;
  }
  
  .contact-info small {
    color: #8f9bad;
    font-size: 0.68rem;
    font-weight: 700;
  }
  
  .contact-info strong {
    max-width: 520px;
    font-size: 0.85rem;
    line-height: 1.55;
  }
  
  .contact-form {
    display: grid;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.045);
    padding: clamp(24px, 4vw, 40px);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .contact-form label {
    display: grid;
    gap: 8px;
  }
  
  .contact-form label > span {
    color: #d5dbe5;
    font-size: 0.72rem;
    font-weight: 700;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(5, 12, 24, 0.32);
    color: #fff;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
  }
  
  .contact-form input,
  .contact-form select {
    min-height: 52px;
    padding: 0 15px;
  }
  
  .contact-form textarea {
    min-height: 124px;
    resize: vertical;
    padding: 14px 15px;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #748094;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: var(--teal-400);
    background: rgba(5, 12, 24, 0.52);
  }
  
  .contact-form select option {
    color: #111;
  }
  
  .form-submit {
    width: 100%;
    border: 0;
    margin-top: 4px;
  }
  
  .form-note {
    margin: -6px 0 0;
    color: #778398;
    font-size: 0.67rem;
    text-align: center;
  }
  
  
  /* =========================================================
     FOOTER
     ========================================================= */
  
  .site-footer {
    background: var(--navy-950);
    color: #fff;
  }
  
  .footer-top {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 26px;
  }
  
  .footer-nav a {
    color: #9fa9ba;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
  }
  
  .footer-nav a:hover {
    color: var(--teal-400);
  }
  
  .footer-bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #6f7a8d;
    font-size: 0.69rem;
  }
  
  
  /* =========================================================
     WHATSAPP FLOAT
     ========================================================= */
  
  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 990;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: linear-gradient(145deg, #2ee775, #19bd5c);
    color: #fff;
    text-decoration: none;
    box-shadow:
      0 12px 28px rgba(16, 126, 62, 0.28),
      0 4px 12px rgba(0, 0, 0, 0.14);
    transition:
      transform var(--transition),
      box-shadow var(--transition),
      filter var(--transition);
  }

  .whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(37, 211, 102, 0.24);
    border-radius: 50%;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    filter: saturate(1.05);
    box-shadow:
      0 16px 36px rgba(16, 126, 62, 0.34),
      0 6px 16px rgba(0, 0, 0, 0.16);
  }

  .whatsapp-float:hover::before {
    transform: scale(1.14);
    opacity: 0;
  }

  .whatsapp-float__icon {
    width: 34px;
    height: 34px;
    overflow: visible;
  }

  .whatsapp-float__bubble {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .whatsapp-float__phone {
    fill: currentColor;
    stroke: none;
  }

  .whatsapp-float__tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 13px);
    width: max-content;
    padding: 9px 12px;
    border-radius: 9px;
    background: var(--navy-950);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity var(--transition), transform var(--transition);
  }

  .whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translate(0, -50%);
  }


  /* =========================================================
     RESPONSIVE - 1100px
     ========================================================= */
  
  @media (max-width: 1100px) {
  
    :root {
      --header-height: 74px;
    }
  
    .main-nav {
      gap: 16px;
    }
  
    .main-nav > a {
      font-size: 0.75rem;
    }
  
    .main-nav .nav-cta {
      padding-inline: 14px;
    }
  
    .hero-grid {
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
      gap: 52px;
    }
  
    .hero-visual {
      min-height: 520px;
    }
  
    .hero-photo {
      left: 10px;
    }
  
    .floating-card--services {
      left: -14px;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
      grid-column: auto;
    }
  
    .service-card:last-child {
      grid-column: 1 / -1;
    }
  
    .about-grid {
      gap: 60px;
    }
  
    .about-visual {
      min-height: 590px;
    }
  
    .contact-grid {
      gap: 64px;
    }
  }
  
  
  /* =========================================================
     RESPONSIVE - TABLET / MOBILE NAV (900px)
     ========================================================= */
  
  @media (max-width: 900px) {
  
        .site-header {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

.container {
      width: min(calc(100% - 32px), var(--container));
    }

    .brand--header .brand-logo {
      height: 48px;
      max-width: 250px;
    }
  
    .menu-toggle {
      display: flex;
      z-index: 1002;
    }
  
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
  
    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }
  
    .main-nav {
      position: fixed;
      top: var(--header-height);
      right: 0;
      left: 0;
      z-index: 1001;

      width: 100%;
      height: calc(100dvh - var(--header-height));
      min-height: calc(100vh - var(--header-height));

      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;

      overflow-y: auto;
      overscroll-behavior: contain;

      background: var(--navy-950);
      padding: 18px 16px 28px;

      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);

      transition:
        opacity 220ms ease,
        transform 220ms ease,
        visibility 220ms ease;
    }
  
    .main-nav.is-open {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
  
    .main-nav > a {
      min-height: 54px;
      display: flex;
      align-items: center;
      flex: 0 0 auto;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 0 8px;
      font-family: var(--serif);
      font-size: 1.24rem;
      font-weight: 400;
    }
  
    .main-nav > a:not(.nav-cta)::after {
      display: none;
    }
  
    .main-nav .nav-cta {
      min-height: 54px;
      justify-content: center;
      margin-top: 18px;
      border: 0;
      border-radius: 999px;
      background: var(--teal-500);
      color: var(--navy-950);
      font-family: var(--sans);
      font-size: 0.84rem;
      font-weight: 800;
    }
  
    .hero {
      min-height: auto;
    }
  
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 56px;
    }
  
    .hero-copy {
      max-width: 800px;
    }
  
    .hero h1 {
      max-width: 850px;
    }
  
    .hero-lead {
      max-width: 720px;
    }
  
    .hero-visual {
      width: min(100%, 650px);
      min-height: 620px;
      margin-inline: auto;
    }
  
    .hero-photo {
      left: 30px;
    }
  
    .floating-card--services {
      left: 0;
    }
  
    .value-strip__grid {
      grid-template-columns: 1fr;
    }
  
    .value-strip article,
    .value-strip article:first-child,
    .value-strip article:last-child {
      min-height: 0;
      padding: 24px 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }
  
    .value-strip article:last-child {
      border-bottom: 0;
    }
  
    .section-heading--split {
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
    }
  
    .section-heading--split > p {
      max-width: 680px;
    }
  
    .about-grid {
      grid-template-columns: 1fr;
      gap: 70px;
    }
  
    .about-visual {
      width: min(100%, 700px);
      min-height: 670px;
    }
  
    .about-copy {
      max-width: 760px;
    }
  
    .process-grid {
      grid-template-columns: 1fr;
      border-top: 0;
    }
  
    .process-card,
    .process-card + .process-card {
      min-height: 210px;
      padding: 32px 0 32px 42px;
      border-top: 1px solid #d8dde4;
      border-left: 0;
    }
  
    .process-card + .process-card .process-line,
    .process-line {
      top: 34px;
      left: 0;
    }
  
    .process-step {
      margin-bottom: 20px;
    }
  
    .cta-band__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .cta-band .button {
      width: max-content;
    }
  
    .faq-grid {
      grid-template-columns: 1fr;
      gap: 46px;
    }
  
    .faq-intro {
      position: static;
    }
  
    .faq-intro > p {
      max-width: 700px;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-copy {
      max-width: 760px;
    }
  }
  
  
  /* =========================================================
     RESPONSIVE - 680px
     ========================================================= */
  
  @media (max-width: 680px) {
  
    :root {
      --header-height: 68px;
    }
  
    .container {
      width: min(calc(100% - 28px), var(--container));
    }

    .main-nav {
      padding-top: 12px;
      padding-bottom: 22px;
    }

    .main-nav > a {
      min-height: 50px;
      font-size: 1.15rem;
    }

    .main-nav .nav-cta {
      min-height: 50px;
      margin-top: 14px;
    }

  
    .brand--header .brand-logo {
      height: 42px;
      max-width: 220px;
    }

    .brand--footer .brand-logo {
      height: 58px;
      max-width: min(300px, 78vw);
    }
  
    .menu-toggle {
      width: 42px;
      height: 42px;
    }
  
    .section {
      padding: 78px 0;
    }
  
    .eyebrow {
      font-size: 0.68rem;
    }
  
    .section-heading h2,
    .about-copy h2,
    .process-heading h2,
    .faq-intro h2,
    .contact-copy h2,
    .cta-band h2 {
      font-size: clamp(2.15rem, 11vw, 3.35rem);
    }
  
    .hero-grid {
      gap: 44px;
      padding-top: 64px;
      padding-bottom: 72px;
    }
  
    .hero h1 {
      font-size: clamp(3rem, 14vw, 4.55rem);
    }
  
    .hero-lead {
      font-size: 0.95rem;
    }
  
    .hero-actions {
      display: grid;
    }
  
    .hero-actions .button {
      width: 100%;
    }
  
    .hero-points {
      display: grid;
      gap: 12px;
    }
  
    .hero-visual {
      min-height: 510px;
    }
  
    .hero-photo {
      right: 0;
      bottom: 28px;
      left: 18px;
      border-radius: 150px 150px 26px 26px;
      padding: 30px 22px;
    }
  
    .hero-photo__content strong {
      max-width: 100%;
      font-size: clamp(2.2rem, 10.2vw, 3.15rem);
      line-height: 0.94;
    }
  
    .floating-card--services {
      top: 36%;
      left: 0;
      width: 66%;
      padding: 14px 15px;
    }
  
    .floating-card--consulting {
      right: 0;
      bottom: -28px;
      width: 72%;
      padding: 14px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card,
    .service-card:last-child {
      min-height: 320px;
      grid-column: auto;
      padding: 24px;
    }
  
    .service-number {
      top: 24px;
      right: 24px;
    }
  
    .about-visual {
      min-height: 540px;
    }
  
    .about-photo {
      inset: 0 22px 50px 0;
      border-radius: 26px 115px 26px 26px;
    }
  
    .about-photo__badge {
      right: 20px;
      bottom: 24px;
      left: 20px;
    }
  
    .about-detail-card {
      width: 82%;
      padding: 17px;
    }
  
    .cta-band__inner {
      min-height: 0;
      padding-top: 70px;
      padding-bottom: 70px;
    }
  
    .cta-band .button {
      width: 100%;
    }
  
    .faq-question {
      min-height: 88px;
    }
  
    .faq-item.is-open .faq-answer > p {
      padding-right: 0;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .contact-form {
      border-radius: 20px;
    }
  
    .footer-top,
    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .footer-top {
      padding-top: 40px;
      padding-bottom: 34px;
    }
  
    .footer-nav {
      justify-content: flex-start;
    }
  
    .footer-bottom {
      min-height: 0;
      padding-top: 24px;
      padding-bottom: 34px;
    }
  
    .whatsapp-float {
      right: 16px;
      bottom: 16px;
      width: 56px;
      height: 56px;
    }

    .whatsapp-float__icon {
      width: 31px;
      height: 31px;
    }

    .whatsapp-float__tooltip {
      display: none;
    }
  }
  
  
  /* =========================================================
     VERY SMALL - 400px
     ========================================================= */
  
  @media (max-width: 400px) {
  
    .container {
      width: min(calc(100% - 22px), var(--container));
    }
  
    .brand--header .brand-logo {
      height: 38px;
      max-width: 190px;
    }

    .brand--footer .brand-logo {
      height: 52px;
      max-width: min(280px, 82vw);
    }
  
    .hero h1 {
      font-size: clamp(2.65rem, 14vw, 3.45rem);
    }
  
    .hero-visual {
      min-height: 455px;
    }
  
    .hero-photo {
      left: 0;
      border-radius: 120px 120px 22px 22px;
    }
  
    .floating-card--services {
      top: 32%;
      width: 74%;
    }
  
    .hero-photo__content strong {
      font-size: clamp(2.05rem, 10vw, 2.55rem);
    }

    .floating-card--consulting {
      bottom: -24px;
      width: 82%;
    }
  
    .about-visual {
      min-height: 485px;
    }
  
    .about-photo {
      inset: 0 12px 58px 0;
    }
  
    .about-detail-card {
      width: 90%;
    }
  }
  
  
  /* =========================================================
     REDUCED MOTION
     ========================================================= */
  
  @media (prefers-reduced-motion: reduce) {
  
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }