:root {
  --navy: #0b1f33;
  --deep: #061727;
  --ink: #102033;
  --muted: #6f7b87;
  --cyan: #10a0b8;
  --cyan-light: #20bddb;
  --mist: #e7edf2;
  --surface: #f1f4f5;
  --white: #fff;
  --line: rgba(11, 31, 51, .1);
  --radius: 28px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* Brand balance: cyan accents and cool gray surfaces break up the navy. */
.eyebrow, .section-marker { color: var(--cyan); }
.manifesto-wrap:nth-child(1) article, .manifesto-wrap:nth-child(4) article,
.mission-grid article:first-child, .detail-item-wrap:nth-child(even) .detail-item {
  background: linear-gradient(135deg, #0b1f33 0%, #12364b 72%, #0d6075 100%);
}
.strength-card-wrap:nth-child(2) .strength-card, .strength-card-wrap:nth-child(3) .strength-card,
.numbers-grid > div:nth-child(1), .numbers-grid > div:nth-child(3) {
  background: #eef1f2;
}
.service-card:hover { background: linear-gradient(135deg, #0b1f33, #0d6075); }
.manifesto-wrap article, .mission-grid article, .detail-item, .strength-card, .numbers-grid > div, .service-card {
  border-color: rgba(16,160,184,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; text-wrap: pretty; }
::selection { background: var(--cyan); color: white; }
:focus-visible { outline: 3px solid var(--cyan-light); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 16px;
  padding: 10px 14px; border-radius: 10px; background: var(--deep); color: white;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(1680px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: clamp(58px, 5vw, 78px) 0; }
.eyebrow, .section-marker {
  display: inline-flex; width: fit-content; padding: 5px 10px;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--cyan); background: rgba(255,255,255,.72);
  font-size: .68rem; font-weight: 650; letter-spacing: 0;
  line-height: 1; text-transform: none;
}
.eyebrow.dark { color: #536170; }
.section-heading { max-width: 900px; margin: 0 auto 34px; text-align: center; }
.section-heading h2, .intro-layout h2, .editorial-grid h2, .contact-intro h2,
.cta-box h2, .footer-lead h2 {
  margin: 18px 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 450; letter-spacing: -.055em; line-height: 1;
}
.section-heading p, .intro-layout p, .editorial-grid p, .contact-intro > p {
  color: var(--muted); font-size: 1rem;
}

.button {
  display: inline-flex; min-height: 44px; align-items: center; justify-content: center;
  padding: 0 20px; border: 1px solid transparent; border-radius: 999px;
  background: white; color: var(--ink); cursor: pointer; font-size: .82rem;
  font-weight: 650; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.button:hover { transform: translateY(-2px); }
.primary, .nav-cta { background: var(--deep); color: white; }
.primary:hover, .nav-cta:hover { background: var(--cyan); box-shadow: 0 12px 28px rgba(16,160,184,.2); }
.ghost { border-color: var(--line); background: white; color: var(--ink); }
.white { background: white; color: var(--deep); }

/* Header — compact Halsa-style pill navigation */
.site-header {
  position: sticky; z-index: 50; top: 0; padding: 12px 0;
  background: rgba(255,255,255,.86); backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex; min-height: 56px; align-items: center; gap: 26px;
  padding: 7px 8px 7px 16px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(255,255,255,.9);
  box-shadow: 0 8px 32px rgba(11,31,51,.05);
}
.brand { display: flex; margin-right: auto; align-items: center; }
.brand img { width: 110px; max-height: 38px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 560; }
.desktop-nav > a, .desktop-nav summary { display: inline-flex; min-height: 38px; align-items: center; gap: 5px; padding: 0 12px; border-radius: 999px; cursor: pointer; list-style: none; color: #4c5966; transition: color .2s, background .25s, transform .25s var(--ease); }
.desktop-nav > a:hover, .desktop-nav summary:hover, .desktop-nav details[open] summary { background: rgba(16,160,184,.09); color: var(--cyan); transform: translateY(-1px); }
.desktop-nav details { position: relative; }
.nav-chevron { display: inline-block; font-size: .8rem; line-height: 1; transition: transform .3s var(--ease); }
.desktop-nav details[open] .nav-chevron { transform: rotate(180deg); }
.desktop-nav summary::-webkit-details-marker, .mobile-menu summary::-webkit-details-marker { display: none; }
.dropdown {
  position: absolute; top: 38px; left: 50%; display: grid; width: 300px; padding: 10px;
  border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98);
  box-shadow: 0 22px 60px rgba(11,31,51,.12); opacity: 0; pointer-events: none;
  transform: translate(-50%, -8px) scale(.97); transform-origin: top center;
  transition: opacity .24s ease, transform .35s var(--ease);
}
.desktop-nav details::after { position: absolute; top: 34px; right: -18px; left: -18px; height: 14px; content: ""; }
.desktop-nav details:hover .dropdown, .desktop-nav details[open] .dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); }
.dropdown-kicker { padding: 8px 10px; color: var(--muted); font-size: .65rem; }
.dropdown-link { display: flex !important; align-items: center; justify-content: space-between; padding: 11px 10px; border-radius: 10px; }
.dropdown-link > span { color: var(--cyan); opacity: 0; transform: translateX(-4px); transition: opacity .2s ease, transform .2s var(--ease); }
.dropdown-link:hover { background: var(--surface); }
.dropdown-link:hover > span { opacity: 1; transform: translateX(0); }
.desktop-nav details:hover > .dropdown { display: grid; }
.desktop-nav details:not(:hover) > .dropdown { opacity: 0; pointer-events: none; transform: translate(-50%, -8px) scale(.97); }
.nav-cta { min-height: 40px; padding-inline: 18px; }
.mobile-menu { display: none; }

/* Hero */
.home-hero { position: relative; isolation: isolate; overflow: hidden; padding: 0 0 24px; background: var(--deep); }
.home-hero > .container { width: min(1680px, calc(100% - 64px)); max-width: none; }
.hero-shell {
  position: relative; z-index: 1; display: grid; min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(40px, 7vw, 120px);
  align-items: center; overflow: hidden; padding: clamp(68px, 8vw, 112px) clamp(34px, 6vw, 96px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 30px;
  background: rgba(4, 19, 34, .3); box-shadow: 0 28px 90px rgba(4,19,34,.22);
}
.home-hero-background { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(3,17,32,.94) 0%, rgba(3,17,32,.84) 43%, rgba(3,17,32,.38) 72%, rgba(3,17,32,.64) 100%), url('/pgti-assets/brand/bg-hero-3.png') center / cover no-repeat; }
.hero-copy {
  position: relative; z-index: 4; display: flex; max-width: 820px; margin: 0;
  flex-direction: column; align-items: flex-start; padding: 0;
  color: white; text-align: left;
  animation: rise .8s var(--ease) both;
}
.hero-copy h1 {
  max-width: 820px; margin: 20px 0 18px;
  font-size: clamp(2.65rem, 4vw, 4.8rem); font-weight: 440;
  letter-spacing: -.06em; line-height: .96;
}
.hero-copy h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 58ch; margin: 0; color: rgba(255,255,255,.72); font-size: 1rem; }
.hero-actions { display: flex; gap: 8px; margin-top: 20px; }
.hero-landscape { position: absolute; z-index: 1; inset: 48% 0 0; }
.hero-landscape::after {
  position: absolute; inset: 0; content: "";
  background: linear-gradient(180deg, rgba(244,248,249,.95) 0%, transparent 38%);
}
.hero-landscape img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-dashboard {
  position: absolute; z-index: 3; right: 10%; bottom: -8px; left: 10%;
  display: grid; grid-template-columns: .95fr 1fr 1fr; gap: 8px;
  padding: 10px; border: 1px solid rgba(255,255,255,.55); border-radius: 24px 24px 0 0;
  background: rgba(255,255,255,.38); backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(11,31,51,.16);
  animation: dashboardIn .9s .15s var(--ease) both;
}
.hero-dashboard-card {
  position: relative; min-height: 225px; overflow: hidden; border-radius: 16px;
  background: var(--deep); color: white;
}
.hero-dashboard-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.hero-dashboard-card:hover img { transform: scale(1.04); }
.hero-dashboard-card::after {
  position: absolute; inset: 0; content: "";
  background: linear-gradient(0deg, rgba(5,20,33,.92), transparent 66%);
}
.hero-dashboard-card div { position: absolute; z-index: 2; right: 18px; bottom: 18px; left: 18px; display: grid; gap: 4px; }
.hero-dashboard-card span { color: var(--cyan-light); font-size: .64rem; }
.hero-dashboard-card strong { font-size: 1.15rem; font-weight: 550; }
.hero-dashboard-card small {
  color: rgba(255,255,255,.72); font-size: .68rem; line-height: 1.35;
}
.hero-copy > .eyebrow { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: rgba(255,255,255,.84); }
.hero-copy .ghost { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: white; }
.hero-copy .ghost:hover { background: rgba(255,255,255,.18); }
.hero-trust-box {
  position: relative; z-index: 4; isolation: isolate; padding: clamp(24px, 3vw, 42px); border: 1px solid rgba(255,255,255,.2);
  border-radius: 26px; background: rgba(255,255,255,.1); color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 24px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(22px) saturate(125%); animation: dashboardIn .9s .15s var(--ease) both;
  transition: transform .45s var(--ease), border-color .45s ease, box-shadow .45s ease;
}
.hero-trust-box::before { position: absolute; z-index: -1; inset: 0; border-radius: inherit; background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.12) 48%, transparent 72%); content: ""; opacity: 0; transform: translateX(-24%); transition: opacity .45s ease, transform .7s var(--ease); pointer-events: none; }
.hero-trust-box:hover { border-color: rgba(32,189,219,.52); box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 28px 82px rgba(0,0,0,.3), 0 0 0 1px rgba(32,189,219,.08); transform: translateY(-6px); }
.hero-trust-box:hover::before { opacity: 1; transform: translateX(24%); }
.hero-trust-box:active { transform: translateY(-2px) scale(.99); }
.hero-trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-trust-stats div { display: grid; gap: 5px; }
.hero-trust-stats strong { color: var(--cyan-light); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.hero-trust-stats span { color: rgba(255,255,255,.64); font-size: .72rem; line-height: 1.35; }
.hero-trust-divider { height: 1px; margin: 30px 0 24px; background: rgba(255,255,255,.15); }
.hero-partner-heading { margin-bottom: 18px; color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 600; }
.hero-partner-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.hero-partner-logo { display: grid; min-height: 58px; place-items: center; padding: 10px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.06); transition: transform .3s var(--ease), background .3s ease, border-color .3s ease; }
.hero-partner-logo:hover { border-color: rgba(32,189,219,.46); background: rgba(32,189,219,.12); transform: translateY(-3px); }
.hero-partner-logo:active { transform: scale(.96); }
.hero-partner-logo img { width: 100%; max-width: 92px; max-height: 28px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: .8; transition: opacity .3s ease, filter .3s ease; }
.hero-partner-logo:hover img { opacity: 1; filter: grayscale(0) brightness(1) invert(0); }

/* Home — reference order and bento language */
.intro-section, .about-story { background: white; }
.intro-section { padding-top: clamp(72px, 8vw, 108px); padding-bottom: clamp(60px, 7vw, 92px); }
.intro-layout, .editorial-grid, .service-intro {
  display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 7vw, 120px); align-items: start;
}
.intro-layout { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.intro-layout h2, .editorial-grid h2 { max-width: 780px; margin-top: 14px; }
.intro-layout p { max-width: 820px; margin-top: 8px; font-size: 1rem; line-height: 1.55; }
.flagship-section, .detail-section, .manifesto-section, .contact-section { background: white; }
.flagship-section { padding-top: 50px; }
.flagship-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 310px; gap: 12px;
}
.flagship-wrap:first-child { grid-column: span 2; grid-row: span 2; }
.flagship-wrap:nth-child(2), .flagship-wrap:nth-child(3) { grid-column: span 2; }
.flagship-card {
  position: relative; display: block; height: 100%; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: white;
}
.flagship-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.flagship-card:hover img { transform: scale(1.035); }
.flagship-card-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,33,.92), transparent 75%); }
.flagship-card-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; }
.flagship-card-copy > span, .card-index, .strength-card > span, .detail-number, .manifesto-wrap article > span { display: none; }
.flagship-card-copy h3 { margin: 0 0 8px; font-size: clamp(1.65rem, 3vw, 3.2rem); font-weight: 470; letter-spacing: -.045em; line-height: 1; }
.flagship-card-copy p { max-width: 48ch; margin: 0 0 14px; color: rgba(255,255,255,.75); font-size: .82rem; }
.flagship-card-copy strong { color: var(--cyan-light); font-size: .75rem; }

.services-section { background: white; color: var(--ink); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 420px; gap: 14px; }
.service-card-wrap { min-width: 0; }
.service-card {
  position: relative; display: block; height: 100%; min-height: 100%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  background: var(--deep); color: white; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.service-card-image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .55s var(--ease); }
.service-card-scrim { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(4,18,31,.1) 8%, rgba(4,18,31,.58) 52%, rgba(4,18,31,.97) 100%); transition: background .45s var(--ease); }
.service-card-copy { position: absolute; right: 0; bottom: 0; left: 0; padding: 28px; }
.service-card:hover { transform: translateY(-5px); color: white; box-shadow: 0 24px 50px rgba(11,31,51,.22); }
.service-card:hover .service-card-image { transform: scale(1.045); filter: saturate(1.08); }
.service-card:hover .service-card-scrim { background: linear-gradient(180deg, rgba(4,18,31,.05), rgba(4,18,31,.68) 46%, rgba(4,18,31,.99)); }
.service-card h3 { margin: 0 0 14px; font-size: clamp(1.65rem, 2.25vw, 2.65rem); font-weight: 470; letter-spacing: -.045em; line-height: 1; }
.service-card p { margin: 0; color: rgba(255,255,255,.78); font-size: .76rem; line-height: 1.45; }
.service-card .text-link { color: var(--cyan-light); }
.text-link { margin-top: 22px; color: var(--cyan); font-size: .75rem; font-weight: 650; }

.strengths-section { background: white; }
.strength-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.landing-accordion { display: flex; gap: 10px; min-height: 390px; width: 100%; }
.landing-accordion-item { position: relative; isolation: isolate; display: flex; min-width: 0; flex: 1 1 0; overflow: hidden; border-radius: 22px; background-position: center; background-size: cover; color: white; text-decoration: none; transition: flex .55s var(--ease), transform .35s var(--ease), box-shadow .35s ease; }
.landing-accordion-item::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(180deg, rgba(5,21,37,.08) 20%, rgba(5,21,37,.88) 100%); }
.landing-accordion-item:hover, .landing-accordion-item:focus-visible, .landing-accordion-item.is-active { flex: 2.35 1 0; transform: translateY(-4px); box-shadow: 0 24px 50px rgba(11,31,51,.18); }
.landing-accordion-wash { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(16,160,184,.34), transparent 56%); opacity: 0; transition: opacity .4s ease; }
.landing-accordion-item:hover .landing-accordion-wash, .landing-accordion-item.is-active .landing-accordion-wash { opacity: 1; }
.landing-accordion-content { display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; min-width: 250px; padding: 26px; }
.landing-accordion-index { color: var(--cyan-light); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.landing-accordion-title { max-width: 360px; font-size: clamp(1.1rem, 1.55vw, 1.55rem); font-weight: 560; letter-spacing: -.035em; line-height: 1.08; }
.landing-accordion-text { max-width: 360px; color: rgba(255,255,255,.76); font-size: .78rem; line-height: 1.5; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .45s var(--ease); }
.landing-accordion-link { color: var(--cyan-light); font-size: .72rem; font-weight: 650; opacity: 0; transform: translateY(8px); transition: opacity .35s ease .04s, transform .45s var(--ease) .04s; }
.landing-accordion-link span { display: inline-block; margin-left: 5px; transition: transform .25s var(--ease); }
.landing-accordion-item:hover .landing-accordion-text, .landing-accordion-item:hover .landing-accordion-link, .landing-accordion-item.is-active .landing-accordion-text, .landing-accordion-item.is-active .landing-accordion-link { opacity: 1; transform: translateY(0); }
.landing-accordion-item:hover .landing-accordion-link span { transform: translate(3px, -2px); }
.strength-card {
  display: flex; min-height: 300px; flex-direction: column; justify-content: flex-end;
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.strength-card-wrap:nth-child(1) .strength-card, .strength-card-wrap:nth-child(4) .strength-card { background: var(--deep); color: white; }
.strength-card h3 { margin: 0 0 14px; font-size: 1.55rem; font-weight: 480; letter-spacing: -.035em; line-height: 1.05; }
.strength-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.strength-card-wrap:nth-child(1) p, .strength-card-wrap:nth-child(4) p { color: rgba(255,255,255,.65); }
.partners-section { background: white; }
.partner-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; align-items: center; }
.partner { display: grid; min-height: 88px; place-items: center; padding: 18px; filter: grayscale(1); opacity: .58; }
.partner img { max-width: 96px; max-height: 36px; object-fit: contain; }
.numbers-section { padding: 0 0 96px; background: white; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.numbers-grid > div {
  display: flex; min-height: 220px; flex-direction: column; justify-content: space-between;
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.numbers-grid > div:nth-child(2), .numbers-grid > div:nth-child(4) { background: var(--deep); color: white; }
.numbers-grid strong { font-size: clamp(2.5rem, 5vw, 4.6rem); font-weight: 430; letter-spacing: -.06em; line-height: 1; }
.numbers-grid span { max-width: 20ch; color: var(--muted); font-size: .8rem; }
.numbers-grid > div:nth-child(2) span, .numbers-grid > div:nth-child(4) span { color: rgba(255,255,255,.65); }

/* Interaction layer shared by cards across every page */
.flagship-card, .service-card, .strength-card, .numbers-grid > div, .partner, .manifesto-wrap article, .detail-card {
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
}
.flagship-card:hover, .service-card:hover, .strength-card:hover, .numbers-grid > div:hover, .partner:hover, .manifesto-wrap article:hover, .detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16,160,184,.4);
  box-shadow: 0 18px 38px rgba(11,31,51,.13);
}
.flagship-card:active, .service-card:active, .strength-card:active, .numbers-grid > div:active, .partner:active, .manifesto-wrap article:active, .detail-card:active {
  transform: translateY(-2px) scale(.985);
  transition-duration: .12s;
}
.partner { border: 1px solid transparent; border-radius: 14px; cursor: pointer; transition: transform .3s var(--ease), filter .3s ease, opacity .3s ease, border-color .3s ease, background-color .3s ease; }
.partner:hover, .partner:focus-within { filter: grayscale(0); opacity: 1; background: var(--surface); }
@media (prefers-reduced-motion: reduce) {
  .flagship-card, .service-card, .strength-card, .numbers-grid > div, .partner, .manifesto-wrap article, .detail-card { transition: none; }
}

/* Larger reading scale for interface labels and supporting copy. */
.eyebrow, .section-marker { padding: 10px 16px; font-size: .95rem; line-height: 1.15; }
.button { min-height: 54px; padding-inline: 26px; font-size: 1rem; }
.desktop-nav { gap: 12px; font-size: .98rem; }
.desktop-nav > a, .desktop-nav summary { min-height: 48px; padding-inline: 16px; }
.nav-cta { min-height: 52px; padding-inline: 24px; }
.section-heading p, .intro-layout p, .editorial-grid p, .contact-intro > p { font-size: 1.15rem; }
.service-card p, .strength-card p, .numbers-grid span, .flagship-card-copy p, .manifesto-wrap p { font-size: .98rem; }
.text-link, .hero-partner-heading, .hero-trust-stats span, .footer-lead > p { font-size: .9rem; }
.hero-copy > .eyebrow { font-size: .95rem; }
.hero-lead { font-size: 1.15rem; }
.hero-actions { gap: 12px; margin-top: 28px; }
.mobile-menu > summary { width: 50px; height: 50px; }
.mobile-menu > summary span { width: 23px; height: 2px; }
@media (max-width: 640px) {
  .eyebrow, .section-marker { padding: 9px 14px; font-size: .84rem; }
  .button { min-height: 52px; font-size: .96rem; }
  .section-heading p, .intro-layout p, .editorial-grid p, .contact-intro > p { font-size: 1.05rem; }
}

/* Section rhythm: navy → brand cyan → cool gray → white. */
.intro-section { background: #eef2f3; }
.flagship-section { background: #eef1f2; }
.services-section { background: #f1f4f5; }
.strengths-section { background: white; }
.strengths-section .section-heading h2, .strengths-section .section-heading p { color: var(--ink); }
.strengths-section .eyebrow { border-color: var(--line); background: rgba(255,255,255,.72); color: var(--cyan); }
.strengths-section .landing-accordion-item { border-color: rgba(255,255,255,.32); }
.partners-section { background: white; }
.numbers-section { background: #eef2f3; }
.manifesto-section { background: #eef2f3; }
.mission-section { background: #dff5f8; }
.detail-section:nth-of-type(odd) { background: #eef2f3; }
.detail-section:nth-of-type(even) { background: white; }
.service-card-wrap .service-card:hover p { color: rgba(255,255,255,.72); }
.service-card-wrap .service-card:hover .text-link { color: var(--cyan-light); }
.mission-grid article { background: #4b5563; color: white; border-color: rgba(75,85,99,.35); transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease, border-color .35s ease; }
.mission-grid article p { color: rgba(255,255,255,.8); }
.mission-grid article:hover { background: #566272; border-color: rgba(32,189,219,.58); transform: translateY(-6px); box-shadow: 0 20px 42px rgba(11,31,51,.2); }
.mission-grid article:active { transform: translateY(-2px) scale(.985); }
.mission-section .mission-grid article:first-child { background: #4b5563; }
.cta-section { padding: 18px 0 32px; background: white; }
.cta-box {
  position: relative; display: flex; min-height: 590px; overflow: hidden;
  align-items: center; flex-direction: column; justify-content: center;
  padding: 60px 24px 280px; border-radius: 32px;
  background: linear-gradient(145deg, #f5f8fa 0%, #dce8ec 100%);
  text-align: center;
}
.cta-box h2 { max-width: 820px; }
.cta-box .button { margin-top: 8px; background: var(--deep); color: white; }

/* Internal pages */
.inner-hero {
  position: relative; width: 100%; min-height: 560px;
  margin: 0; overflow: hidden; border-radius: 0; color: white;
}
.inner-hero-media, .inner-hero-media img, .inner-hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero-media img { object-fit: cover; }
.inner-hero-scrim { background: linear-gradient(0deg, rgba(4,19,32,.9), rgba(4,19,32,.04) 78%); }
.inner-hero-content {
  position: relative; z-index: 2; display: flex; min-height: 560px; align-items: flex-start;
  flex-direction: column; justify-content: flex-end; padding-top: 54px; padding-bottom: 54px;
}
.breadcrumbs { display: flex; gap: 8px; margin-bottom: auto; font-size: .72rem; color: rgba(255,255,255,.7); }
.inner-hero .eyebrow { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.12); color: white; }
.inner-hero-content h1 {
  max-width: 1320px; margin: 18px 0; font-size: clamp(3rem, 4.4vw, 4.8rem);
  font-weight: 440; letter-spacing: -.058em; line-height: .98;
}
.inner-hero-content .hero-lead { color: rgba(255,255,255,.74); }
.inner-hero-content .button { margin-top: 26px; }
.service-overview { padding-block: clamp(64px, 6vw, 88px); background: white; }
.service-intro p { max-width: 860px; margin: 0 auto; font-size: clamp(1.08rem, 1.45vw, 1.34rem); line-height: 1.48; }
.service-overview .service-intro { grid-template-columns: 1fr; gap: 26px; justify-items: center; text-align: center; }
.service-overview .service-intro-copy { display: grid; width: min(100%, 900px); gap: 24px; }
.service-overview .section-marker { justify-self: center; }
.detail-list { display: grid; gap: 12px; }
.detail-item {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(36px, 5vw, 72px); min-height: 420px;
  padding: clamp(32px, 4vw, 56px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.detail-item-wrap:nth-child(even) .detail-item { background: var(--deep); color: white; }
.detail-copy { align-self: center; }
.detail-item h2 { margin: 0 0 20px; font-size: clamp(1.85rem, 2.8vw, 3rem); font-weight: 470; letter-spacing: -.045em; line-height: 1.04; }
.detail-item p { color: var(--muted); }
.detail-item-wrap:nth-child(even) .detail-item p { color: rgba(255,255,255,.65); }
.detail-item h3 { margin: 28px 0 12px; font-size: .78rem; font-weight: 650; }
.benefit-grid { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.benefit-grid li { position: relative; padding-left: 16px; color: var(--muted); font-size: .8rem; }
.benefit-grid li::before { position: absolute; top: .55em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); content: ""; }
.detail-item-wrap:nth-child(even) .detail-item li { color: rgba(255,255,255,.65); }
.detail-media { overflow: hidden; border-radius: 20px; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }

.manifesto-grid, .mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.manifesto-wrap article {
  display: flex; min-height: 340px; flex-direction: column; justify-content: flex-end;
  padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.manifesto-wrap:nth-child(1) article, .manifesto-wrap:nth-child(4) article { background: var(--deep); color: white; }
.manifesto-wrap h3 { margin: 0 0 14px; font-size: 2rem; font-weight: 470; letter-spacing: -.04em; }
.manifesto-wrap p { margin: 0; color: var(--muted); font-size: .85rem; }
.manifesto-wrap:nth-child(1) p, .manifesto-wrap:nth-child(4) p { color: rgba(255,255,255,.65); }
.mission-section { background: white; }
.mission-grid article { min-height: 330px; padding: clamp(28px, 4vw, 48px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--ink); }
.mission-grid article:first-child { background: var(--deep); color: white; }
.mission-grid img, .mission-grid article::after { display: none; }
.mission-grid article > div { position: static; padding: 0; }
.mission-grid p { max-width: 52ch; margin: 18px 0 0; color: var(--muted); font-size: 1.18rem; line-height: 1.35; }
.mission-grid article:first-child p { color: rgba(255,255,255,.7); }

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 7vw, 112px); align-items: start; }
.contact-intro h2 { margin-top: 24px; }
.contact-options { display: grid; gap: 10px; margin-top: 36px; }
.contact-options a { display: grid; gap: 4px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.contact-options span, .contact-options small { color: var(--cyan); font-size: .72rem; }
.contact-options strong { font-size: .94rem; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-form label { display: grid; gap: 8px; font-size: .76rem; font-weight: 600; }
.contact-form label:nth-of-type(4), .contact-form label:nth-of-type(5) { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; min-height: 50px; padding: 13px; border: 1px solid var(--line);
  border-radius: 12px; background: white; color: var(--ink); font-size: .9rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form > .button {
  width: min(100%, 190px); min-height: 44px; align-self: center; justify-self: start;
  padding: 11px 18px; font-size: .84rem;
}
.contact-form > .button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form-feedback { display: none; grid-column: 1 / -1; padding: 14px 16px; border-radius: 14px; font-size: .86rem; line-height: 1.45; }
.contact-form-feedback.is-success { display: flex; align-items: center; gap: 11px; border: 1px solid rgba(32,164,76,.32); background: rgba(32,164,76,.1); color: #176b31; font-weight: 700; }
.contact-form-feedback.is-success::before { content: "✓"; display: inline-grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #20a44c; color: #fff; font-size: 1rem; line-height: 1; }
.contact-form-feedback.is-error { display: block; border: 1px solid rgba(183,54,54,.25); background: rgba(183,54,54,.08); color: #8d2424; }
.map-section { background: #eef1f2; }
.map-layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(28px, 6vw, 90px); align-items: center; }
.map-copy { display: flex; flex-direction: column; align-items: flex-start; }
.map-copy h2 { margin: 20px 0 14px; font-size: clamp(2.2rem, 4vw, 4.2rem); letter-spacing: -.055em; line-height: .98; }
.map-copy p { max-width: 34ch; margin: 0 0 24px; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.map-frame-wrap { min-height: 430px; overflow: hidden; border: 8px solid white; border-radius: 28px; background: var(--deep); box-shadow: 0 22px 54px rgba(11,31,51,.16); }
.map-frame-wrap iframe { display: block; width: 100%; height: 430px; border: 0; filter: saturate(.82) contrast(1.04); }
@media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; } .map-copy { align-items: center; text-align: center; } .map-copy p { max-width: 48ch; } }
@media (max-width: 640px) { .map-frame-wrap, .map-frame-wrap iframe { min-height: 320px; height: 320px; border-radius: 20px; } }

/* Footer */
.site-footer { padding: 110px 0 28px; border-radius: 32px 32px 0 0; background: var(--deep); color: white; }
.footer-lead { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.12); text-align: center; }
.footer-lead > p { color: var(--cyan-light); font-size: .72rem; }
.footer-lead h2 { max-width: 820px; margin: 0; font-size: clamp(1.8rem, 2.4vw, 2.7rem); line-height: 1.08; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1fr; gap: 55px; padding-top: 58px; }
.footer-brand img { width: 170px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.site-footer h3 { margin: 0 0 10px; color: var(--cyan-light); font-size: .7rem; }
.site-footer a, .site-footer p { color: rgba(255,255,255,.62); font-size: .82rem; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .72rem; }
.footer-contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.footer-contact-actions .button { min-height: 42px; padding-inline: 16px; font-size: .78rem; }
.whatsapp-button { background: #25d366; color: #062b18; }
.whatsapp-button:hover { background: #5be68b; color: #062b18; }
.whatsapp-button svg { width: 18px; height: 18px; margin-right: 7px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal[data-visible="true"] { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }
@keyframes dashboardIn { from { opacity: 0; transform: translateY(40px) scale(.98); } }

@media (max-width: 900px) {
  .desktop-nav, .nav-cta { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu > summary { display: grid; width: 42px; height: 42px; cursor: pointer; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 50%; list-style: none; }
  .mobile-menu > summary span { width: 18px; height: 1px; background: var(--ink); }
  .mobile-menu > div { position: fixed; top: 82px; right: 16px; left: 16px; display: grid; max-height: calc(100dvh - 98px); overflow-y: auto; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.98); box-shadow: 0 24px 60px rgba(11,31,51,.15); }
  .mobile-menu-head { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); font-size: .7rem; }
  .mobile-menu-close { display: grid; width: 28px; height: 28px; margin: -5px -4px 0 8px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; }
  .mobile-menu-close:hover { background: var(--soft); color: var(--cyan); }
  .mobile-menu a:not(.button) { padding: 12px 2px; border-bottom: 1px solid var(--line); }
  .mobile-menu-label { padding: 18px 2px 5px; color: var(--cyan); font-size: .68rem; }
  .mobile-menu .button { margin-top: 18px; }
  .hero-shell {
    min-height: auto; grid-template-columns: minmax(0, 1fr); gap: 38px;
    align-items: start; padding: 64px clamp(24px, 6vw, 52px);
  }
  .hero-copy { width: 100%; max-width: 760px; }
  .hero-copy h1 { max-width: 14ch; font-size: clamp(2.7rem, 7.8vw, 4.35rem); }
  .hero-trust-box { position: relative; width: 100%; max-width: 760px; justify-self: center; }
  .flagship-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .flagship-wrap:first-child, .flagship-wrap:nth-child(2), .flagship-wrap:nth-child(3) { grid-column: span 1; grid-row: auto; }
  .strength-grid, .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
  .detail-item { grid-template-columns: 1fr; }
  .detail-media { min-height: 330px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-lead { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .desktop-nav, .nav-cta { display: none; }
  .mobile-menu { position: relative; display: block; margin-left: auto; }
  .mobile-menu > summary { display: grid; width: 42px; height: 42px; cursor: pointer; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 50%; list-style: none; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span { display: block; width: 18px; height: 1px; background: var(--ink); }
  .mobile-menu > div { position: fixed; z-index: 80; top: 82px; right: 16px; left: 16px; display: grid; max-height: calc(100dvh - 98px); overflow-y: auto; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.98); box-shadow: 0 24px 60px rgba(11,31,51,.15); }
  .mobile-menu-head { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); font-size: .7rem; }
  .mobile-menu-close { display: grid; width: 28px; height: 28px; margin: -5px -4px 0 8px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; }
  .mobile-menu a:not(.button) { padding: 12px 2px; border-bottom: 1px solid var(--line); }
  .mobile-menu-label { padding: 18px 2px 5px; color: var(--cyan); font-size: .68rem; }
  .mobile-menu .button { margin-top: 18px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1180px); }
  .section { padding: 56px 0; }
  .site-header { padding: 8px 0; }
  .nav-wrap { min-height: 52px; padding-left: 12px; }
  .brand img { width: 96px; }
  .home-hero { padding-top: 2px; }
  .home-hero > .container { width: 100%; }
  .hero-shell { min-height: auto; gap: 30px; padding: 46px 18px 22px; border-radius: 0; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { max-width: 12ch; font-size: clamp(2.25rem, 10.4vw, 3.1rem); line-height: 1; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust-box { width: 100%; padding: 22px 16px; border-radius: 20px; }
  .hero-trust-stats { gap: 8px; }
  .hero-trust-stats strong { font-size: clamp(1.7rem, 9vw, 2.25rem); }
  .hero-trust-stats span { font-size: .65rem; }
  .hero-trust-divider { margin: 22px 0 18px; }
  .hero-partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-landscape { display: none; }
  .hero-dashboard {
    right: 10px; bottom: 8px; left: 10px; grid-template-columns: none;
    grid-auto-columns: 82%; grid-auto-flow: column; overflow-x: auto;
    padding: 6px; border-radius: 18px; scroll-snap-type: x mandatory;
  }
  .hero-dashboard-card { min-height: 210px; }
  .hero-dashboard-card { scroll-snap-align: start; }
  .hero-dashboard-card div { right: 12px; bottom: 12px; left: 12px; }
  .hero-dashboard-card small { display: none; }
  .intro-layout, .editorial-grid, .service-intro { grid-template-columns: 1fr; gap: 32px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .intro-layout h2, .editorial-grid h2, .contact-intro h2, .cta-box h2, .footer-lead h2 { font-size: clamp(2.05rem, 9vw, 3rem); line-height: 1.04; }
  .flagship-grid, .service-grid, .strength-grid, .numbers-grid, .manifesto-grid, .mission-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .landing-accordion { min-height: 0; flex-direction: column; }
  .landing-accordion-item, .landing-accordion-item:hover, .landing-accordion-item:focus-visible, .landing-accordion-item.is-active { min-height: 250px; flex: 1 1 auto; transform: none; }
  .landing-accordion-content { min-width: 0; padding: 22px; }
  .landing-accordion-text, .landing-accordion-link { opacity: 1; transform: none; }
  .flagship-card { min-height: 410px; }
  .service-grid { grid-auto-rows: 360px; }
  .service-card, .strength-card { min-height: 290px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-section { padding-bottom: 76px; }
  .numbers-grid > div { min-height: 220px; }
  .cta-box { min-height: 620px; padding: 55px 20px 320px; border-radius: 22px; }
  .inner-hero { width: 100%; min-height: 620px; border-radius: 0; }
  .inner-hero-content { min-height: 620px; padding: 32px 20px; }
  .inner-hero-content h1 { font-size: clamp(2.25rem, 9.8vw, 3.2rem); line-height: 1; }
  .detail-item { gap: 30px; padding: 28px 20px; }
  .detail-item h2 { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .detail-media { min-height: 260px; }
  .manifesto-wrap article { min-height: 290px; padding: 26px; }
  .mission-grid article { min-height: 500px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px 16px; }
  .contact-form label { grid-column: 1 / -1; }
  .contact-form .button { width: min(100%, 190px); min-height: 44px; justify-self: center; }
  .site-footer { padding-top: 78px; border-radius: 22px 22px 0 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (max-width: 760px) {
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { max-width: 13ch; }
  .nav-wrap { gap: 10px; }
  .mobile-menu > div { top: 70px; right: 10px; left: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Static-hosting safety: content must remain visible even if JavaScript is blocked. */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}
