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

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

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

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

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

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

:root {
  --site-gutter: 5vw;
  --brand-primary: #15c5da;
  --brand-primary-dark: #10adc0;
  --brand-secondary: #9dbf21;
  --brand-secondary-dark: #86a419;
  --brand-success: #22c55e;
  --brand-warning: #f59e0b;
  --brand-danger: #ef4444;
  --foreground: #0f172a;
  --muted-foreground: #64748b;
  --background-soft: #f5f7fb;
  --background-card: #ffffff;
  --border: #e5e7eb;
  --gradient-hero: linear-gradient(135deg, #15c5da 0%, #9dbf21 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  --shadow-light: 0 1px 2px rgba(21, 197, 218, 0.1);
  --shadow-medium: 0 4px 20px rgba(21, 197, 218, 0.1);
  --shadow-strong: 0 8px 35px rgba(21, 197, 218, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--foreground);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: var(--site-gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-light);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

@media (min-width: 768px) {
  .site-header__inner {
    min-height: 80px;
  }
}

.site-logo img {
  height: 32px;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 40px;
  }
}

.site-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-actions {
    display: flex;
  }
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 88vw);
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  z-index: 10000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 49;
  cursor: pointer;
}

.mobile-menu-backdrop[hidden] {
  display: none;
}

.mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-panel__spacer {
  flex: 1;
}

.mobile-panel__footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: var(--shadow-light);
}

.button--primary:hover {
  background: var(--brand-primary-dark);
  box-shadow: var(--shadow-medium);
}

.button--white {
  background: #ffffff;
  color: var(--brand-primary);
  box-shadow: var(--shadow-light);
}

.button--white:hover {
  background: rgba(255, 255, 255, 0.92);
}

.button--outline {
  background: transparent;
  color: var(--foreground);
  border-color: rgba(15, 23, 42, 0.14);
}

.button--outline:hover {
  border-color: rgba(15, 23, 42, 0.24);
}

.button--outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button--full {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 5rem 0;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.hero-copy {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-copy {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.heading-hero {
  margin: 0 0 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: -0.025em;
}

.heading-section {
  margin: 0 0 1.25rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.25rem;
  letter-spacing: -0.025em;
}

.heading-card {
  margin: 0 0 0.75rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.font-display {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
}

@media (min-width: 768px) {
  .heading-hero {
    font-size: 3rem;
    line-height: 1;
  }

  .heading-section {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .heading-card {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  .heading-hero {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.text-muted {
  color: var(--muted-foreground);
}

.highlight-primary {
  color: var(--brand-primary);
}

.highlight-secondary {
  color: var(--brand-secondary);
}

.highlight-success {
  color: var(--brand-success);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-proof-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-preview-shell {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
}

@media (min-width: 1024px) {
  .hero-preview-shell {
    width: 100%;
    justify-self: end;
  }
}

.hero-dashboard-card,
.hero-mini-card {
  background: #ffffff;
  color: var(--foreground);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-medium);
}

.hero-dashboard-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-dashboard-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-dashboard-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--brand-secondary), #b7d73c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.hero-dashboard-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-success);
  line-height: 1.1;
}

.hero-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.hero-dashboard-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.1;
}

.hero-mini-card {
  padding: 1rem;
}

.hero-mini-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.whatsapp-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.section {
  padding: 5rem 0;
}

.section--muted {
  background: rgba(238, 246, 247, 0.45);
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.card-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.problem-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.problem-card__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problem-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(239, 68, 68, 0.12);
  color: var(--brand-danger);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cta-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.feature-card {
  position: relative;
}

.feature-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list__dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-list__dot::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brand-success);
}

.highlight-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .highlight-card {
    padding: 3rem;
  }
}

.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.soft-panel {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.mini-panel {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-light);
}

.mini-panel + .mini-panel {
  margin-top: 1rem;
}

.section-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .section-actions {
    flex-direction: row;
  }
}

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

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.metric-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.metric-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.metric-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.case-stack {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.case-card {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .case-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }
}

.case-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--gradient-hero);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.case-results strong {
  display: block;
  font-size: 1.35rem;
}

.stars {
  display: inline-flex;
  gap: 0.2rem;
  color: var(--brand-warning);
}

.stars i,
.stars svg {
  width: 1rem;
  height: 1rem;
}

.stars svg {
  fill: currentColor;
  stroke: currentColor;
}

.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(100, 116, 139, 0.3);
  margin-bottom: 0.5rem;
}

.gradient-banner {
  background: var(--gradient-hero);
  color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .gradient-banner {
    padding: 3rem;
  }
}

.page-main .gradient-banner {
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.page-main .gradient-banner p {
  font-size: 1.125rem !important;
  line-height: 1.75rem;
}

.page-main .section-actions {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
}

.blog-eyebrow,
.blog-category,
.article-category {
  margin: 0 0 0.5rem;
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.blog-category,
.article-category {
  color: var(--brand-secondary);
}

.blog-card-text {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.blog-featured-card {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-medium);
  padding: 2rem;
}

@media (min-width: 900px) {
  .blog-featured-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
  }
}

.blog-featured-content {
  display: grid;
  gap: 1.5rem;
}

.blog-featured-content .heading-section {
  margin: 0;
}

.blog-featured-visual {
  display: grid;
  gap: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(21, 197, 218, 0.12), rgba(157, 191, 33, 0.14));
  padding: 1.5rem;
}

.blog-visual-card,
.blog-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-light);
}

.blog-visual-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
}

.blog-visual-card--primary {
  color: #ffffff;
  background: var(--gradient-hero);
  border-color: transparent;
}

.blog-visual-card svg {
  width: 1.5rem;
  height: 1.5rem;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.blog-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 197, 218, 0.12);
  color: var(--brand-primary);
}

.blog-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.blog-card-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.blog-card-title a:hover {
  color: var(--brand-primary);
}

.blog-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.blog-meta span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta svg,
.article-meta svg {
  width: 1rem;
  height: 1rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
  font-weight: 600;
}

.article-back:hover {
  color: #ffffff;
}

.article-back svg {
  width: 1rem;
  height: 1rem;
}

.article-hero .article-meta {
  color: rgba(255, 255, 255, 0.78);
}

.article-page article > .section {
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .article-page article > .section {
    padding-top: 6rem;
  }
}

.article-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  }
}

.article-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .article-sidebar {
    display: block;
    position: sticky;
    top: 7rem;
  }
}

.article-sidebar-card {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-light);
  padding: 1.25rem;
}

.article-sidebar-card a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.article-sidebar-card a:hover {
  color: var(--brand-primary);
}

.article-content {
  max-width: 48rem;
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
}

.article-content p {
  margin: 0 0 1.25rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75rem;
}

.article-lead {
  color: var(--foreground) !important;
  font-size: 1.125rem !important;
  line-height: 1.85rem !important;
}

.article-callout,
.article-cta {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(238, 246, 247, 0.62);
  box-shadow: var(--shadow-light);
  padding: 1.5rem;
}

.article-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.article-callout > svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.article-callout p,
.article-cta p {
  margin: 0.5rem 0 0;
}

.article-checklist {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--foreground);
}

.article-checklist svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.article-cta {
  margin-top: 2.5rem;
  background: var(--gradient-card);
}

.article-cta h2 {
  margin-top: 0;
}

.site-footer-main {
  background: var(--brand-primary);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.footer-links,
.footer-addresses {
  display: grid;
  gap: 0.75rem;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-strip {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-strip__inner {
    flex-direction: row;
    text-align: left;
  }
}

.footer-strip__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #ffffff;
  flex-shrink: 0;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-main {
  display: grid;
  gap: 6rem;
  padding-bottom: 6rem;
}

.page-main .section {
  padding: 0;
}

.page-main .card-grid {
  gap: 1.5rem;
}

.page-main .card {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
}

.page-main .card:hover {
  transform: none;
  box-shadow: var(--shadow-light);
}

.page-main .heading-section {
  margin: 0;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.page-main .card > .heading-card,
.page-main .flow-card .heading-card {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.page-main .split-panel .heading-card {
  font-size: 1.5rem;
  line-height: 2rem;
}

.page-main .card > .text-muted,
.page-main .flow-card .text-muted,
.page-main .role-list__item,
.page-main .faq-item .text-muted,
.page-main .audience-item {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.page-main .container > div[style*="max-width"] > .text-muted {
  margin: 1rem 0 0;
  font-size: 1.125rem !important;
  line-height: 1.75rem;
}

.page-main p[style*="uppercase"] {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.025em !important;
}

.page-main > section:first-child {
  margin-top: 0;
}

.hero-simple {
  background: var(--gradient-hero);
  color: #ffffff;
}

.hero-simple .heading-hero {
  margin: 1.5rem 0;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-simple__inner {
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .hero-simple .heading-hero {
    font-size: 3rem;
    line-height: 1.25;
  }
}

@media (min-width: 1024px) {
  .hero-simple__inner {
    padding-block: 7rem;
  }
}

.icon-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 197, 218, 0.12);
  color: var(--brand-primary);
}

.icon-badge svg,
.audience-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

.flow-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.flow-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(238, 246, 247, 0.6);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
}

@media (min-width: 768px) {
  .flow-card {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.flow-index {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(21, 197, 218, 0.12);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.split-panel {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .split-panel {
    padding: 2rem;
  }
}

.role-columns {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .role-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.role-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.role-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.role-list__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.benefit-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefit-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
}

.benefit-title {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.audience-panel {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(238, 246, 247, 0.6);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

@media (min-width: 768px) {
  .audience-panel {
    padding: 2rem;
  }
}

.audience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-plus {
  color: var(--brand-primary);
  transition: transform 0.2s ease;
}

details[open] .faq-plus {
  transform: rotate(45deg);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: var(--shadow-strong);
}

.modal__header {
  padding: 2rem 2rem 1rem;
}

.modal__title {
  margin: 0;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.modal__description {
  margin: 0.25rem 0 0;
  color: var(--muted-foreground);
}

.modal__body {
  padding: 1rem 2rem 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

.form-field label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.required-mark {
  color: var(--brand-danger);
}

input,
select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(238, 246, 247, 0.45);
  padding: 0.85rem 1rem;
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(21, 197, 218, 0.16);
}

.input-error {
  border-color: var(--brand-danger) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14) !important;
}

.success-panel {
  padding: 4rem 2rem;
  text-align: center;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #34d399, #16a34a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.success-badge__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(21, 197, 218, 0.12);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none !important;
}

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