:root {
  --background: #f7faf8;
  --foreground: #123025;
  --card: #ffffff;
  --card-foreground: #123025;
  --primary: #2c9766;
  --primary-light: #49b37f;
  --primary-dark: #1f7a50;
  --secondary: #ecf3ee;
  --secondary-foreground: #246848;
  --muted: #e8efea;
  --muted-foreground: #6b7f75;
  --accent: #f89a20;
  --accent-light: #ffb14b;
  --accent-foreground: #ffffff;
  --border: #d8e4dd;
  --gradient-primary: linear-gradient(135deg, #2c9766, #49b37f);
  --gradient-hero: linear-gradient(135deg, #2c9766 0%, #2f9e7d 48%, #49b37f 100%);
  --gradient-accent: linear-gradient(135deg, #f89a20, #ffad43);
  --shadow-primary: 0 10px 40px -10px rgba(44, 151, 102, 0.32);
  --shadow-card: 0 4px 24px -4px rgba(18, 48, 37, 0.08);
  --shadow-card-hover: 0 8px 32px -4px rgba(18, 48, 37, 0.12);
  --radius: 18px;
  --header-height: 64px;
  --container: 1240px;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(247, 250, 248, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 228, 221, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2rem;
}

.brand-logo-full {
  height: 2.2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--gradient-primary);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 2rem;
}

.desktop-nav a,
.mobile-menu a:not(.button),
.footer-links a {
  position: relative;
  color: var(--muted-foreground);
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.desktop-nav a:hover,
.mobile-menu a:not(.button):hover,
.footer-links a:hover {
  color: var(--foreground);
}

.desktop-nav a {
  font-size: 0.92rem;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

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

.desktop-actions {
  gap: 0.75rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px -18px rgba(18, 48, 37, 0.25);
}

body.homepage .language-switcher {
  /* Hidden for the Portuguese-only launch; the switcher logic stays active for future locales. */
  display: none;
}

.language-switcher button {
  min-height: 2.15rem;
  padding: 0 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.language-switcher button:hover {
  color: var(--foreground);
  transform: translateY(-1px);
}

.language-switcher button.is-active,
.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.85rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-sm {
  min-height: 2.25rem;
  padding: 0 0.95rem;
  font-size: 0.92rem;
}

.button-lg {
  min-height: 3rem;
  padding: 0 1.4rem;
  font-size: 1rem;
}

.button-block {
  width: 100%;
}

.button-primary {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}

.button-primary:hover {
  box-shadow: 0 14px 36px -12px rgba(44, 151, 102, 0.45);
}

.button-accent {
  color: #fff;
  background: var(--gradient-accent);
  box-shadow: 0 10px 30px -12px rgba(248, 154, 32, 0.48);
}

.button-accent:hover {
  box-shadow: 0 14px 34px -12px rgba(248, 154, 32, 0.58);
}

.button-ghost {
  color: var(--foreground);
  background: transparent;
}

.button-ghost:hover {
  background: rgba(248, 154, 32, 0.12);
  color: #8c560e;
}

.button-outline {
  color: var(--foreground);
  background: var(--card);
  border: 1px solid var(--border);
}

.button-outline:hover {
  background: rgba(248, 154, 32, 0.1);
  border-color: rgba(248, 154, 32, 0.35);
  color: #8c560e;
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  color: var(--foreground);
  background: transparent;
  border: 0;
}

.menu-toggle .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.icon-close {
  display: none;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 240ms ease,
    border-color 240ms ease;
  border-top: 1px solid transparent;
  background: rgba(247, 250, 248, 0.96);
}

.mobile-menu-inner {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 1.25rem;
}

.mobile-menu-inner > a {
  padding: 0.7rem 0.15rem;
  font-size: 0.95rem;
}

.mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.mobile-actions .language-switcher {
  grid-column: 1 / -1;
  justify-self: start;
}

body.menu-open .mobile-menu {
  max-height: 22rem;
  border-top-color: rgba(216, 228, 221, 0.8);
}

body.menu-open .icon-menu {
  display: none;
}

body.menu-open .icon-close {
  display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 3.5rem);
  color: #fff;
}

.hero-background,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-background {
  background: var(--gradient-hero);
}

.hero-glow {
  opacity: 0.16;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.45) 0, transparent 46%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
  padding-bottom: 6rem;
}

.hero-copy h1,
.section-heading h2,
.offer-card h3,
.pricing-card h3,
.cta-content h2,
.site-footer h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 1.01;
}

.hero-copy h1 span {
  display: block;
}

.hero-accent {
  color: var(--accent-light);
}

.hero-description {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-badge,
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.hero-badge {
  margin-bottom: 1.75rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(248, 154, 32, 0.12);
  animation: pulse 2.1s infinite;
}

.download-group {
  margin-top: 2rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.9);
}

.section-kicker-primary {
  color: var(--primary);
}

#profissionais .section-kicker {
  display: block;
  width: 100%;
  text-align: center;
}

#faq .section-kicker-primary {
  color: var(--accent);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-buttons-center {
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 12.5rem;
  padding: 0.82rem 1.1rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px) scale(1.01);
  background: #000;
}

.store-button svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
  stroke: none;
  flex: 0 0 auto;
}

.store-button span {
  display: grid;
  gap: 0.18rem;
}

.store-button small {
  font-size: 0.63rem;
  line-height: 1;
}

.store-button strong {
  font-size: 1rem;
  line-height: 1.1;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.hero-stats div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  padding-right: 1.8rem;
  text-align: center;
}

.hero-stats div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  right: 0;
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
}

.hero-stats span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.64);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-carousel {
  position: relative;
  width: min(100%, 23rem);
  height: min(30rem, 72vw);
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: -1rem;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(48px);
  border-radius: 2rem;
  pointer-events: none;
}

.hero-carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.4);
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-carousel-slide {
  margin: 0;
  flex: 0 0 100%;
  height: 100%;
}

.hero-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
}

.hero-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: -1.05rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--foreground);
  box-shadow: 0 10px 26px -14px rgba(18, 48, 37, 0.48);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.hero-carousel-control:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}

.hero-carousel-control:focus-visible {
  outline: 3px solid rgba(44, 151, 102, 0.25);
  outline-offset: 2px;
}

.hero-carousel-control span {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-carousel-prev {
  left: 0.35rem;
}

.hero-carousel-next {
  right: 0.35rem;
}

.hero-wave {
  position: absolute;
  inset: auto 0 0;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 6rem 0;
}

.section-light {
  background: var(--background);
}

.section-muted {
  background: rgba(236, 243, 238, 0.65);
}

.section-faq {
  background: rgba(232, 239, 234, 0.45);
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-heading-left {
  max-width: none;
  margin: 0 0 2.5rem;
  text-align: left;
}

.section-heading h2,
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-heading p,
.cta-content p,
.footer-branding p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

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

.feature-card,
.offer-card,
.pricing-card,
.faq-item {
  background: var(--card);
  border: 1px solid rgba(216, 228, 221, 0.65);
  box-shadow: var(--shadow-card);
}

.feature-card {
  padding: 1.6rem;
  border-radius: 1.2rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(73, 179, 127, 0.25);
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.08rem;
}

.feature-card p,
.step-card p,
.pricing-subtitle,
.pricing-note,
.pricing-list,
.faq-content p,
.offer-card li,
.profession-item {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  color: var(--primary);
  background: var(--secondary);
  transition:
    color 220ms ease,
    background 220ms ease;
}

.feature-card:hover .feature-icon {
  color: #fff;
  background: var(--gradient-primary);
}

.feature-icon svg,
.step-icon svg,
.social-links svg {
  width: 1.45rem;
  height: 1.45rem;
}

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

.steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(216, 228, 221, 0.9);
}

.step-card {
  position: relative;
  text-align: center;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}

.step-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.step-card p {
  max-width: 14rem;
  margin-inline: auto;
}

.professionals-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
}

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

.profession-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(236, 243, 238, 0.65);
  border: 1px solid rgba(216, 228, 221, 0.65);
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.profession-item:hover {
  transform: translateY(-2px);
  background: rgba(236, 243, 238, 0.9);
  border-color: rgba(73, 179, 127, 0.22);
  box-shadow: 0 10px 28px -18px rgba(18, 48, 37, 0.28);
}

.profession-mark {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--gradient-primary);
}

.profession-mark::before,
.profession-mark::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.profession-mark::before {
  top: 0.45rem;
  left: 0.72rem;
  width: 0.55rem;
  height: 0.55rem;
}

.profession-mark::after {
  left: 0.55rem;
  bottom: 0.42rem;
  width: 0.9rem;
  height: 0.5rem;
}

.offer-card {
  padding: 2.2rem;
  border-radius: 1.4rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(73, 179, 127, 0.2);
}

.offer-card h3 {
  margin-bottom: 1.65rem;
  font-size: 1.35rem;
}

.offer-card ul,
.pricing-list,
.footer-links {
  list-style: none;
  padding: 0;
}

.offer-card ul {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.offer-card li {
  position: relative;
  padding-left: 1.6rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(248, 154, 32, 0.16);
  box-shadow: inset 0 0 0 4px var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(73, 179, 127, 0.22);
}

.pricing-card-featured {
  border: 2px solid rgba(44, 151, 102, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -0.85rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-primary);
}

.pricing-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.pricing-subtitle {
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  margin-bottom: 0.25rem;
}

.price-line small,
.price-line span {
  color: var(--muted-foreground);
}

.price-line strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-line-contact strong {
  font-size: 2.65rem;
}

.pricing-note {
  margin-bottom: 1.7rem;
  font-size: 0.92rem;
}

.pricing-card-featured .pricing-note {
  color: var(--accent);
  font-weight: 600;
}

.pricing-list {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.9rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.45rem;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.25rem;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.faq-shell {
  max-width: 60rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 1.1rem;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -18px rgba(18, 48, 37, 0.22);
  border-color: rgba(73, 179, 127, 0.22);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  color: var(--foreground);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 600;
  transition: background-color 180ms ease;
}

.faq-trigger:hover {
  background: rgba(236, 243, 238, 0.55);
}

.faq-trigger svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-content p {
  padding: 0 1.5rem 1.45rem;
}

.faq-item.is-open {
  box-shadow: 0 12px 28px -16px rgba(18, 48, 37, 0.2);
}

.faq-item.is-open .faq-trigger svg {
  transform: rotate(180deg);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 1.5rem;
  border-radius: 2rem;
  background: var(--gradient-hero);
  text-align: center;
  color: #fff;
}

.cta-glow {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.45) 0, transparent 48%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 3rem 0;
  background: var(--foreground);
  color: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.brand-footer .brand-name {
  color: var(--background);
}

.brand-footer .brand-logo {
  height: 2.1rem;
  filter: brightness(0) invert(1);
}

.brand-footer .brand-logo-full {
  height: 2.35rem;
  filter: none;
}

.footer-branding p,
.footer-links a,
.footer-bottom p,
.social-links a {
  color: rgba(247, 250, 248, 0.64);
}

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

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 250, 248, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  transition: color 180ms ease;
}

.social-links a:hover {
  color: var(--background);
}

.legal-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(9, 24, 18, 0.72);
  backdrop-filter: blur(4px);
}

.legal-dialog-overlay[hidden] {
  display: none !important;
}

.legal-dialog {
  width: min(92vw, 64rem);
  max-height: min(92vh, 48rem);
  padding: 0;
  border: 1px solid rgba(216, 228, 221, 0.92);
  border-radius: 1.35rem;
  background: var(--card);
  color: var(--foreground);
  box-shadow: 0 28px 80px rgba(7, 21, 15, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.modal-open {
  overflow: hidden;
}

.legal-dialog-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.legal-dialog-header h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.legal-dialog-updated {
  margin: 0.5rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.legal-dialog-body {
  flex: 1;
  overflow: auto;
  padding: 1.25rem 1.5rem 0;
}

.legal-dialog-text {
  white-space: pre-wrap;
  line-height: 1.75;
  font-size: 0.95rem;
  color: var(--foreground);
}

.legal-dialog-actions {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(248, 154, 32, 0.24);
  outline-offset: 3px;
}

.inner-page {
  padding-top: var(--header-height);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(248, 154, 32, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(236, 243, 238, 0.9), rgba(247, 250, 248, 0.98));
}

.page-hero-shell {
  max-width: 46rem;
}

.page-hero h1,
.contact-info-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.01;
}

.page-hero p,
.contact-info-card p,
.contact-note {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.contact-section {
  padding-top: 3.25rem;
}

.contact-card,
.contact-info-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(216, 228, 221, 0.65);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.contact-card {
  padding: 2rem;
}

.contact-heading {
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--foreground);
}

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

.form-field textarea {
  min-height: 10rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
  color: var(--foreground);
  resize: vertical;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field textarea:focus {
  outline: none;
  border-color: rgba(44, 151, 102, 0.36);
  box-shadow: 0 0 0 4px rgba(44, 151, 102, 0.12);
}

.form-actions {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.contact-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-status.is-success {
  border-color: rgba(44, 151, 102, 0.24);
  background: rgba(44, 151, 102, 0.1);
  color: var(--secondary-foreground);
}

.contact-status.is-loading {
  border-color: rgba(107, 127, 117, 0.2);
  background: rgba(232, 239, 234, 0.7);
  color: var(--muted-foreground);
}

.contact-status.is-error {
  border-color: rgba(248, 154, 32, 0.28);
  background: rgba(248, 154, 32, 0.12);
  color: #8a4a00;
}

.contact-note a,
.contact-link span {
  color: var(--primary);
}

.contact-aside {
  display: grid;
  gap: 1.25rem;
}

.contact-info-card {
  padding: 1.75rem;
}

.contact-info-card-muted {
  background: rgba(236, 243, 238, 0.65);
}

.contact-info-list,
.contact-checklist {
  display: grid;
  gap: 0.9rem;
}

.contact-info-list {
  margin-top: 1.5rem;
}

.contact-link {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(216, 228, 221, 0.75);
  background: rgba(247, 250, 248, 0.95);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -18px rgba(18, 48, 37, 0.28);
  border-color: rgba(73, 179, 127, 0.24);
}

.contact-link strong {
  color: var(--foreground);
}

.contact-checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}

.contact-checklist li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.25rem;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.fade-up {
  animation: fadeUp 680ms ease forwards;
}

.slide-in-right {
  animation: slideInRight 720ms ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(248, 154, 32, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(248, 154, 32, 0);
  }
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps::before {
    display: none;
  }

  .professionals-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: flex;
    margin-top: 0.5rem;
  }

  .hero-carousel {
    width: min(100%, 21rem);
    height: min(27rem, 64vw);
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .section {
    padding: 5rem 0;
  }

  .contact-section {
    padding-top: 2.5rem;
  }

  .pricing-grid,
  .footer-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .hero-grid {
    gap: 2.5rem;
    padding-bottom: 5rem;
  }

  .store-buttons,
  .mobile-actions,
  .profession-list,
  .feature-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .hero-carousel {
    width: min(100%, 19rem);
    height: min(24rem, 58vw);
  }

  .hero-stats {
    gap: 1rem 1.4rem;
  }

  .hero-stats div {
    padding-right: 1.2rem;
  }

  .hero-stats div:not(:last-child)::after {
    right: -0.1rem;
  }

  .cta-panel {
    padding: 3rem 1.2rem;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .hero-stats div {
    min-width: calc(50% - 0.8rem);
  }

  .hero-stats div:nth-child(2)::after {
    display: none;
  }

  .pricing-card,
  .offer-card,
  .contact-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .faq-trigger {
    padding: 1.15rem 1.2rem;
  }

  .faq-content p {
    padding: 0 1.2rem 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
