:root {
  --ink: #07161f;
  --ink-soft: #123041;
  --foam: #f3f7f4;
  --mist: #d7ebe3;
  --teal: #0f766e;
  --mint: #5fd0b5;
  --gold: #d4a017;
  --line: rgba(7, 22, 31, 0.12);
  --shadow: 0 28px 70px rgba(7, 22, 31, 0.16);
  --radius: 24px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", Tahoma, sans-serif;
  --page-pad: clamp(1.15rem, 4vw, 1.75rem);
  --wrap: min(1120px, calc(100% - (var(--page-pad) * 2)));
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 10% -8%, rgba(95, 208, 181, 0.34), transparent 60%),
    radial-gradient(700px 480px at 92% 6%, rgba(212, 160, 23, 0.18), transparent 55%),
    radial-gradient(800px 600px at 70% 95%, rgba(15, 118, 110, 0.16), transparent 60%),
    linear-gradient(180deg, #eef6f2 0%, #f7faf8 45%, #e8f2ee 100%);
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: max(0.95rem, var(--safe-top)) max(var(--page-pad), var(--safe-right)) 0.95rem
    max(var(--page-pad), var(--safe-left));
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  backdrop-filter: saturate(1.2) blur(14px);
  background: rgba(243, 247, 244, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 247, 244, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--mint), var(--teal) 55%, var(--ink-soft));
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.35);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 28% 30% 28% 30%;
  border: 2px solid rgba(243, 247, 244, 0.9);
  border-radius: 999px;
  border-left-color: transparent;
  transform: rotate(-20deg);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand-text small {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a,
.nav-drop-btn {
  font-size: 0.94rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  color: inherit;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav-drop-btn:hover,
.nav-dropdown.open .nav-drop-btn {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-btn {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-drop-btn::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 15.5rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 50;
}

.nav-dropdown.open .nav-drop-menu {
  display: flex;
}

.nav-drop-menu a {
  opacity: 1;
  padding: 0.7rem 0.85rem;
  border-radius: 0.7rem;
  white-space: nowrap;
}

.nav-drop-menu a:hover {
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal);
}

.hero-simple {
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(82vh, 780px);
  min-height: min(82dvh, 780px);
  max-width: none;
  align-items: center;
}

.hero-orbits {
  position: relative;
  min-height: 380px;
  width: 100%;
  max-width: 100%;
}

.hero-orbits .orbit-a {
  inset: 8% 10% 8% 10%;
}

.hero-orbits .orbit-b {
  inset: 22% 18% 22% 18%;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, rgba(95, 208, 181, 0.95), transparent 40%),
    linear-gradient(145deg, var(--ink-soft), var(--teal));
  box-shadow:
    0 0 0 12px rgba(95, 208, 181, 0.12),
    0 18px 40px rgba(7, 22, 31, 0.18);
  animation: float 6s ease-in-out infinite;
}

.orbit-core::after {
  content: "";
  position: absolute;
  inset: 28% 30% 28% 30%;
  border: 2px solid rgba(243, 247, 244, 0.9);
  border-radius: 999px;
  border-left-color: transparent;
  transform: rotate(-20deg);
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--foam) !important;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.wrap {
  width: var(--wrap);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

.hero {
  min-height: min(92vh, 860px);
  min-height: min(92dvh, 860px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 6vh, 4rem) 0 clamp(3rem, 8vh, 5rem);
}

.hero > *,
.hub-card,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

.brand-lockup {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1.15;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-lede,
.page-hero p {
  margin: 1.15rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  max-width: 36rem;
  color: rgba(7, 22, 31, 0.76);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  color: var(--foam);
  box-shadow: 0 14px 30px rgba(7, 22, 31, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(7, 22, 31, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  animation: rise 1s 0.1s ease both;
}

.hero-copy {
  animation: rise 0.85s ease both;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(15, 118, 110, 0.25);
  animation: spin 30s linear infinite;
  pointer-events: none;
}

.orbit-a {
  inset: 2% 6% 16% 2%;
}

.orbit-b {
  inset: 16% -2% -2% 16%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 42s;
}

.dash-panel {
  position: absolute;
  inset: 8% 4% 8% 8%;
  padding: 1.35rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(215, 235, 227, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dash-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 208, 181, 0.5), transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.dash-top {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.dash-top span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(7, 22, 31, 0.15);
}

.dash-top span:first-child {
  background: var(--mint);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}

.dash-tile {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 22, 31, 0.06);
}

.dash-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.dash-tile span {
  font-size: 0.88rem;
  color: rgba(7, 22, 31, 0.65);
}

.dash-tile.wide {
  grid-column: 1 / -1;
}

.dash-tile.dark {
  background: linear-gradient(145deg, var(--ink-soft), var(--teal));
  color: var(--foam);
  border-color: transparent;
}

.dash-tile.dark span {
  color: rgba(243, 247, 244, 0.75);
}

.flow {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.flow i {
  font-style: normal;
  font-size: 0.78rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal);
  font-weight: 600;
}

.section {
  padding: clamp(3rem, 8vh, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vh, 2.75rem);
}

.eyebrow {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--teal);
}

.section-head h2,
.page-block h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head p,
.page-block > p.lead {
  margin: 0.85rem 0 0;
  color: rgba(7, 22, 31, 0.7);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-link {
  display: grid;
  gap: 1rem;
  padding: 1.4rem 1.45rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(7, 22, 31, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-link:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.service-link h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.service-link ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.service-link li {
  position: relative;
  padding-left: 1rem;
  color: rgba(7, 22, 31, 0.72);
  font-size: 0.96rem;
}

.service-link li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.service-link .link-out {
  margin-top: 0.25rem;
  font-weight: 700;
  color: var(--teal);
}

.why-list,
.proof-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.why-list li,
.proof-list li {
  list-style: none;
  margin: 0;
  padding: 1.1rem 1rem;
  border-top: 2px solid var(--teal);
  background: rgba(255, 255, 255, 0.4);
}

.why-list,
.proof-list {
  margin: 0;
  padding: 0;
}

.why-list strong,
.proof-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.why-list span,
.proof-list span {
  font-size: 0.92rem;
  color: rgba(7, 22, 31, 0.68);
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  counter-reset: step;
}

.process li {
  list-style: none;
  margin: 0;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(7, 22, 31, 0.07);
  counter-increment: step;
}

.process {
  margin: 0;
  padding: 0;
}

.process li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.process strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-item {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 48, 65, 0.96), rgba(15, 118, 110, 0.88));
  color: var(--foam);
  min-height: 180px;
  align-content: end;
  transition: transform 0.25s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-item span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 247, 244, 0.65);
}

.portfolio-item strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.portfolio-item em {
  font-style: normal;
  font-weight: 600;
  color: var(--mint);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
  color: rgba(7, 22, 31, 0.72);
}

.final-cta,
.cta-band {
  margin: 0 0 clamp(3rem, 7vh, 5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 55%, #0a4f4a 100%);
  color: var(--foam);
  box-shadow: var(--shadow);
}

.final-cta p,
.cta-band p {
  margin: 0.85rem 0 0;
  color: rgba(243, 247, 244, 0.78);
  max-width: 34rem;
}

.final-cta .btn-primary,
.cta-band .btn-primary {
  background: linear-gradient(135deg, var(--mint), #2f9e88);
  color: var(--ink);
  box-shadow: none;
  margin-top: 1.4rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-channels {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-channels span {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 247, 244, 0.55);
}

.contact-channels a {
  color: var(--mint);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 247, 244, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--foam);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cta-band .btn-email {
  background: rgba(255, 255, 255, 0.08);
  color: var(--foam);
  border-color: rgba(243, 247, 244, 0.22);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
  color: rgba(243, 247, 244, 0.6);
}

.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  color: rgba(7, 22, 31, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.9rem;
}

.footer-links a {
  color: var(--teal);
  font-weight: 600;
}

.page-hero {
  padding: clamp(2.5rem, 7vh, 4.5rem) 0 clamp(2rem, 5vh, 3rem);
}

.page-hero .brand-lockup {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.feature-list p {
  margin: 0;
  color: rgba(7, 22, 31, 0.7);
}

.page-block + .page-block {
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

.offer-section {
  margin: 0 0 clamp(2rem, 5vh, 3.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(7, 22, 31, 0.06);
}

.offer-section .section-head {
  margin-bottom: 1.5rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.35rem 1.3rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(7, 22, 31, 0.06);
  box-shadow: 0 10px 28px rgba(7, 22, 31, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 23, 0.35);
}

.offer-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
  flex-shrink: 0;
}

.offer-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-copy h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  line-height: 1.2;
}

.offer-copy p {
  margin: 0;
  color: rgba(7, 22, 31, 0.7);
  font-size: 0.96rem;
}

.offer-copy ul {
  margin: 0.65rem 0 0;
  padding: 0 0 0 1.1rem;
  color: rgba(7, 22, 31, 0.7);
  font-size: 0.94rem;
}

.offer-copy li + li {
  margin-top: 0.3rem;
}

.note-box {
  max-width: 52rem;
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 248, 230, 0.95), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.note-box p {
  margin: 0.85rem 0 0;
  color: rgba(7, 22, 31, 0.78);
}

.note-box p:first-of-type {
  margin-top: 0.75rem;
}

.note-warn {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(212, 160, 23, 0.12);
  color: #8a4b12 !important;
  font-weight: 500;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1000px) {
  .hero,
  .cta-band,
  .service-grid,
  .portfolio-grid,
  .offer-grid,
  .hero-simple {
    grid-template-columns: 1fr;
  }

  .why-list,
  .proof-list,
  .process,
  .trust-grid,
  .why-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-cards,
  .portfolio-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .hero-simple {
    min-height: auto;
    padding-top: 1.5rem;
  }

  /* Keep copy first on tablet/mobile — decorative visual below */
  .hero-visual,
  .hero-orbits {
    order: 0;
    min-height: 260px;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .dash-panel {
    inset: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: calc(4.5rem + var(--safe-top));
    right: max(1rem, var(--safe-right));
    left: max(1rem, var(--safe-left));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(243, 247, 244, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 6rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 45;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav-drop-btn {
    padding: 0.75rem 0.85rem;
    border-radius: 0.8rem;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: rgba(15, 118, 110, 0.06);
    margin-top: 0.35rem;
    min-width: 0;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .menu-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .why-list,
  .proof-list,
  .process,
  .contact-form,
  .form-actions,
  .offer-grid,
  .hub-cards,
  .portfolio-cards,
  .trust-grid,
  .why-icons,
  .timeline,
  .footer-grid,
  .hero-simple {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .brand-lockup {
    font-size: clamp(1.15rem, 5.5vw, 1.55rem);
  }

  .hero-lede,
  .page-hero p {
    font-size: 1.02rem;
  }

  .hero-orbits,
  .hero-visual {
    min-height: 200px;
    max-width: 280px;
    order: 0;
  }

  .orbit-core {
    width: 4.25rem;
    height: 4.25rem;
  }

  .btn {
    width: 100%;
  }

  .timeline {
    gap: 0;
  }

  .timeline li:not(:last-child)::after {
    display: none;
  }

  .chatbot {
    right: max(0.75rem, var(--safe-right));
    left: max(0.75rem, var(--safe-left));
    bottom: calc(5rem + var(--safe-bottom));
    width: auto;
    max-height: min(68dvh, 520px);
  }

  .chat-launch {
    right: max(1rem, var(--safe-right));
    bottom: max(1rem, var(--safe-bottom));
  }
}

@media (max-width: 480px) {
  .trust-points li {
    font-size: 0.95rem;
  }

  .hero-orbits {
    min-height: 160px;
  }

  .section-head h2,
  .trust-band h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }
}

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

.trust-points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.trust-points li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 600;
  color: rgba(7, 22, 31, 0.82);
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(95, 208, 181, 0.25);
}

.cta-micro {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(7, 22, 31, 0.62);
  font-weight: 500;
}

.cta-micro.light {
  color: rgba(243, 247, 244, 0.7);
}

.workflow-panel {
  position: absolute;
  inset: 6% 4% 6% 8%;
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(215, 235, 227, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  overflow: auto;
}

.workflow-label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.workflow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.workflow-steps li {
  position: relative;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(7, 22, 31, 0.06);
  font-size: 0.95rem;
}

.workflow-steps li:not(:last-child)::after {
  content: "↓";
  display: block;
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  margin-top: 0.35rem;
  line-height: 1;
}

.trust-band {
  padding: clamp(2rem, 5vh, 3rem) 0;
}

.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-grid li {
  padding: 1rem 0.9rem;
  border-top: 2px solid var(--teal);
  background: rgba(255, 255, 255, 0.5);
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.trust-grid span {
  font-size: 0.9rem;
  color: rgba(7, 22, 31, 0.68);
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hub-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.45rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(7, 22, 31, 0.07);
  box-shadow: 0 12px 30px rgba(7, 22, 31, 0.05);
}

.hub-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.hub-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hub-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(7, 22, 31, 0.72);
}

.hub-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.hub-card .btn {
  justify-self: start;
  min-height: 2.6rem;
  padding: 0.65rem 1.1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.hub-card-desc {
  margin: 0;
  color: rgba(7, 22, 31, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.why-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.why-icons li {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 1rem;
  border: 1px solid rgba(7, 22, 31, 0.06);
}

.why-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
}

.why-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(7, 22, 31, 0.07);
  counter-increment: step;
  text-align: center;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.timeline li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-weight: 700;
  z-index: 1;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(7, 22, 31, 0.07);
  box-shadow: 0 12px 30px rgba(7, 22, 31, 0.05);
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.portfolio-card span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.portfolio-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.portfolio-card p {
  margin: 0;
  color: rgba(7, 22, 31, 0.68);
}

.text-link {
  color: var(--teal);
  font-weight: 700;
}

.rich-footer {
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-grid h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.footer-grid .footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.chat-launch {
  position: fixed;
  right: max(1.25rem, var(--safe-right));
  bottom: max(1.25rem, var(--safe-bottom));
  z-index: 50;
  border: 0;
  border-radius: 999px;
  min-height: 3.4rem;
  padding: 0 1.2rem;
  background: linear-gradient(135deg, var(--ink-soft), var(--teal));
  color: var(--foam);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(7, 22, 31, 0.25);
  -webkit-tap-highlight-color: transparent;
}

.chatbot {
  position: fixed;
  right: max(1.25rem, var(--safe-right));
  bottom: calc(5.2rem + var(--safe-bottom));
  z-index: 50;
  width: min(380px, calc(100vw - 1.5rem - var(--safe-left) - var(--safe-right)));
  max-height: min(70vh, 560px);
  max-height: min(70dvh, 560px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(7, 22, 31, 0.08);
  box-shadow: 0 24px 60px rgba(7, 22, 31, 0.22);
  overflow: hidden;
}

.chatbot[hidden] {
  display: none !important;
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, var(--ink-soft), var(--teal));
  color: var(--foam);
}

.chatbot-head small {
  display: block;
  opacity: 0.75;
  margin-top: 0.15rem;
}

.chat-close {
  border: 0;
  background: transparent;
  color: var(--foam);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-body {
  padding: 1rem;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  background: #f7faf8;
}

.chat-bubble {
  max-width: 92%;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.94rem;
  line-height: 1.45;
}

.chat-bubble.bot {
  background: #fff;
  border: 1px solid rgba(7, 22, 31, 0.06);
}

.chat-bubble.user {
  justify-self: end;
  background: var(--ink);
  color: var(--foam);
}

.chat-options {
  display: grid;
  gap: 0.45rem;
}

.chat-option {
  border: 1px solid rgba(15, 118, 110, 0.25);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.chat-option:hover {
  border-color: var(--teal);
  background: rgba(95, 208, 181, 0.12);
}

.chat-option.chat-whatsapp {
  background: linear-gradient(135deg, var(--ink-soft), var(--teal));
  color: #fff;
  border-color: transparent;
  text-align: center;
}

.chat-option.chat-whatsapp:hover {
  background: linear-gradient(135deg, var(--ink), var(--teal));
  border-color: transparent;
  color: #fff;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chatbot-form input {
  border: 1px solid rgba(7, 22, 31, 0.12);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font: inherit;
}

.chatbot-form .btn {
  min-height: 2.6rem;
}

/* Responsive overrides MUST stay last — earlier base grids would otherwise win on mobile */
@media (max-width: 1000px) {
  .trust-grid,
  .why-icons,
  .timeline,
  .hub-cards,
  .portfolio-cards,
  .footer-grid,
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .trust-grid,
  .why-icons,
  .timeline,
  .hub-cards,
  .portfolio-cards,
  .footer-grid,
  .offer-grid,
  .service-grid,
  .contact-form,
  .form-actions,
  .cta-band,
  .hero,
  .hero-simple {
    grid-template-columns: 1fr !important;
  }

  .hub-card,
  .portfolio-card,
  .offer-card,
  .trust-grid li,
  .why-icons li,
  .timeline li {
    min-width: 0;
    max-width: 100%;
  }

  .hub-card h3,
  .portfolio-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hub-card .btn,
  .portfolio-card .btn,
  .btn {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .why-icons,
  .timeline {
    gap: 0.65rem;
  }

  .timeline li {
    text-align: left;
  }

  .timeline li:not(:last-child)::after {
    display: none;
  }

  .chat-launch {
    right: max(0.85rem, var(--safe-right));
    bottom: max(0.85rem, var(--safe-bottom));
  }

  .chatbot {
    left: max(0.75rem, var(--safe-left));
    right: max(0.75rem, var(--safe-right));
    bottom: calc(4.8rem + var(--safe-bottom));
    width: auto;
  }
}

@media (max-width: 480px) {
  .hub-card {
    padding: 1.2rem 1.1rem;
  }

  .trust-grid li,
  .why-icons li,
  .timeline li {
    padding: 0.95rem 0.85rem;
  }
}
