:root {
  --bg: #f4f7f4;
  --surface: #ffffff;
  --surface-strong: #edf2f4;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --text: #203241;
  --muted: #5b6d7b;
  --line: rgba(36, 52, 69, 0.12);
  --line-strong: rgba(36, 52, 69, 0.22);
  --brand-green: #78b44a;
  --brand-green-deep: #4f8530;
  --brand-orange: #d99a4f;
  --brand-orange-deep: #b87428;
  --brand-blue: #4c8cab;
  --brand-blue-deep: #245e77;
  --shadow-soft: 0 18px 55px rgba(24, 42, 59, 0.12);
  --shadow-strong: 0 28px 80px rgba(24, 42, 59, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --wrap: min(1180px, calc(100vw - 2rem));
  --header-height: 88px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(76, 140, 171, 0.13), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(120, 180, 74, 0.1), transparent 25rem),
    radial-gradient(circle at 52% 14%, rgba(217, 154, 79, 0.08), transparent 18rem),
    linear-gradient(180deg, #f8fbf8 0%, #eef3f4 50%, #f7f9f6 100%);
  line-height: 1.6;
  isolation: isolate;
}

body::before,
body::after {
  content: "quotas 01 atas 02 saldo 03 contas 04 orcamento 05 condominio 06 lancamentos 07";
  position: fixed;
  inset: -10vh -10vw;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  line-height: 1.9;
  letter-spacing: 0.35em;
  color: rgba(36, 94, 119, 0.06);
  white-space: pre-wrap;
  transform: rotate(-7deg);
  filter: blur(0.25px);
  opacity: 0.55;
  mask-image: radial-gradient(circle at center, black 20%, transparent 78%);
  animation: dataFlow 34s linear infinite;
}

body::after {
  content: "balanco 01 reconciliação 02 assembleia 03 fiscalidade 04 arquivo 05 recibos 06";
  color: rgba(79, 133, 48, 0.055);
  transform: rotate(9deg) translateY(12vh);
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.42;
}

body.has-modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1.1rem;
  background: var(--text);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 248, 0.9);
  border-bottom: 1px solid rgba(36, 52, 69, 0.08);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.brand-anchor img {
  width: 176px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-copy strong {
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 52, 69, 0.08);
  box-shadow: 0 16px 40px rgba(24, 42, 59, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav a {
  position: relative;
  overflow: hidden;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 243, 0.9));
  box-shadow: inset 0 0 0 1px rgba(76, 140, 171, 0.14), 0 8px 20px rgba(24, 42, 59, 0.08);
  transform: translateY(-2px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.36rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 180, 74, 0), rgba(120, 180, 74, 0.95), rgba(76, 140, 171, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(76, 140, 171, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.6rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-deep));
  color: #fff;
  box-shadow: 0 16px 32px rgba(211, 124, 34, 0.22);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.6rem 0 3.4rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.56;
  animation: floatBlob 16s ease-in-out infinite;
}

.hero::before {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 1rem;
  background: radial-gradient(circle, rgba(76, 140, 171, 0.18), rgba(76, 140, 171, 0));
  animation-duration: 22s;
}

.hero::after {
  width: 21rem;
  height: 21rem;
  left: -8rem;
  bottom: -3rem;
  background: radial-gradient(circle, rgba(120, 180, 74, 0.18), rgba(120, 180, 74, 0));
  animation-delay: -6s;
  animation-duration: 26s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: stretch;
}

.hero-copy,
.hero-stage-simple,
.info-card,
.service-card,
.faq-item,
.contact-card,
.cta-panel,
.footer-card,
.legal-panel,
.hero-feature,
.hero-brand-card,
.notice-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.hero-copy:hover,
.hero-stage-simple:hover,
.info-card:hover,
.service-card:hover,
.faq-item:hover,
.contact-card:hover,
.cta-panel:hover,
.footer-card:hover,
.legal-panel:hover,
.hero-feature:hover,
.hero-brand-card:hover,
.notice-card:hover {
  transform: translateY(-5px);
}

.hero-feature,
.hero-brand-card,
.notice-card,
.info-card,
.service-card,
.faq-item,
.contact-card,
.legal-panel,
.cta-panel,
.footer-card,
.hero-stage-simple {
  position: relative;
  overflow: hidden;
}

.info-card:hover,
.service-card:hover,
.faq-item:hover,
.contact-card:hover,
.cta-panel:hover,
.footer-card:hover,
.legal-panel:hover,
.hero-feature:hover,
.hero-brand-card:hover,
.notice-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: rgba(76, 140, 171, 0.18);
}

.service-card::before,
.info-card::before,
.faq-item::before,
.contact-card::before,
.cta-panel::before,
.footer-card::before,
.legal-panel::before,
.hero-feature::before,
.hero-brand-card::before,
.notice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 35%, rgba(76, 140, 171, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-card:hover::before,
.info-card:hover::before,
.faq-item:hover::before,
.contact-card:hover::before,
.cta-panel:hover::before,
.footer-card:hover::before,
.legal-panel:hover::before,
.hero-feature:hover::before,
.hero-brand-card:hover::before,
.notice-card:hover::before {
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(36, 52, 69, 0.1);
  color: var(--brand-blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange));
  box-shadow: 0 0 0 6px rgba(120, 192, 67, 0.14);
}

.hero-copy h1,
.section-head h2,
.legal-hero h1,
.section-title {
  margin: 1rem 0 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  max-width: 14ch;
  text-wrap: balance;
}

.gradient-word {
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-copy {
  min-height: 34rem;
}

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

.btn,
.ghost-btn,
.chip-link,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.btn:hover,
.ghost-btn:hover,
.chip-link:hover,
.small-btn:hover,
.btn:focus-visible,
.ghost-btn:focus-visible,
.chip-link:focus-visible,
.small-btn:focus-visible {
  transform: translateY(-2px);
}

.btn {
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-green));
  color: #fff;
  box-shadow: 0 16px 38px rgba(81, 149, 42, 0.28);
}

.btn.orange {
  background: linear-gradient(135deg, var(--brand-orange-deep), var(--brand-orange));
  box-shadow: 0 16px 38px rgba(211, 124, 34, 0.24);
}

.ghost-btn,
.chip-link,
.small-btn {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-feature,
.hero-brand-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.hero-feature h3 {
  margin: 0.55rem 0 0.4rem;
  font-size: 1.06rem;
  line-height: 1.35;
}

.hero-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(36, 52, 69, 0.09);
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-pill strong {
  color: var(--text);
}

.hero-stage {
  position: relative;
  min-height: 40rem;
}

.hero-stage-simple {
  min-height: auto;
  align-self: stretch;
  margin-top: 0.5rem;
  height: 100%;
  min-height: 34rem;
}

.stage-panel,
.floating-card,
.notice-card,
.service-card,
.faq-item,
.contact-card,
.info-card,
.legal-panel,
.cta-panel,
.footer-card,
.cookie-panel,
.cookie-modal-panel {
  background: var(--surface-soft);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.stage-panel {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(76, 168, 210, 0.2), rgba(120, 192, 67, 0.18));
}

.stage-panel-simple {
  position: relative;
  inset: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.16)),
    linear-gradient(140deg, rgba(76, 140, 171, 0.15), rgba(120, 180, 74, 0.12));
}

.hero-stage-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 34rem;
  padding: 1.15rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 68% 22%, rgba(76, 140, 171, 0.24), transparent 24%),
    radial-gradient(circle at 28% 74%, rgba(120, 180, 74, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(9, 27, 39, 0.04), rgba(9, 27, 39, 0.34)),
    linear-gradient(135deg, rgba(76, 140, 171, 0.12), rgba(120, 180, 74, 0.08));
  animation: heroDrift 18s ease-in-out infinite, heroGlow 12s ease-in-out infinite;
  overflow: visible;
}

.hero-stage-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(10, 24, 34, 0), rgba(10, 24, 34, 0.52));
}

.hero-stage-badges {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-stage-visual::before {
  content: "quotas 01\A atas 02\A saldos 03\A contas 04\A fiscalidade 05";
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: 4.5rem;
  padding: 0.75rem 0.4rem;
  border-radius: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(8, 20, 30, 0.36), rgba(8, 20, 30, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  line-height: 1.9;
  text-align: right;
  white-space: pre-line;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-stage-visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 2;
}

.hero-stage-visual-frame::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  border-radius: 42% 58% 54% 46% / 42% 40% 60% 58%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1) 52%, rgba(76, 140, 171, 0.12) 72%, rgba(76, 140, 171, 0) 100%);
  filter: blur(8px);
  animation: blobShift 16s ease-in-out infinite;
}

.hero-stage-image {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  width: 100%;
  height: 100%;
  transform: none;
}

.hero-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 52, 69, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 69, 0.08) 1px, transparent 1px);
  background-size: 3.8rem 3.8rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
}

.stage-photo {
  position: absolute;
  right: 1.35rem;
  top: 1.35rem;
  width: min(78%, 33rem);
  border-radius: 1.7rem;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(3deg);
}

.stage-photo-simple {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  transform: none;
  z-index: 1;
}

.stage-photo img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.stage-photo-simple img {
  aspect-ratio: 4 / 3;
}

.stage-accent {
  position: absolute;
  left: 1.5rem;
  bottom: 1.4rem;
  display: grid;
  gap: 0.8rem;
  width: min(72%, 20rem);
}

.hero-stage-body {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  min-height: 0;
  max-width: 24rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(76, 140, 171, 0.05), rgba(120, 180, 74, 0.06));
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

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

.hero-brand-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.hero-stage-note {
  width: 100%;
}

.hero-stage-note strong {
  font-size: 1.02rem;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.floating-card.brand-card {
  display: grid;
  gap: 0.9rem;
  width: min(70%, 18rem);
}

.floating-card.brand-a {
  left: 1.2rem;
  top: 1.2rem;
  animation: drift 8s ease-in-out infinite;
}

.floating-card.brand-b {
  left: 3.4rem;
  top: 12.5rem;
  animation: drift 10s ease-in-out infinite;
  animation-delay: -4s;
}

.brand-card img {
  max-height: 3.9rem;
  width: auto;
}

.brand-card strong {
  display: block;
  font-size: 1rem;
}

.brand-card p,
.floating-card p,
.notice-card p,
.faq-item p,
.contact-card p,
.info-card p,
.legal-panel p,
.cta-panel p,
.footer-card p {
  margin: 0;
  color: var(--muted);
}

.brand-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  background: rgba(36, 52, 69, 0.06);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-chip.orange {
  background: rgba(242, 161, 76, 0.15);
  color: #9b5a16;
}

.brand-chip.green {
  background: rgba(120, 192, 67, 0.16);
  color: #447b24;
}

.notice-card {
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
}

.notice-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.section {
  padding: 2.5rem 0 0.8rem;
}

.section-soft {
  padding-top: 3rem;
  padding-bottom: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(237, 242, 244, 0.55), rgba(255, 255, 255, 0.2));
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  max-width: 13ch;
}

.section-head p {
  max-width: 40rem;
  color: var(--muted);
  margin: 0;
}

.dual-grid,
.story-grid,
.service-grid,
.contact-grid,
.legal-grid,
.cta-grid,
.footer-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.story-grid,
.cta-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: start;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid,
.legal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid-offset {
  margin-top: 1rem;
}

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

.info-card,
.service-card,
.faq-item,
.contact-card,
.legal-panel,
.cta-panel,
.footer-card {
  border-radius: var(--radius-lg);
  padding: 1.3rem;
}

.contact-stack,
.company-detail-list {
  display: grid;
  gap: 1rem;
}

.company-detail-list {
  margin-top: 1.3rem;
  gap: 0.9rem;
}

.company-detail-list p {
  margin: 0;
}

.info-card img {
  max-height: 4.6rem;
  width: auto;
}

.info-card h3,
.service-card h3,
.contact-card h3,
.legal-panel h3,
.cta-panel h3,
.footer-card h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.bullet-list,
.prose ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.bullet-list li,
.prose li {
  position: relative;
  padding-left: 1.25rem;
}

.bullet-list li::before,
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
}

.split-story {
  display: grid;
  gap: 1rem;
}

.story-photo {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 22, 34, 0.64));
}

.story-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-weight: 700;
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-copy p,
.service-card p,
.contact-card p,
.cta-panel p {
  color: var(--muted);
}

.contact-company p {
  color: var(--muted);
}

.contacts-section {
  padding-bottom: 3rem;
}

.contact-card-brand {
  min-height: 100%;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -1.1rem;
  bottom: -1.2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 168, 210, 0.15), rgba(76, 168, 210, 0));
  transition: transform 240ms ease, opacity 240ms ease;
}

.service-card:hover::after {
  transform: scale(1.08);
  opacity: 0.9;
}

.service-icon {
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 1.35rem;
  padding: 0.45rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 243, 0.9));
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(36, 52, 69, 0.12),
    inset 0 0 0 1px rgba(76, 140, 171, 0.08);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.15rem;
}

.service-number {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(36, 52, 69, 0.07);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.quote-box {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(120, 192, 67, 0.12), rgba(76, 168, 210, 0.12));
  border: 1px solid rgba(36, 52, 69, 0.08);
}

.quote-box strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.contact-card a,
.legal-panel a,
.footer-card a,
.prose a {
  color: var(--brand-blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: baseline;
}

.contact-line strong {
  color: var(--text);
}

.small-note,
.legal-meta,
.footer-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.divider-title {
  margin-top: 0.3rem;
  color: var(--brand-orange-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 4rem;
}

.cta-panel {
  position: relative;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 161, 76, 0.16), rgba(242, 161, 76, 0));
}

.stars {
  display: inline-flex;
  gap: 0.18rem;
  color: var(--brand-orange-deep);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-card h3 {
  margin-top: 0;
}

.footer-brand-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-brand-logos {
  display: grid;
  gap: 0.75rem;
}

.footer-brand-logos img {
  display: block;
  max-width: min(100%, 11rem);
  max-height: 4.2rem;
  width: auto;
  height: auto;
  padding: 0.45rem 0.55rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(36, 52, 69, 0.08);
}

.footer-brand-logos img:nth-child(2) {
  max-width: min(100%, 12rem);
}

.footer-brand-contact {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.footer-brand-contact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.footer-brand-contact strong {
  color: var(--text);
}

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

.footer-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(36, 52, 69, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-nav-links a:hover,
.footer-nav-links a:focus-visible {
  background: rgba(120, 180, 74, 0.16);
  color: var(--text);
}

.footer-rating-card {
  display: grid;
  align-content: start;
}

.footer-rating {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-rating .stars {
  font-size: 1.05rem;
}

.footer-rating p {
  margin: 0;
}

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.footer-inline-links a {
  color: var(--muted);
}

.footer-inline-links a:hover,
.footer-inline-links a:focus-visible {
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.subfooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.subfooter a {
  color: var(--brand-blue-deep);
}

.legal-hero {
  padding: 3.5rem 0 1.2rem;
}

.legal-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

.legal-hero p {
  max-width: 54rem;
  color: var(--muted);
  margin: 0.9rem 0 0;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs span {
  color: rgba(86, 104, 123, 0.55);
}

.prose-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  padding-bottom: 3rem;
}

.prose,
.legal-aside {
  min-width: 0;
}

.prose .legal-panel,
.legal-aside .legal-panel {
  background: rgba(255, 255, 255, 0.86);
}

.prose .legal-panel {
  padding: 1.5rem;
}

.prose h2 {
  margin: 1.65rem 0 0.65rem;
  font-size: 1.48rem;
}

.prose h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.12rem;
}

.prose p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.legal-aside {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.legal-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.legal-list a[aria-current="page"] {
  font-weight: 700;
  color: var(--text);
}

.button-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
}

.cookie-panel {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 95;
  width: min(980px, calc(100vw - 1.2rem));
  transform: translateX(-50%);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: none;
  gap: 1rem;
}

.cookie-panel.is-visible {
  display: grid;
}

.cookie-copy strong,
.cookie-modal-panel strong {
  display: block;
  margin-bottom: 0.38rem;
}

.cookie-copy p,
.cookie-modal-panel p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  background: rgba(8, 22, 34, 0.48);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-panel {
  width: min(620px, 100%);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.cookie-option:first-of-type {
  margin-top: 0.9rem;
}

.toggle {
  flex-shrink: 0;
  position: relative;
  width: 3.3rem;
  height: 1.95rem;
  border-radius: 999px;
  background: rgba(36, 52, 69, 0.18);
}

.toggle::after {
  content: "";
  position: absolute;
  width: 1.45rem;
  height: 1.45rem;
  left: 0.25rem;
  top: 0.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(36, 52, 69, 0.16);
}

.toggle.on {
  background: rgba(120, 192, 67, 0.75);
}

.toggle.on::after {
  left: 1.58rem;
}

.note-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.note-list li {
  list-style: none;
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(76, 168, 210, 0.45);
  outline-offset: 3px;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 1rem, 0) scale(1.05);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -0.5rem, 0);
  }
}

@keyframes dataFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 36rem;
  }
}

@keyframes heroDrift {
  0%,
  100% {
    background-position: center right;
  }
  50% {
    background-position: calc(100% - 1.5rem) center;
  }
}

@keyframes heroGlow {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.05) brightness(1.04);
  }
}

@keyframes blobShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0.5rem, -0.4rem, 0) scale(1.04);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.6rem);
    min-width: 18rem;
    padding: 0.8rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .header-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .story-grid,
  .cta-grid,
  .prose-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .hero-stage-simple {
    min-height: auto;
  }

  .hero-stage-visual {
    min-height: 24rem;
    background-position: center;
  }

  .hero-stage-visual-frame {
    width: 100%;
    height: 100%;
  }

  .hero-summary,
  .hero-brand-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .contact-grid,
  .legal-grid,
  .footer-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .brand-anchor img {
    width: 150px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-stage {
    min-height: 30rem;
  }

  .hero-stage-simple {
    min-height: 30rem;
  }

  .hero-stage-visual {
    min-height: 20rem;
  }

  .hero-stage-visual-frame {
    width: 100%;
    height: 100%;
    padding: 0.8rem;
  }

  .hero-stage-image {
    transform: none;
  }

  .stage-photo {
    width: calc(100% - 2rem);
    right: 1rem;
  }

  .stage-photo-simple {
    width: 100%;
    right: auto;
  }

  .floating-card.brand-b {
    left: 1rem;
    top: auto;
    bottom: 6.6rem;
  }

  .dual-grid,
  .service-grid,
  .contact-grid,
  .legal-grid,
  .footer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cookie-panel {
    padding: 1rem;
  }

  .footer-inline-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .subfooter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body::before,
  body::after {
    display: none;
  }
}
