:root {
  --bg: #f4efe6;
  --bg-alt: #fff8f0;
  --surface: #fffdf8;
  --accent: #e66a3a; /* warm terracotta */
  --accent-soft: rgba(230, 106, 58, 0.12);
  --accent-gold: #f1b56f; /* warm sand */
  --accent-gold-soft: #f9e6cf; /* soft peach */
  --accent-amber-deep: #a8431f; /* deep rust */
  --accent-cool: #2f8b8c; /* muted teal */
  --accent-cool-soft: rgba(47, 139, 140, 0.12);
  --text: #0f172a;
  --muted: #4b5563;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 38px rgba(15, 23, 42, 0.14);
  --max-width: 1040px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 12% 8%, rgba(241, 181, 111, 0.22), transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(47, 139, 140, 0.18), transparent 42%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 58%, #eef2f7 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(244, 239, 230, 0.94));
  border-bottom: 1px solid rgba(230, 106, 58, 0.18);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  gap: 1.25rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: radial-gradient(
    circle at 0 0,
    #fde9d3,
    var(--accent) 55%,
    var(--accent-amber-deep) 100%
  );
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.2), 0 6px 14px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
  background-color: rgba(47, 139, 140, 0.15);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
}

.nav-cta a {
  text-decoration: none;
}

.nav-cta .btn-primary,
.nav-cta .btn-buzzer {
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(230, 106, 58, 0.75);
  background: linear-gradient(135deg, var(--accent), #f08957 45%, var(--accent-gold));
  color: #1b1b1b;
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  gap: 0.3rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
  box-shadow: 0 14px 28px rgba(230, 106, 58, 0.32);
}

.btn-primary span {
  font-size: 0.8rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 53, 26, 0.9);
  background: linear-gradient(135deg, var(--accent-amber-deep), var(--accent), #f3b176);
  box-shadow: 0 18px 34px rgba(230, 106, 58, 0.4);
}

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.7rem 1.1rem 2.8rem;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: 2.3rem;
  padding-top: 2.4rem;
  padding-bottom: 3.1rem;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.22rem 0.65rem;
  width: fit-content;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.eyebrow-pill {
  width: 6px;
  height: 6px;
  display: inline-block;
  line-height: 1;
  border-radius: 999px;
  background: radial-gradient(
    circle at 0 0,
    var(--accent-gold-soft),
    var(--accent-gold) 55%,
    var(--accent) 100%
  );
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.title {
  font-size: clamp(2.2rem, 5.6vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.title span {
  color: var(--accent);
}

.subtitle {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.96rem;
}

.subtitle-highlight {
  color: #0f172a;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 62%, rgba(243, 176, 102, 0.5) 62%);
  border-radius: 4px;
}

.intro-list {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  gap: 0.6rem;
}

.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.intro-dot {
  width: 14px;
  height: 14px;
  aspect-ratio: 1 / 1;
  min-width: 14px;
  min-height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.intro-dot-inner {
  width: 6px;
  height: 6px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  line-height: 1;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.hint-text {
  font-size: 0.78rem;
  color: var(--muted);
}

.hint-strong {
  color: #1f2937;
}

.intro-highlight {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(247, 236, 221, 0.9));
  border: 1px solid rgba(230, 106, 58, 0.2);
  box-shadow: var(--shadow-soft);
  display: inline;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.highlight-label {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1f2937;
  margin-bottom: 5px;
}

.highlight-visual {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  height: 94%;
  min-height: 400px;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/20260124_1558_Image.png");
  background-size: cover;
  background-position: center;
}

.highlight-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.45));
}

.highlight-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.6rem;
  height: 100%;
}

.highlight-item {
  padding: 1.6rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.highlight-item strong {
  display: block;
  font-size: 0.8rem;
  color: #0f172a;
}

.highlight-item span {
  font-size: 0.7rem;
  color: var(--muted);
}u

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2.6rem;
}

.section-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.section-title {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-description {
  font-size: 0.9rem;
  color: var(--muted);
}

.section-alt-bg {
  background: radial-gradient(circle at 8% 20%, rgba(47, 139, 140, 0.1), transparent 55%),
    linear-gradient(180deg, #fff9f1 0%, #f3ece2 100%);
  border-top: 1px solid rgba(230, 106, 58, 0.16);
  border-bottom: 1px solid rgba(230, 106, 58, 0.16);
}

.section-alt-bg-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.6rem 1.1rem 2.9rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 1.9rem;
}

.product-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 1.4rem;
}

.product-cta .btn-primary {
  margin: 0 auto;
  text-align: center;
}

.product-points {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr);
}

.product-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 106, 58, 0.18);
  background: linear-gradient(135deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.98));
  padding: 1rem 1rem 1.05rem;
  box-shadow: var(--shadow-soft);
}

.product-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--muted);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.pill {
  font-size: 0.72rem;
  padding: 0.26rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(230, 106, 58, 0.22);
  color: #3f4a5a;
  background-color: rgba(255, 248, 240, 0.7);
}

.product-demo {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, var(--accent-gold-soft), #ffffff);
  padding: 0.8rem 0.85rem 0.85rem;
  box-shadow: var(--shadow-soft);
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.demo-dots {
  display: flex;
  gap: 0.25rem;
}

.demo-dot {
  width: 7px;
  height: 7px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  line-height: 1;
  border-radius: 999px;
  background-color: rgba(148, 163, 184, 0.9);
  flex: 0 0 auto;
}

.demo-dot:nth-child(1) {
  background-color: var(--accent);
}

.demo-dot:nth-child(2) {
  background-color: var(--accent-gold);
}

.demo-dot:nth-child(3) {
  background-color: var(--accent-amber-deep);
}

.demo-title {
  font-size: 0.78rem;
  color: var(--muted);
}

.demo-body {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 0.8rem;
}

.demo-list {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.demo-list strong {
  color: #111827;
}

.demo-sidebar {
  border-radius: 12px;
  background: radial-gradient(circle at top, var(--accent-gold-soft), #ffffff);
  padding: 0.7rem 0.75rem 0.8rem;
  font-size: 0.75rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

.demo-metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #475569;
}

.demo-metric-value {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.demo-metric-note {
  font-size: 0.72rem;
}

.demo-carousel {
  margin-top: 0.9rem;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  border: 1px dashed rgba(230, 106, 58, 0.35);
  background-color: var(--surface);
  padding: 0.7rem 0.8rem 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.demo-carousel-frame {
  border-radius: 10px;
  overflow: hidden;
  background-color: #e5e7eb;
}

.demo-carousel-image {
  display: block;
  width: 100%;
  height: auto;
}

.demo-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.demo-carousel-arrow {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: #ffffff;
  color: #64748b;
  font-size: 0.8rem;
  padding: 0.2rem 0.45rem;
}

.demo-carousel-arrow:disabled {
  opacity: 0.5;
}

.demo-carousel-dots {
  display: flex;
  gap: 0.3rem;
}

.demo-carousel-dot {
  width: 7px;
  height: 7px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  line-height: 1;
  border-radius: 999px;
  background-color: rgba(148, 163, 184, 0.6);
  flex: 0 0 auto;
}

.demo-carousel-dot--active {
  background-color: var(--accent);
}

.demo-carousel-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 1.7rem;
}

.btn-buzzer {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(185, 28, 28, 0.8);
  background: radial-gradient(circle at top left, #f87171, #dc2626 55%, #b91c1c);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease, background 0.12s ease;
  animation: buzzerPulse 3.2s ease-in-out infinite;
}

.btn-buzzer::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 12%;
  right: 12%;
  height: 40%;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
}

.btn-buzzer:hover {
  transform: translateY(-1px);
  border-color: rgba(153, 27, 27, 0.9);
  background: radial-gradient(circle at top left, #fca5a5, #ef4444 55%, #b91c1c);
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.45),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25);
}

.btn-buzzer:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.35),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes buzzerPulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(220, 38, 38, 0.35),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 16px 32px rgba(220, 38, 38, 0.48),
      inset 0 -2px 0 rgba(0, 0, 0, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-buzzer {
    animation: none;
  }
}

.pricing-wrapper {
  display: grid;
  gap: 0.3rem;
}

.pricing-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.pricing-toggle-label {
  font-size: 0.78rem;
  color: var(--muted);
}

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

.pricing-toggle-option {
  border-radius: 0;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: #ffffff;
  color: #0f172a;
  font-size: 0.78rem;
  padding: 0.28rem 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

.pricing-toggle-option:first-of-type {
  border-top-left-radius: var(--radius-pill);
  border-bottom-left-radius: var(--radius-pill);
}

.pricing-toggle-option:last-of-type {
  border-top-right-radius: var(--radius-pill);
  border-bottom-right-radius: var(--radius-pill);
}

.pricing-toggle-option + .pricing-toggle-option {
  margin-left: -1px; /* collapse inner borders for group look */
}

.pricing-toggle-option.is-active {
  border-color: rgba(192, 106, 50, 0.9);
  background: radial-gradient(
    circle at top left,
    rgba(246, 227, 207, 0.7),
    rgba(192, 106, 50, 0.08)
  );
}

.pricing-toggle-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  table-layout: fixed;
}

.pricing-table thead th {
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  padding: 0.8rem 0.7rem;
  background: radial-gradient(
    circle at top left,
    rgba(47, 139, 140, 0.12),
    rgba(230, 106, 58, 0.08)
  );
  border-bottom: 1px solid rgba(230, 106, 58, 0.2);
}

.pricing-table th,
.pricing-table td {
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.65rem 0.7rem;
  font-size: 0.8rem;
  width: 33.3333%;
}

.pricing-feature-col {
  text-align: left;
  width: 26%;
  color: var(--muted);
}

.pricing-feature-label {
  text-align: left;
  font-weight: 500;
  color: #111827;
}

.pricing-table tbody td {
  text-align: left;
  color: var(--muted);
}

.pricing-plan-name {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  font-family: var(--font-display);
}

.pricing-plan-price {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-align: center;
}

.pricing-plan-unit {
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-plan-meta {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-row-prices td {
  text-align: center;
}

.pricing-table tbody tr.pricing-row-note td {
  text-align: center;
  font-weight: 650;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2937;
  border-top: 1px solid rgba(100, 116, 139, 0.25);
  border-bottom: 1px solid rgba(100, 116, 139, 0.25);
}

.pricing-table tbody tr.pricing-row-note td.pricing-note-standard {
  background-color: #fffbf7;
  color: #1f2937;
}

.pricing-table tbody tr.pricing-row-note td.pricing-note-premium {
  background-color: #fde7d2;
  color: #7c2d12;
}

.pricing-row-select td {
  text-align: center;
}

.pricing-row-features td {
  vertical-align: top;
}

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

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.pricing-feature-list li::before {
  content: "✔";
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.05rem;
}

.pricing-feature-lead {
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pricing-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(192, 106, 50, 0.7);
  background: linear-gradient(to right, var(--accent-gold), var(--accent));
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin: 18px auto;
}

.pricing-select-btn:hover {
  border-color: rgba(143, 63, 31, 0.9);
  background: linear-gradient(to right, var(--accent), var(--accent-amber-deep));
}

.pricing-footnote {
  font-size: 0.76rem;
  color: var(--muted);
}

.pricing-footnote strong {
  color: #111827;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr);
  gap: 1.6rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 255, 255, 0.98));
  padding: 1.2rem 1.1rem 1.15rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.8rem;
}

.contact-copy {
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #0f172a;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

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

.field-group {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.field-label {
  color: #0f172a;
}

.field-label span {
  color: var(--muted);
  margin-left: 0.25rem;
  font-size: 0.74rem;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 11px;
  border: 1px solid rgba(230, 106, 58, 0.2);
  background-color: #ffffff;
  color: var(--text);
  font-size: 0.8rem;
  font-family: inherit;
  line-height: 1.5;
  outline: none;
}

.field-input:focus,
.field-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.5);
}

.field-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--muted);
}

.form-status {
  display: none;
  font-size: 0.75rem;
  color: #0f172a;
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  background-color: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.35);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #065f46;
  background-color: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}

.form-status.is-error {
  color: #7f1d1d;
  background-color: rgba(248, 113, 113, 0.15);
  border-color: rgba(185, 28, 28, 0.35);
}

.form-footer .btn-primary[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent-inner {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.cookie-consent-text strong {
  font-size: 0.88rem;
}

.cookie-consent-text p {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: #ffffff;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 139, 140, 0.55);
  background-color: rgba(47, 139, 140, 0.12);
}

@media (min-width: 640px) {
  .cookie-consent-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cookie-consent-actions {
    justify-content: flex-end;
  }
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background-color: #f9fafb;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.1rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.badge-soft {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-lg);
  font-size: 0.7rem;
  color: var(--muted);
  background-color: var(--accent-soft);
  border: 1px solid rgba(251, 191, 36, 0.4);
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.badge-dot {
  width: 6px;
  height: 6px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  line-height: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, var(--accent-gold), var(--accent));
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .section-intro {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  }

  .nav-cta {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  }

  .product-layout {
    grid-template-columns: minmax(0, 1.2fr);
  }

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

@media (max-width: 480px) {
  .nav-inner {
    padding-inline: 0.85rem;
  }

  .section,
  .section-alt-bg-inner {
    padding-inline: 0.9rem;
  }

  .intro-highlight {
    padding: 0.85rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 94%;
    min-height: 400px;
  }

  .demo-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }
}

/* Full-width divider between sections */
.section-divider {
  border-top: 1px solid rgba(230, 106, 58, 0.2);
  box-shadow: 0 1px 0 rgba(47, 139, 140, 0.12);
}
