:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #172133;
  --muted: #596277;
  --line: #dfe6f2;
  --primary: #111827;
  --gold: #f4b73f;
  --gold-2: #f8c660;
  --green: #188b61;
  --blue: #2457a7;
  --shadow: 0 10px 40px rgba(17, 33, 56, 0.12);
  --radius: 10px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: absolute;
  top: -80px;
  left: 12px;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  z-index: 2000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #d9e1ee;
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  flex-shrink: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1;
}

.brand-subtitle {
  color: rgba(23, 32, 51, 0.68);
  font-size: clamp(0.72rem, 0.8vw, 0.86rem);
  font-weight: 500;
  white-space: nowrap;
}

.brand-registered {
  display: inline-block;
  margin-left: 0.12rem;
  font-size: 0.74em;
  vertical-align: baseline;
  transform: translateY(-0.34em);
  line-height: 1;
}

.brand-text {
  display: block;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(1.12rem, 1.45vw, 1.55rem);
  color: #172033;
  white-space: nowrap;
}

.mobile-head-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-left: auto;
}

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

.nav-links > a {
  color: rgba(23, 32, 51, 0.88);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links > a:hover {
  color: #111827;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.68rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #111827;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.btn-outline {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-trial {
  white-space: nowrap;
  padding-inline: 1.25rem;
}

.nav-actions .btn {
  min-height: 42px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-actions .btn + .btn {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #111827;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.22s ease,
    width 0.3s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  width: 14px;
  top: calc(50% - 10px);
}

.menu-toggle span:nth-child(2) {
  top: 50%;
}

.menu-toggle span:nth-child(3) {
  width: 14px;
  top: calc(50% + 10px);
}

.menu-toggle.is-active span:nth-child(1) {
  width: 22px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(0.4);
}

.menu-toggle.is-active span:nth-child(3) {
  width: 22px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-note {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 14, 24, 0.44), rgba(10, 14, 24, 0.44)),
    url("./assets/headerbg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.2rem, 4vw, 3.8rem);
  grid-template-columns: 1.02fr 0.98fr;
  min-height: calc(100vh - 84px);
  align-items: stretch;
}

.hero-copy {
  color: #f6f8fc;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(2rem, 4vw, 3.2rem);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Montserrat", "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
}

.hero-copy p {
  font-family: "Poppins", "Outfit", sans-serif;
  color: #d5ddeb;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 62ch;
}

.hero-lead {
  margin: 1.35rem 0 0;
}

.hero-sub {
  margin: 1rem 0 0;
}

.hero-copy p.trial-highlight {
  margin: 1.35rem 0 0;
  color: var(--gold-2);
  font-size: 1.35rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.hero-copy small {
  display: inline-block;
  margin-top: 0.7rem;
  color: #f4c66e;
  font-family: "Poppins", "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
}

.hero-actions .btn,
.bottom-cta-btn {
  background: #ffffff;
  border: 1px solid #d7dfec;
  color: #454b56;
  border-radius: 4px;
  min-width: 188px;
  min-height: 54px;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-actions .btn::before,
.hero-actions .btn::after,
.bottom-cta-btn::before,
.bottom-cta-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.hero-actions .btn::before,
.bottom-cta-btn::before {
  top: 7px;
  left: 8px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero-actions .btn::after,
.bottom-cta-btn::after {
  right: 8px;
  bottom: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.hero-actions .btn:hover,
.bottom-cta-btn:hover {
  transform: translateY(-1px);
  border-color: #c7d3e7;
  box-shadow: 0 12px 24px rgba(10, 33, 73, 0.16);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 560px;
}

.hero-tv {
  width: min(100%, 760px);
  height: auto;
  max-height: 92%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 52px rgba(4, 14, 30, 0.32));
}

.section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.section h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section p {
  max-width: 75ch;
  color: #3a465f;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.about {
  background: #f1f1f3;
}

.about .container {
  width: min(1360px, calc(100% - 2rem));
}

.about h2 {
  text-align: center;
  margin-bottom: 2.2rem;
  color: #232933;
}

.about p {
  margin: 0;
  max-width: 1460px;
  color: #2d333c;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.52;
}

.about .about-line {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-weight: 700;
}

.about .about-note {
  margin-top: 1.7rem;
}

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

.card {
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 5px;
  padding: 2.1rem 1.7rem 2rem;
  min-height: 258px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 9px;
  background: #d6cfbf;
  color: #1f1d1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 900;
}

.card h3 {
  margin: 1.5rem 0 0;
  color: #2a2f38;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.14rem, 1.35vw, 1.45rem);
}

.card p {
  margin-top: 0.85rem;
  max-width: 30ch;
  color: #5c626f;
  font-size: clamp(0.95rem, 1.02vw, 1.05rem);
  line-height: 1.45;
}

.features-section {
  background: linear-gradient(180deg, #fbfbfd, #f4f5f8);
}

.features-hero {
  min-height: 210px;
  background:
    linear-gradient(rgba(10, 14, 24, 0.44), rgba(10, 14, 24, 0.44)),
    url("./assets/headerbg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.features-hero-overlay {
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.features-hero h1 {
  margin: 0;
  font-family: "Montserrat", "Sora", sans-serif;
  color: #f5f7fb;
  font-weight: 600;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}

.features-page-section {
  background: #efefef;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.use-cases-head p {
  margin: 0;
  color: #b17415;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.use-cases-head h2 {
  margin: 0.45rem auto 0;
  color: #172033;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.16;
}

.features-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card {
  background: #f3f3f3;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.2rem 1rem 1.1rem;
  min-height: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #d6cfbf;
  color: #1f1d1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.feature-card h3 {
  margin: 0.9rem 0 0;
  color: #2a2d33;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1.02rem, 1.24vw, 1.26rem);
  font-weight: 600;
  line-height: 1.25;
}

.feature-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: #d3ad5b;
  margin: 0.65rem auto 0;
}

.feature-card p {
  margin: 0.72rem 0 0;
  color: #5a5f69;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  line-height: 1.45;
}

.features-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.features-link-btn {
  position: relative;
  min-width: 320px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 4px;
  color: #111827;
  font-family: "Poppins", "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(92deg, #f4b73f, #f8c660);
  border: 1px solid #e0b14f;
  box-shadow: 0 8px 14px rgba(155, 112, 28, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-link-btn::before,
.features-link-btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
}

.features-link-btn::before {
  top: 7px;
  left: 7px;
  border-top: 2px solid #111827;
  border-left: 2px solid #111827;
}

.features-link-btn::after {
  right: 7px;
  bottom: 7px;
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
}

.features-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(155, 112, 28, 0.24);
}

.display-section {
  background: #f1f1f3;
  padding-top: 0;
}

.display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3.2vw, 3.4rem);
  align-items: center;
}

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

.mini-board {
  width: min(560px, 100%);
  border-radius: 18px;
  background: #e7e1d8;
  color: #2f2f2f;
  box-shadow: 0 20px 45px rgba(63, 48, 25, 0.14);
  padding: clamp(1.1rem, 2.6vw, 2rem);
  border: 1px solid #d0c6b7;
}

.mini-board-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  color: #a8792c;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.mini-board-title strong {
  border-radius: 999px;
  background: rgba(168, 121, 44, 0.14);
  color: #8b692d;
  padding: 0.34rem 0.58rem;
  font-size: 0.78rem;
}

.mini-line {
  min-height: 66px;
  border-top: 1px solid #d0c6b7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-line b {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  color: #313131;
}

.mini-line span {
  color: #2f2f2f;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
}

.mini-line[data-raw-symbol] span {
  font-size: clamp(1.08rem, 1.9vw, 1.45rem);
  font-variant-numeric: tabular-nums;
}

.display-copy {
  max-width: 620px;
}

.display-copy h2 {
  color: #232933;
  font-size: clamp(1.7rem, 2.6vw, 3.1rem);
  line-height: 1.22;
}

.display-copy p {
  margin-top: 0.95rem;
  max-width: 54ch;
  color: #2f3540;
  font-size: clamp(1.02rem, 1.3vw, 1.35rem);
  line-height: 1.5;
}

.display-copy a {
  display: inline-flex;
  margin-top: 0.4rem;
  color: #1760d4;
  font-weight: 800;
}

.display-copy a:hover {
  text-decoration: underline;
}

.use-cases {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(244, 183, 63, 0.14), transparent 34%),
    linear-gradient(180deg, #f1f1f3 0%, #fff9ed 100%);
  padding: clamp(2.1rem, 4vw, 3.2rem) 0 clamp(2.6rem, 5vw, 4rem);
}

.use-cases-head {
  text-align: center;
}

.use-cases-head h2 {
  max-width: 780px;
}

.use-cases-track {
  width: 100%;
  margin-top: 1.65rem;
  display: flex;
  gap: 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.use-cases-group {
  min-width: max-content;
  display: flex;
  gap: 1rem;
  animation: caseScroll 28s linear infinite;
}

.use-cases-track:hover .use-cases-group {
  animation-play-state: paused;
}

.use-cases-group span {
  min-width: 210px;
  min-height: 96px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  color: #172033;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  white-space: nowrap;
}

@keyframes caseScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.pricing-hero {
  background:
    linear-gradient(rgba(10, 14, 24, 0.44), rgba(10, 14, 24, 0.44)),
    url("./assets/headerbg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.pricing-overlay {
  min-height: calc(100vh - 84px);
  padding: clamp(3rem, 6vw, 6.5rem) 0;
  background: transparent;
  display: flex;
  align-items: center;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.pricing-copy {
  color: #ffffff;
  max-width: 720px;
}

.pricing-eyebrow,
.card-kicker {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-eyebrow {
  color: rgba(255, 248, 232, 0.78);
}

.pricing-copy h1 {
  margin: 0.85rem 0 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 3.65rem);
  line-height: 1.04;
}

.pricing-copy h1 span,
.pricing-copy h1 strong {
  display: block;
}

.pricing-copy h1 strong {
  margin-top: 0.2rem;
  color: var(--gold-2);
  font-weight: 800;
  text-shadow: 0 12px 42px rgba(248, 198, 96, 0.18);
}

.pricing-description {
  max-width: 630px;
  margin: 1.3rem 0 0;
  color: rgba(255, 248, 232, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.pricing-benefits {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.pricing-benefits li {
  min-height: 56px;
  border: 1px solid rgba(255, 248, 232, 0.16);
  border-radius: 999px;
  padding: 0.78rem 1rem 0.78rem 2.9rem;
  color: rgba(255, 248, 232, 0.94);
  background: rgba(12, 18, 30, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.18;
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-benefits li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(248, 198, 96, 0.16);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
}

.pricing-card {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 39%,
      rgba(255, 247, 218, 1) 50%,
      rgba(255, 255, 255, 0) 61%,
      rgba(255, 255, 255, 0) 100%
    ) border-box;
  border-radius: 30px;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid transparent;
  box-shadow: 0 28px 80px rgba(5, 10, 20, 0.34);
  position: relative;
  isolation: isolate;
  background-size: 100% 100%, 145% 145%;
  background-position: 0 0, 0% 0%;
  box-shadow:
    0 28px 80px rgba(5, 10, 20, 0.34),
    0 0 0 1px rgba(244, 183, 63, 0.6),
    0 0 30px rgba(244, 183, 63, 0.42),
    0 0 52px rgba(204, 146, 43, 0.34);
  animation: pricingBorderGlowFlow 3.1s linear infinite;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(248, 198, 96, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

@keyframes pricingBorderGlowFlow {
  0% {
    background-position: 0 0, 0% 0%;
  }

  25% {
    background-position: 0 0, 100% 0%;
  }

  50% {
    background-position: 0 0, 100% 100%;
  }

  75% {
    background-position: 0 0, 0% 100%;
  }

  100% {
    background-position: 0 0, 0% 0%;
  }
}

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

  .pricing-benefits li,
  .pricing-detail-grid article {
    animation: none;
  }
}

.pricing-card-stamp {
  position: absolute;
  top: -2.15rem;
  right: -1.35rem;
  width: clamp(82px, 8vw, 128px);
  aspect-ratio: 1;
  border: 5px solid rgba(248, 198, 96, 0.9);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3b8, #f4b73f);
  color: #111827;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 900;
  display: grid;
  place-items: center;
  z-index: 3;
  transform: rotate(8deg);
  box-shadow: 0 14px 20px rgba(8, 16, 32, 0.2);
}

.pricing-card-head,
.period-tabs,
.price-row,
.mobile-setup-fee,
.vat-note,
.plan-features,
.continue-btn,
.card-trust {
  position: relative;
  z-index: 1;
}

.card-kicker {
  color: #b17415;
}

.pricing-card h2 {
  margin: 0.35rem 0 0;
  color: var(--primary);
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.25rem, 1.55vw, 1.58rem);
}

.period-tabs {
  margin: 1.35rem 0 0;
  padding: 0.36rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  border-radius: 999px;
  background: #fff7e4;
  border: 1px solid #f4dfae;
}

.period-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #765928;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.period-tabs button em {
  margin-left: 0.38rem;
  border-radius: 999px;
  padding: 0.14rem 0.45rem;
  background: rgba(23, 32, 51, 0.12);
  color: inherit;
  font-size: 0.68rem;
  font-style: normal;
}

.period-tabs button.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  box-shadow: 0 12px 28px rgba(244, 183, 63, 0.28);
}

.price-row {
  padding: 1.45rem 0 0;
  color: var(--primary);
}

.price-row p {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: flex-end;
  gap: 0.46rem;
}

.price-row p strong {
  color: var(--primary);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  line-height: 0.98;
}

.price-row small {
  display: block;
  margin-top: 0.7rem;
  color: #3e485b;
  font-size: 1.02rem;
  font-weight: 700;
}

.mobile-setup-fee {
  margin: 0.8rem 0 0;
  color: #5b677d;
  font-size: 0.96rem;
  font-weight: 700;
}

.vat-note {
  margin: 0.36rem 0 0;
  color: #7a8494;
  font-size: 0.94rem;
  font-weight: 600;
}

.plan-features {
  margin: 1.35rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid #eef1f5;
  list-style: none;
  display: grid;
  gap: 0.74rem;
}

.plan-features li {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.66rem;
}

.plan-features li::before {
  content: "✓";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #fff7e4;
  color: #b17415;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 0.78rem;
}

.continue-btn {
  margin: 1.45rem 0 0;
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(244, 183, 63, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(244, 183, 63, 0.38);
}

.card-trust {
  display: block;
  margin-top: 0.8rem;
  color: #687386;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.pricing-detail-section {
  background: #f1f1f3;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.pricing-detail-grid article {
  min-height: 220px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #f3f3f3;
  padding: 1.2rem 1rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-detail-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #d6cfbf;
  color: #1f1d1a;
  font-family: "Sora", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing-detail-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.pricing-detail-grid h2 {
  margin: 0.9rem 0 0;
  color: #2a2d33;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1.02rem, 1.24vw, 1.26rem);
  font-weight: 600;
  line-height: 1.25;
}

.pricing-detail-grid p {
  margin: 0.72rem 0 0;
  color: #5a5f69;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  line-height: 1.45;
}

.contact-hero {
  min-height: 220px;
  background:
    linear-gradient(rgba(10, 14, 24, 0.44), rgba(10, 14, 24, 0.44)),
    url("./assets/headerbg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-hero-overlay {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  font-weight: 600;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.contact-section {
  background:
    linear-gradient(176deg, #ffffff 0 86%, #eef1f4 86.2%),
    #ffffff;
  padding: clamp(1.75rem, 4vw, 3.2rem) 0 clamp(2.6rem, 5vw, 4.8rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.contact-form-panel {
  padding: 0.15rem 0 0;
}

.contact-eyebrow {
  margin: 0;
  color: #b17415;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form-panel h2 {
  margin: 0.2rem 0 0;
  color: #242832;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.45rem, 2.05vw, 1.95rem);
  line-height: 1.08;
}

.contact-intro {
  max-width: 62ch;
  margin: 0.65rem 0 0;
  color: #687386;
  font-size: 1rem;
  line-height: 1.6;
}

.business-phone-list {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.business-phone-card {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 10px;
  background: #fff8e9;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.business-phone-card span {
  color: #8b6f37;
  font-size: 0.78rem;
  font-weight: 800;
}

.business-phone-card strong {
  margin-top: 0.2rem;
  color: #172033;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1.02rem;
  display: block;
}

.business-phone-card nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.business-phone-card a {
  min-height: 36px;
  border-radius: 7px;
  padding: 0.55rem 0.68rem;
  color: #172033;
  background: #ffffff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.business-phone-card a:hover {
  border-color: rgba(244, 183, 63, 0.54);
  box-shadow: 0 10px 20px rgba(244, 183, 63, 0.12);
  transform: translateY(-1px);
}

.contact-form {
  margin-top: 1.5rem;
}

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

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

.contact-form label > span {
  color: #6f7682;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-form label em {
  color: #d13b3b;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.phone-field {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e1e5ea;
  border-radius: 9px;
  background: #ffffff;
  color: #252a34;
  box-shadow: inset 0 1px 2px rgba(18, 28, 45, 0.04), 0 1px 0 rgba(18, 28, 45, 0.03);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0 1rem;
}

.contact-form textarea {
  min-height: 118px;
  padding-top: 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.phone-field:focus-within {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 183, 63, 0.16);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #252a34 50%),
    linear-gradient(135deg, #252a34 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.phone-field {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.phone-field strong {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 0.58rem;
  background: #eef0f3;
  color: #777d87;
  font-size: 0.77rem;
  font-weight: 800;
}

.phone-field b {
  padding: 0 0.85rem;
  color: #252a34;
  font-size: 1.05rem;
}

.phone-field input {
  min-height: 50px;
  border: 0;
  border-left: 1px solid #eef0f3;
  border-radius: 0;
  box-shadow: none;
}

.message-field {
  margin-top: 1.25rem;
}

.consent-row {
  width: fit-content;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.consent-row input {
  width: 28px;
  min-height: 28px;
  height: 28px;
  flex: 0 0 auto;
  appearance: none;
  padding: 0;
  border-radius: 5px;
  background: #ffffff;
}

.consent-row input:checked {
  border-color: var(--gold);
  background:
    linear-gradient(135deg, transparent 42%, #ffffff 43% 56%, transparent 57%),
    linear-gradient(45deg, transparent 45%, #ffffff 46% 58%, transparent 59%),
    var(--gold);
}

.consent-row span {
  color: #252a34;
  font-size: 1.06rem;
}

.privacy-modal-trigger {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #172033;
  font: inherit;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}

.privacy-modal-trigger:hover {
  color: #b17415;
}

.contact-actions {
  margin-top: 1.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.recaptcha-placeholder {
  min-height: 58px;
  border: 1px solid #e1e5ea;
  border-radius: 9px;
  background: #f8fafc;
  color: #687386;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-submit {
  min-width: 210px;
  min-height: 58px;
  border: 0;
  border-radius: 10px;
  background: #c7c7c7;
  color: #575d65;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: not-allowed;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.contact-submit.is-ready {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(244, 183, 63, 0.28);
}

.contact-submit::before {
  content: "";
  display: inline-block;
  margin-right: 0.55rem;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  transform: translateY(1px);
}

.form-status {
  min-height: 1.35rem;
  margin: 1rem 0 0;
  color: #2f8f55;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.modal-open {
  overflow: hidden;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.58);
  backdrop-filter: blur(5px);
}

.privacy-modal-dialog {
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 2rem));
  overflow: auto;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(8, 16, 32, 0.32);
  padding: clamp(1.35rem, 3vw, 2.1rem);
  position: relative;
}

.privacy-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff7e4;
  color: #172033;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal-dialog h2 {
  margin: 0.35rem 2rem 0 0;
  color: #172033;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.privacy-modal-content {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.privacy-modal-content p {
  margin: 0;
  color: #56617a;
  font-size: 1rem;
  line-height: 1.7;
}

.site-bottom {
  margin-top: 0;
}

.bottom-cta {
  background: linear-gradient(95deg, #111827 0%, #263247 54%, #7d5a18 100%);
  padding: 2rem 0 2.4rem;
}

.bottom-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bottom-cta-inner p {
  margin: 0;
  color: #f2f7ff;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 600;
}

.bottom-cta-btn {
  margin-top: 0.9rem;
  min-width: 260px;
}

.bottom-cta-inner small {
  margin-top: 0.7rem;
  color: #f8d993;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.bottom-footer {
  background: #e7e7ea;
  padding: 1.6rem 0 1.25rem;
}

.copyright {
  margin: 0.8rem 0 0;
  text-align: center;
  color: #3a3e47;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.86rem;
}

.copyright strong {
  color: #1b4f95;
  font-weight: 600;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.25rem;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(13, 29, 56, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 761px) {
  .home-page .nav-links a[href="./index.html#home"]::after,
  .features-page .nav-links a[href="./ozellikler.html"]::after,
  .pricing-page .nav-links a[href="./fiyatlandirma.html"]::after,
  .contact-page .nav-links a[href="./iletisim.html"]::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.55rem;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(23, 32, 51, 0.88);
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 0.8rem;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .nav-links > a {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.56rem 0.82rem;
    font-size: 0.88rem;
  }

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

  .hero-grid {
    min-height: auto;
    padding-block: 2rem 0;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
    align-items: center;
    padding-block: 0;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-visual {
    min-height: 480px;
    justify-content: center;
  }

  .hero-tv {
    width: min(760px, 96vw);
    max-height: 100%;
  }

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

  .display-copy {
    max-width: none;
    text-align: center;
  }

  .display-copy p {
    margin-inline: auto;
  }

  .pricing-overlay {
    min-height: auto;
    padding: clamp(2.2rem, 7vw, 4rem) 0;
  }

  .pricing-layout,
  .pricing-detail-grid {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    max-width: none;
  }

  .pricing-card {
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }

  .pricing-card-stamp {
    top: -1.45rem;
    right: -0.85rem;
    width: clamp(76px, 17vw, 108px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .mobile-head-actions {
    display: inline-flex;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .brand-registered {
    font-size: 0.8em;
    transform: translateY(-0.3em);
  }

  .brand-text {
    font-size: clamp(1rem, 5vw, 1.32rem);
  }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    background: #ececec;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.28s ease, clip-path 0.32s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }

  .nav-links,
  .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links > a {
    text-transform: uppercase;
    color: #31363d;
    font-size: 0.94rem;
    font-weight: 600;
    padding: 0.86rem 1.1rem;
    border-bottom: 1px solid #cfcfcf;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .nav-actions .btn {
    min-height: 58px;
    font-size: 0.88rem;
    padding: 0.58rem 0.65rem;
  }

  .mobile-nav-note {
    display: block;
    font-size: 0.66rem;
    color: #1d1e20;
    font-weight: 700;
    background: #ececec;
    padding: 0.34rem 0.7rem 0.42rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 1.35rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-copy p.trial-highlight {
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: row;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    min-width: auto;
    min-height: 44px;
    font-size: 0.82rem;
    padding: 0.62rem 0.86rem;
  }

  .hero-actions .btn::before,
  .hero-actions .btn::after,
  .bottom-cta-btn::before,
  .bottom-cta-btn::after {
    width: 12px;
    height: 12px;
  }

  .hero-visual {
    min-height: 370px;
    align-items: flex-start;
    padding-top: 0.8rem;
  }

  .hero-tv {
    width: min(560px, 100%);
  }

  .section {
    padding-block: 3rem;
  }

  .about h2 {
    margin-bottom: 1.4rem;
    font-size: clamp(1.55rem, 6.8vw, 2rem);
  }

  .about p {
    font-size: 0.95rem;
  }

  .about .about-line,
  .about .about-note {
    margin-top: 1.2rem;
  }

  .cards,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    margin-top: 1.6rem;
    gap: 0.9rem;
  }

  .card,
  .feature-card {
    min-height: auto;
    padding: 1.2rem 0.95rem;
  }

  .card-icon,
  .feature-icon {
    width: 54px;
    height: 54px;
  }

  .card h3 {
    margin-top: 0.9rem;
    font-size: 1.1rem;
  }

  .card p,
  .feature-card p {
    font-size: 0.92rem;
  }

  .display-section {
    padding-block: 1.8rem 2.8rem;
  }

  .display-grid {
    gap: 1.2rem;
  }

  .mini-line {
    min-height: 54px;
  }

  .display-copy h2 {
    font-size: clamp(1.32rem, 5.4vw, 1.78rem);
  }

  .display-copy p {
    font-size: 0.96rem;
  }

  .use-cases {
    padding: 1.7rem 0 2.4rem;
  }

  .use-cases-group {
    animation-duration: 22s;
  }

  .use-cases-group span {
    min-width: 168px;
    min-height: 82px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .features-hero,
  .features-hero-overlay {
    min-height: 150px;
  }

  .features-hero h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .features-page-section {
    padding: 1rem 0 2rem;
  }

  .features-actions {
    margin-top: 0.7rem;
    gap: 0.62rem;
  }

  .features-link-btn {
    min-width: calc(100% - 0.35rem);
    min-height: 48px;
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }

  .features-link-btn::before,
  .features-link-btn::after {
    width: 10px;
    height: 10px;
  }

  .pricing-overlay {
    padding: 1.6rem 0 2rem;
  }

  .pricing-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .pricing-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .pricing-benefits {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .pricing-benefits li {
    border-radius: 18px;
    padding: 0.78rem 0.95rem 0.78rem 2.8rem;
    font-size: 0.94rem;
  }

  .pricing-card {
    border-radius: 24px;
    padding: 1.05rem;
  }

  .pricing-card::before {
    inset: 0.55rem;
    border-radius: 19px;
  }

  .pricing-card-stamp {
    top: -1rem;
    right: -0.35rem;
    width: clamp(66px, 24vw, 92px);
  }

  .period-tabs {
    margin: 1rem 0 0;
  }

  .period-tabs button {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .period-tabs button em {
    display: block;
    width: fit-content;
    margin: 0.13rem auto 0;
    padding: 0.08rem 0.36rem;
    font-size: 0.6rem;
  }

  .price-row {
    padding: 1.2rem 0 0;
  }

  .price-row p strong {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .pricing-detail-section {
    padding: 2rem 0;
  }

  .pricing-detail-grid article {
    min-height: auto;
    padding: 1.35rem 1rem;
  }

  .contact-hero,
  .contact-hero-overlay {
    min-height: 160px;
  }

  .contact-section {
    padding: 1.35rem 0 2.2rem;
  }

  .business-phone-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .business-phone-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-phone-card nav,
  .business-phone-card a {
    width: 100%;
  }

  .business-phone-card a {
    justify-content: center;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .phone-field {
    min-height: 48px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 1.25rem;
  }

  .recaptcha-placeholder,
  .contact-submit {
    width: 100%;
  }

  .bottom-cta {
    padding: 1.5rem 0 1.9rem;
  }

  .bottom-cta-inner p {
    font-size: 1.14rem;
  }

  .bottom-cta-btn {
    min-width: 220px;
    min-height: 50px;
    font-size: 0.93rem;
  }

  .bottom-footer {
    padding: 1.2rem 0 1.05rem;
  }

  .copyright {
    font-size: 0.78rem;
  }
}
