:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #172133;
  --muted: #56617a;
  --line: #dfe6f2;
  --primary: #0f5fbf;
  --primary-2: #1f9f6f;
  --shadow: 0 10px 40px rgba(17, 33, 56, 0.12);
  --radius: 10px;
  --container: 1280px;
}

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

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-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;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.brand-text {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(1.12rem, 1.45vw, 1.55rem);
  letter-spacing: -0.018em;
  color: #172033;
  white-space: nowrap;
}

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

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

.mobile-lang {
  display: none;
  color: #3d4148;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
}

.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.45rem;
}

.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);
}

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

.nav-links > a:hover {
  color: rgba(23, 32, 51, 1);
}

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

.btn:hover {
  transform: none;
}

.btn-primary {
  color: #fff;
  background: #28925b;
  border-color: #28925b;
}

.btn-outline {
  border-color: #2c67b6;
  color: #2c67b6;
  background: #fff;
}

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

.btn-trial {
  white-space: nowrap;
  padding-inline: 1.25rem;
  background: #f6bb62;
  border-color: #f1ad46;
  color: #2f2a1f;
}

.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.46);
}

.nav-actions .btn-trial {
  background: #f6bb62;
  color: #2f2a1f;
}

.nav-actions .btn-outline {
  background: #19559f;
  color: #ffffff;
}

.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;
  transition: transform 0.25s ease;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  --slash-gap: 10px;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #111111;
  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, background-color 0.2s ease;
}

.menu-toggle span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: width 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

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

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

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

.menu-toggle:hover {
  transform: translateY(-1px) scale(1.01);
}

.menu-toggle:hover span::before {
  width: 100%;
}

.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;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(0.4);
}

.menu-toggle.is-active span:nth-child(3) {
  width: 22px;
  opacity: 1;
  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(102deg, rgba(6, 31, 56, 0.78), rgba(14, 40, 83, 0.72)),
    url("./assets/headerbackgorund.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.03fr 0.97fr;
  min-height: calc(100vh - 84px);
  padding-block: 0;
  align-items: stretch;
}

.hero-copy {
  color: #f6f8fc;
  max-width: 620px;
  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: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  line-height: 1.08;
  white-space: nowrap;
  letter-spacing: -0.012em;
}

.hero-copy p {
  font-family: "Poppins", "Outfit", sans-serif;
  color: #cedaea;
  font-size: clamp(1rem, 1.95vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 60ch;
}

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

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

.hero-copy p.trial-highlight {
  font-family: "Poppins", "Outfit", sans-serif;
  margin: 1.35rem 0 0;
  color: #ef9c2d;
  font-size: 1.4rem;
  font-weight: 500;
}

.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: #d97900;
  font-family: "Poppins", "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
}

.hero-actions .btn {
  background: #ffffff;
  border: 1px solid #d7dfec;
  color: #454b56;
  border-radius: 4px;
  min-width: 188px;
  min-height: 54px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  background: #ffffff;
  border-color: #d7dfec;
  color: #454b56;
}

.hero-actions .btn::before,
.hero-actions .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 {
  top: 7px;
  left: 8px;
  border-top: 2px solid #ef9c2d;
  border-left: 2px solid #ef9c2d;
}

.hero-actions .btn::after {
  right: 8px;
  bottom: 7px;
  border-right: 2px solid #ef9c2d;
  border-bottom: 2px solid #ef9c2d;
}

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

.hero-actions .btn:hover::before {
  width: 22px;
  height: 22px;
  transform: translate(-2px, -2px);
}

.hero-actions .btn:hover::after {
  width: 22px;
  height: 22px;
  transform: translate(2px, 2px);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-phone {
  width: min(100%, 740px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  align-self: flex-end;
  filter: drop-shadow(0 16px 32px rgba(7, 24, 54, 0.24));
}

.hero-stamp {
  position: absolute;
  right: clamp(1.1rem, 5vw, 3.6rem);
  top: clamp(2rem, 12vh, 6rem);
  width: clamp(108px, 15vw, 182px);
  height: auto;
  z-index: 2;
  transform: rotate(7deg);
  filter: drop-shadow(0 18px 26px rgba(2, 12, 28, 0.26));
  pointer-events: none;
}

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

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

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

.about {
  background: #f1f1f3;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

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

.about h2 {
  text-align: center;
  margin-bottom: 2.2rem;
  color: #232933;
  font-size: clamp(1.85rem, 3.1vw, 2.9rem);
}

.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);
}

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

.about .cards {
  margin-top: 2.8rem;
  gap: 1.3rem;
}

.about .card {
  background: #f2f4f7;
  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;
  justify-content: flex-start;
}

.about .card img {
  width: 74px;
  height: auto;
}

.about .card h3 {
  margin-top: 1.6rem;
  color: #2a2f38;
  font-size: clamp(1.16rem, 1.38vw, 1.5rem);
}

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

.qr-scan {
  background: #f1f1f3;
  padding-top: 0;
}

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

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

.qr-scan-visual img {
  width: min(560px, 100%);
  height: auto;
}

.qr-scan-copy {
  max-width: 620px;
}

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

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

.qr-scan-copy a {
  color: #1760d4;
}

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

.brand-marquee {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(242, 138, 46, 0.12), transparent 34%),
    linear-gradient(180deg, #f1f1f3 0%, #fff8f1 100%);
  padding: clamp(2.1rem, 4vw, 3.2rem) 0 clamp(2.6rem, 5vw, 4rem);
}

.brand-marquee-head {
  text-align: center;
}

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

.brand-marquee-head h2 {
  max-width: 760px;
  margin: 0.45rem auto 0;
  color: #172033;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.brand-marquee-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);
}

.brand-marquee-track:hover .brand-marquee-group {
  animation-play-state: paused;
}

.brand-marquee-group {
  min-width: max-content;
  display: flex;
  gap: 1rem;
  animation: brandScroll 28s linear infinite;
}

.reference-logo-card {
  min-width: 210px;
  min-height: 104px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  color: rgba(23, 32, 51, 0.74);
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  white-space: nowrap;
}

.reference-logo-card img {
  width: auto;
  max-width: 172px;
  max-height: 78px;
  border-radius: 10px;
  object-fit: contain;
  filter: saturate(0.98);
}

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

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

.pricing-hero {
  --pricing-orange: #f28a2e;
  --pricing-orange-strong: #ff7a1a;
  --pricing-navy: #172033;
  --pricing-cream: #fff8f1;
  background:
    linear-gradient(110deg, rgba(15, 21, 34, 0.88), rgba(23, 32, 51, 0.76) 48%, rgba(23, 32, 51, 0.58)),
    url("./assets/headerbackgorund.png");
  background-size: cover;
  background-position: center;
  background-color: var(--pricing-navy);
  position: relative;
  overflow: hidden;
}

.pricing-overlay {
  min-height: calc(100vh - 84px);
  padding: clamp(3rem, 6vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(242, 138, 46, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.04), rgba(23, 32, 51, 0.18));
  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: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-eyebrow {
  color: rgba(255, 248, 241, 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;
  letter-spacing: -0.048em;
}

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

.pricing-copy h1 span {
  color: #ffffff;
}

.pricing-copy h1 strong {
  margin-top: 0.2rem;
  color: var(--pricing-orange-strong);
  font-weight: 800;
  text-shadow: 0 12px 42px rgba(255, 122, 26, 0.22);
}

.pricing-description {
  max-width: 630px;
  margin: 1.3rem 0 0;
  color: rgba(255, 248, 241, 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, 241, 0.16);
  border-radius: 999px;
  padding: 0.78rem 1rem 0.78rem 2.9rem;
  color: rgba(255, 248, 241, 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-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  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(255, 122, 26, 0.16);
  color: var(--pricing-orange-strong);
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
}

.pricing-card {
  background: linear-gradient(168deg, #f5ae5d, #ef9a3e 62%, #e3872d);
  border-radius: 30px;
  padding: clamp(1.15rem, 2.4vw, 1.8rem);
  border: 2px solid rgba(255, 239, 222, 0.96);
  box-shadow: 0 28px 80px rgba(5, 10, 20, 0.34);
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 2px solid rgba(255, 245, 234, 0.92);
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
}

.pricing-card::after {
  content: none;
}

.pricing-card-stamp {
  position: absolute;
  top: -1.95rem;
  right: -1.25rem;
  width: clamp(82px, 8vw, 128px);
  height: auto;
  z-index: 8;
  transform: rotate(8deg);
  filter: drop-shadow(0 14px 20px rgba(8, 16, 32, 0.2));
  pointer-events: none;
}

.pricing-card-head {
  position: relative;
  z-index: 3;
}

.card-kicker {
  color: rgba(255, 248, 240, 0.9);
}

.pricing-card h2 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.25rem, 1.55vw, 1.58rem);
  letter-spacing: -0.035em;
}

.period-tabs {
  margin: 1rem 0 0;
  padding: 0.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  border-radius: 18px;
  background: rgba(255, 247, 236, 0.5);
  border: 2px solid rgba(255, 247, 236, 0.95);
  position: relative;
  z-index: 3;
}

.period-tabs button {
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fffaf5;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  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(255, 255, 255, 0.4);
  color: inherit;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.period-tabs button.active {
  background: #fffdf8;
  color: #c26a15;
  box-shadow: 0 10px 24px rgba(181, 102, 31, 0.2);
}

.price-row {
  padding: 1.1rem 0 0;
  background: transparent;
  color: #fff8f1;
  position: relative;
  z-index: 3;
}

.price-row p {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.56rem;
  letter-spacing: -0.02em;
}

.price-row p strong {
  color: #fffaf5;
  font-size: clamp(2.1rem, 3.1vw, 2.85rem);
  line-height: 0.88;
}

.price-row p span {
  padding-bottom: 0.25rem;
  color: rgba(255, 247, 239, 0.95);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-row small {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 246, 236, 0.92);
  font-size: 0.98rem;
  font-weight: 700;
}

.vat-note {
  margin: 0.52rem 0 0;
  background: transparent;
  color: rgba(255, 246, 235, 0.94);
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
}

.plan-features {
  margin: 3.2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(22, 88, 148, 0.2);
  list-style: none;
  display: grid;
  gap: 0.66rem;
  position: relative;
  z-index: 2;
}

.plan-features li {
  color: #364352;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 0.66rem;
}

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

.continue-btn {
  margin: 0;
  width: 100%;
  min-height: 54px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f7bd76, #ee9e43);
  color: #ffffff;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(186, 109, 40, 0.26);
  position: relative;
  z-index: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(186, 109, 40, 0.34);
}

.card-trust {
  display: block;
  margin-top: 0;
  color: #705742;
  font-family: "Outfit", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 3;
}

.pricing-cta-zone {
  margin-top: 1.25rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 220, 180, 0.95);
  border-radius: 14px;
  background: rgba(255, 251, 246, 0.97);
  display: grid;
  gap: 0.56rem;
  position: relative;
  z-index: 3;
}

.features-hero {
  min-height: 210px;
  background:
    linear-gradient(100deg, rgba(10, 24, 42, 0.54), rgba(13, 28, 43, 0.56)),
    url("./assets/headerbackgorund.png");
  background-size: cover;
  background-position: center;
}

.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: 500;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}

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

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

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

.feature-card img {
  width: 50px;
  height: auto;
}

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

.feature-card span {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: #c4c4c4;
  margin-top: 0.65rem;
}

.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;
}

.feature-card span.is-active {
  background: #6aa9ff;
}

.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: #ffffff;
  font-family: "Poppins", "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: linear-gradient(92deg, #4e74ea, #69aee7);
  border: 1px solid #5f82ea;
  box-shadow: 0 8px 14px rgba(52, 96, 185, 0.2);
  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 #e4eeff;
  border-left: 2px solid #e4eeff;
}

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

.features-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(45, 83, 160, 0.26);
}

.contact-hero {
  min-height: 220px;
  background:
    linear-gradient(90deg, rgba(15, 21, 34, 0.72), rgba(23, 32, 51, 0.58)),
    url("./assets/headerbackgorund.png");
  background-size: cover;
  background-position: center 44%;
}

.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: 500;
  letter-spacing: -0.025em;
  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: #f28a2e;
  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;
  letter-spacing: -0.045em;
}

.contact-intro {
  max-width: 58ch;
  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: #fff8f1;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.business-phone-card span {
  color: #8a6470;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.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;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.business-phone-card a:hover {
  border-color: rgba(242, 138, 46, 0.48);
  box-shadow: 0 10px 20px rgba(242, 138, 46, 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: 500;
}

.contact-form label em {
  color: #f04444;
  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: #f28a2e;
  box-shadow: 0 0 0 4px rgba(242, 138, 46, 0.14);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #585f6d;
}

.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;
  grid-template-columns: none;
  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;
  border: 1px solid #d5dbe6;
  display: grid;
  place-items: center;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.consent-row input:checked {
  border-color: #f28a2e;
  background-color: #f28a2e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.2 3.1L13 4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.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: #f28a2e;
}

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

.g-recaptcha {
  min-height: 78px;
  transform-origin: left top;
}

.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: 500;
  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, #f28a2e, #ff7a1a);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(255, 122, 26, 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: 600;
}

.form-status[data-state="info"] {
  color: #2a5ca8;
}

.form-status[data-state="error"] {
  color: #c23030;
}

.form-status[data-state="success"] {
  color: #2f8f55;
}

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

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

.submit-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.52);
  backdrop-filter: blur(3px);
}

.submit-success-dialog {
  width: min(440px, 100%);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 65px rgba(8, 16, 32, 0.3);
  padding: 1.35rem 1.3rem 1.2rem;
  position: relative;
  text-align: center;
}

.submit-success-dialog h2 {
  margin: 0.3rem 0 0;
  color: #1f2630;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.submit-success-dialog p {
  margin: 0.65rem 0 0;
  color: #5e6573;
  font-size: 0.98rem;
}

.submit-success-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  border: 1px solid #dce2ed;
  border-radius: 8px;
  background: #ffffff;
  color: #4f5663;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.submit-success-close:hover {
  border-color: #f2b16f;
  color: #d46e14;
}

.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: #fff3e8;
  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;
}

.holder-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(102deg, rgba(6, 31, 56, 0.78), rgba(14, 40, 83, 0.72)),
    url("./assets/headerbackgorund.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.holder-hero-grid {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(2.2rem, 4vw, 3.8rem);
  align-items: stretch;
  padding-block: 0;
}

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

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

.holder-hero-copy h1 {
  max-width: 720px;
  margin: 0.75rem 0 0;
  font-family: "Montserrat", "Sora", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.holder-hero-copy > p:not(.holder-eyebrow) {
  max-width: 610px;
  margin: 1.15rem 0 0;
  color: #cedaea;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.5;
}

.holder-actions {
  margin-top: 1rem;
}

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

.holder-sales-inner > a {
  min-height: 52px;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.holder-sales-inner > a {
  background: linear-gradient(135deg, #f28a2e, #ff7a1a);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(255, 122, 26, 0.26);
}

.holder-hero-badges {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.holder-hero-badges li {
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: rgba(255, 248, 241, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.holder-visual {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.holder-header-image {
  width: min(100%, 680px);
  height: auto;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 26px 52px rgba(4, 14, 30, 0.28));
}

.holder-stamp {
  position: absolute;
  top: clamp(1rem, 5vw, 3rem);
  right: clamp(0.3rem, 3vw, 1.2rem);
  width: clamp(104px, 15vw, 178px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 16px 26px rgba(4, 14, 30, 0.28));
  transform: rotate(7deg);
}

.holder-benefits {
  background: #f1f1f3;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

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

.holder-benefit-grid article {
  background: #f2f4f7;
  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;
  justify-content: flex-start;
}

.holder-benefit-grid img {
  width: 74px;
  height: auto;
}

.holder-benefit-grid h3 {
  margin: 1.6rem 0 0;
  color: #2a2f38;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.16rem, 1.38vw, 1.5rem);
}

.holder-benefit-grid p {
  margin: 0.9rem 0 0;
  max-width: 28ch;
  color: #5c626f;
  font-size: clamp(0.95rem, 1.02vw, 1.05rem);
  line-height: 1.45;
}

.holder-products {
  background:
    linear-gradient(180deg, #fbfbfd, #f5f5f7);
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

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

.holder-section-head h2 {
  margin: 0.45rem 0 0;
  color: #172033;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.holder-product-grid {
  margin-top: 2rem;
  max-width: 1020px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.holder-product-card {
  border: 1px solid rgba(23, 32, 51, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(23, 32, 51, 0.07);
  color: inherit;
  text-decoration: none;
  padding: clamp(0.82rem, 1.6vw, 1rem);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.holder-product-card:hover {
  border-color: rgba(23, 32, 51, 0.1);
  box-shadow: 0 28px 70px rgba(23, 32, 51, 0.11);
  transform: translateY(-5px);
}

.holder-product-visual {
  width: 100%;
  min-height: 330px;
  border-radius: 8px;
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.7rem, 2vw, 1.1rem);
}

.holder-product-visual img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(23, 32, 51, 0.18));
}

.holder-product-card h3 {
  margin: 1.05rem 0 0;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Sora", sans-serif;
  font-size: clamp(1.18rem, 1.65vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.holder-product-price {
  margin-top: 0.38rem;
}

.holder-product-price strong {
  color: #172033;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Sora", sans-serif;
  font-size: clamp(1.18rem, 1.55vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.product-detail-page {
  background: #f5f5f7;
}

.product-detail-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 138, 46, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfbfd, #f5f5f7);
  padding: clamp(2.4rem, 5vw, 5.2rem) 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.product-detail-media {
  max-width: 480px;
  width: 100%;
  justify-self: center;
}

.product-detail-visual.holder-product-visual {
  min-height: clamp(300px, 34vw, 430px);
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.product-preview-trigger {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-visual.holder-product-visual img {
  max-height: clamp(280px, 34vw, 420px);
  transition: transform 0.28s ease;
}

.product-preview-trigger:hover img {
  transform: scale(1.025);
}

.product-detail-gallery {
  max-width: 260px;
  margin: 0.65rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.product-gallery-thumb {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  padding: 0.38rem;
  cursor: pointer;
  display: grid;
  gap: 0.3rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  border-color: rgba(242, 138, 46, 0.68);
  box-shadow: 0 10px 22px rgba(23, 32, 51, 0.08);
  transform: translateY(-1px);
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}

.product-gallery-thumb span {
  color: #555b68;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.product-breadcrumb {
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: #7b8190;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.product-breadcrumb a {
  color: #172033;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail-kicker {
  margin: 0;
  color: #f28a2e;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  margin: 0.55rem 0 0;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Sora", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.product-detail-lead {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  color: #555b68;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.product-detail-price {
  margin-top: 1.4rem;
  color: #172033;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.product-tax-note {
  margin: 0.42rem 0 0;
  color: #8a909d;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-shipping-note {
  width: fit-content;
  margin: 0.45rem 0 0;
  border: 1px solid rgba(242, 138, 46, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.82);
  color: #b85b10;
  padding: 0.45rem 0.7rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.product-options {
  margin-top: 1.45rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
  padding: clamp(1rem, 2vw, 1.25rem);
  display: grid;
  gap: 1.05rem;
}

.product-option-group p {
  margin: 0 0 0.55rem;
  color: #6e7480;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.product-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-option-static {
  min-height: 40px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 7px;
  background: #fff7ef;
  color: #172033;
  padding: 0.64rem 0.95rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-option-choice {
  min-height: 40px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.76);
  color: #172033;
  padding: 0.64rem 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-option-choice:hover,
.product-option-choice.is-active {
  border-color: rgba(242, 138, 46, 0.72);
  background: #fff7ef;
  box-shadow: 0 10px 24px rgba(242, 138, 46, 0.14);
  transform: translateY(-1px);
}

.product-quantity-label {
  margin: 0 0 0.55rem;
  color: #6e7480;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  display: block;
}

.product-quantity-field {
  max-width: 190px;
  min-height: 44px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-quantity-field:focus-within {
  border-color: rgba(242, 138, 46, 0.72);
  box-shadow: 0 10px 24px rgba(242, 138, 46, 0.14);
}

.product-quantity-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #172033;
  padding: 0.68rem 0.2rem 0.68rem 0.82rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  outline: 0;
}

.product-quantity-field span {
  border-left: 1px solid rgba(23, 32, 51, 0.1);
  color: #6e7480;
  padding: 0 0.78rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.product-quantity-help {
  margin-top: 0.45rem;
  color: #7a8190;
  font-size: 0.82rem;
  line-height: 1.45;
  display: block;
}

.product-detail-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.product-primary-action,
.product-secondary-action {
  min-width: 188px;
  min-height: 54px;
  border: 1px solid #d7dfec;
  border-radius: 4px;
  padding: 0.85rem 1.2rem;
  background: #ffffff;
  color: #454b56;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-primary-action::before,
.product-primary-action::after,
.product-secondary-action::before,
.product-secondary-action::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.product-primary-action::before,
.product-secondary-action::before {
  top: 7px;
  left: 8px;
  border-top: 2px solid #ef9c2d;
  border-left: 2px solid #ef9c2d;
}

.product-primary-action::after,
.product-secondary-action::after {
  right: 8px;
  bottom: 7px;
  border-right: 2px solid #ef9c2d;
  border-bottom: 2px solid #ef9c2d;
}

.product-primary-action:hover,
.product-secondary-action:hover {
  transform: translateY(-1px);
  border-color: #c7d3e7;
  box-shadow: 0 12px 24px rgba(10, 33, 73, 0.16);
}

.product-primary-action:hover::before,
.product-secondary-action:hover::before {
  width: 22px;
  height: 22px;
  transform: translate(-2px, -2px);
}

.product-primary-action:hover::after,
.product-secondary-action:hover::after {
  width: 22px;
  height: 22px;
  transform: translate(2px, 2px);
}

.product-detail-note {
  max-width: 54ch;
  margin: 1rem 0 0;
  color: #737984;
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-detail-info {
  background: #f1f1f3;
  padding: clamp(3.2rem, 6vw, 5.2rem) 0;
}

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

.product-info-grid article {
  min-height: 258px;
  border: 1px solid #e1e4ea;
  border-radius: 5px;
  background: #f2f4f7;
  padding: 2.1rem 1.7rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-info-grid span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(15, 95, 191, 0.18);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(15, 95, 191, 0.1), rgba(40, 146, 91, 0.08));
  color: #0f5fbf;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-info-badge-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product-info-grid h2 {
  margin: 1.6rem 0 0;
  color: #2a2f38;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1.16rem, 1.38vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: normal;
}

.product-info-grid p {
  max-width: 28ch;
  margin: 0.9rem 0 0;
  color: #5c626f;
  font-size: clamp(0.95rem, 1.02vw, 1.05rem);
  line-height: 1.45;
}

.product-spec-section {
  background: #f1f1f3;
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.product-spec-card {
  border: 1px solid #e1e4ea;
  border-radius: 5px;
  background: #f2f4f7;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
}

.product-spec-card h2 {
  max-width: 520px;
  margin: 0.45rem 0 0;
  color: #2a2f38;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: clamp(1.4rem, 2.15vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.product-spec-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.product-spec-card dl div {
  border: 1px solid #e1e4ea;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.64);
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
}

.product-spec-card dl div:last-child {
  border-bottom: 1px solid #e1e4ea;
  padding-bottom: 0.9rem;
}

.product-spec-card dt,
.product-spec-card dd {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}

.product-spec-card dt {
  color: #737984;
  font-weight: 700;
}

.product-spec-card dd {
  color: #172033;
  font-weight: 700;
}

.product-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.product-preview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.72);
  backdrop-filter: blur(14px);
}

.product-preview-dialog {
  position: absolute;
  inset: clamp(1rem, 4vw, 3rem);
  border-radius: 12px;
  background: #fbfbfd;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.product-preview-dialog img {
  max-width: min(980px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(23, 32, 51, 0.2));
}

.product-preview-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #172033;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.holder-sales-cta {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 122, 26, 0.22), transparent 32%),
    #172033;
  padding: clamp(2rem, 4vw, 3.2rem) 0;
}

.holder-sales-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.holder-sales-inner h2 {
  max-width: 760px;
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.holder-sales-inner > a {
  flex: 0 0 auto;
}

.product-detail-page .holder-sales-cta {
  background: linear-gradient(95deg, #5074e6 0%, #5a8fe8 48%, #63aee5 100%);
  padding: 2rem 0 2.4rem;
}

.product-detail-page .holder-sales-inner > a {
  min-width: 230px;
  min-height: 58px;
  border: 1px solid #d6deee;
  border-radius: 4px;
  background: #ffffff;
  color: #424753;
  box-shadow: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.product-detail-page .holder-sales-inner > a::before,
.product-detail-page .holder-sales-inner > a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
}

.product-detail-page .holder-sales-inner > a::before {
  top: 7px;
  left: 7px;
  border-top: 2px solid #5e8bff;
  border-left: 2px solid #5e8bff;
}

.product-detail-page .holder-sales-inner > a::after {
  right: 7px;
  bottom: 7px;
  border-right: 2px solid #5e8bff;
  border-bottom: 2px solid #5e8bff;
}

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

.bottom-cta {
  background:
    linear-gradient(95deg, #5074e6 0%, #5a8fe8 48%, #63aee5 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.4rem, 2.3vw, 2rem);
  font-weight: 500;
}

.bottom-cta-btn {
  margin-top: 0.9rem;
  min-width: 260px;
  min-height: 58px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #d6deee;
  color: #424753;
  font-size: 1.04rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

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

.bottom-cta-btn::before {
  top: 7px;
  left: 7px;
  border-top: 2px solid #5e8bff;
  border-left: 2px solid #5e8bff;
}

.bottom-cta-btn::after {
  right: 7px;
  bottom: 7px;
  border-right: 2px solid #5e8bff;
  border-bottom: 2px solid #5e8bff;
}

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

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

.social-row {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f6;
  color: #1553a0;
  border: 1px solid #dadfe8;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-links {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.legal-links a {
  color: #363a40;
  font-family: "Poppins", "Outfit", sans-serif;
  font-size: 0.92rem;
}

.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;
}

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

.card {
  background: linear-gradient(155deg, #ffffff, #f7f9fd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 8px 25px rgba(7, 24, 54, 0.06);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.card h3 {
  margin: 1rem 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.card p {
  margin: 0;
  color: #5b667f;
  font-size: 1.05rem;
}

.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"]::after,
  .features-page .nav-links a[href="./ozellikler.html"]::after,
  .pricing-page .nav-links a[href="./fiyatlandirma.html"]::after,
  .holder-page .nav-links a[href="./kart-tutucu.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: 1024px) {
  .main-nav {
    gap: 0.8rem;
    justify-content: flex-end;
  }

  .nav-links {
    gap: 0.8rem;
  }

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 1.6rem 0;
  }

  .hero-copy h1 {
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    order: 2;
    min-height: 340px;
    justify-content: center;
  }

  .hero-stamp {
    right: 12%;
    top: 1.5rem;
    width: clamp(96px, 18vw, 138px);
  }

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

  .qr-scan-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .qr-scan-copy {
    max-width: none;
  }

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

  .feature-card {
    min-height: 218px;
  }

  .features-link-btn {
    min-width: 290px;
  }

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

  .product-detail-layout,
  .product-info-grid,
  .product-spec-card {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

  .holder-hero-grid,
  .holder-benefit-grid,
  .holder-product-grid {
    grid-template-columns: 1fr;
  }

  .holder-product-grid {
    max-width: 430px;
  }

  .holder-hero-grid {
    min-height: auto;
    gap: 1.4rem;
  }

  .holder-visual {
    min-height: 430px;
    justify-content: center;
  }

  .holder-sales-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .bottom-cta-btn {
    min-width: 230px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .pricing-benefits {
    border-radius: 26px;
    min-height: auto;
    padding: 1rem 0.85rem;
  }

  .pricing-center {
    order: -1;
  }

  .gift-badge {
    width: 180px;
    height: 180px;
  }

  .gift-badge strong {
    font-size: 1.58rem;
  }

  .gift-badge em {
    font-size: 1.46rem;
  }

  .pricing-media img:first-child {
    width: 132px;
  }

  .pricing-media img:last-child {
    width: 100px;
  }
}

@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-text {
    font-size: clamp(1rem, 5vw, 1.32rem);
  }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    background: #ececec;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
    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;
    letter-spacing: 0.004em;
    color: #31363d;
    font-size: 0.96rem;
    font-weight: 500;
    padding: 0.86rem 1.1rem;
    border-bottom: 1px solid #cfcfcf;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open .nav-links > a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.open .nav-links > a:nth-child(1) {
    transition-delay: 0.03s;
  }

  .main-nav.open .nav-links > a:nth-child(2) {
    transition-delay: 0.06s;
  }

  .main-nav.open .nav-links > a:nth-child(3) {
    transition-delay: 0.09s;
  }

  .main-nav.open .nav-links > a:nth-child(4) {
    transition-delay: 0.12s;
  }

  .main-nav.open .nav-links > a:nth-child(5) {
    transition-delay: 0.15s;
  }

  .main-nav.open .nav-links > a:nth-child(6) {
    transition-delay: 0.18s;
  }

  .main-nav.open .nav-links > a:nth-child(7) {
    transition-delay: 0.21s;
  }

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

  .nav-actions .btn {
    min-width: auto;
    min-height: 58px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.58rem 0.65rem;
    border: 0;
    border-radius: 0;
  }

  .nav-actions .btn + .btn {
    border-left: 0;
  }

  .nav-actions .btn-primary {
    background: #1f8d45;
    color: #fff;
  }

  .nav-actions .btn-trial {
    background: #f6bb62;
    color: #2f2a1f;
  }

  .nav-actions .btn-outline {
    background: #19559f;
    color: #fff;
  }

  .nav-actions .btn::before,
  .nav-actions .btn::after {
    display: none;
  }

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

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

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

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

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

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

  .feature-card {
    min-height: auto;
    border-radius: 5px;
    padding: 1rem 0.82rem 0.9rem;
  }

  .feature-card img {
    width: 44px;
  }

  .feature-card h3 {
    font-size: 1rem;
    font-weight: 500;
  }

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

  .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;
  }

  .brand-marquee {
    padding: 1.7rem 0 2.4rem;
  }

  .brand-marquee-track {
    margin-top: 1.2rem;
  }

  .brand-marquee-group {
    animation-duration: 22s;
  }

  .reference-logo-card {
    min-width: 168px;
    min-height: 82px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .reference-logo-card img {
    max-width: 138px;
    max-height: 62px;
  }

  .holder-hero-grid {
    padding-block: 2rem 2.6rem;
  }

  .holder-hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .holder-actions {
    flex-direction: column;
  }

  .holder-actions .btn,
  .holder-sales-inner > a {
    width: 100%;
  }

  .holder-visual {
    min-height: 350px;
  }

  .holder-header-image {
    width: min(520px, 96vw);
    max-height: 100%;
  }

  .holder-stamp {
    top: 0.25rem;
    right: 0.35rem;
    width: clamp(82px, 26vw, 120px);
  }

  .holder-benefits,
  .holder-products,
  .holder-sales-cta {
    padding-block: 2rem;
  }

  .holder-product-card {
    border-radius: 12px;
    min-height: 430px;
  }

  .holder-product-visual {
    min-height: 300px;
    border-radius: 8px;
  }

  .product-detail-hero {
    padding-block: 2rem;
  }

  .product-detail-media {
    max-width: 360px;
  }

  .product-detail-visual.holder-product-visual {
    min-height: 280px;
  }

  .product-detail-visual.holder-product-visual img {
    max-height: 280px;
  }

  .product-detail-gallery {
    max-width: 220px;
  }

  .product-shipping-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .product-option-row {
    gap: 0.45rem;
  }

  .product-option-choice {
    flex: 1 1 auto;
  }

  .product-primary-action,
  .product-secondary-action {
    width: 100%;
  }

  .product-info-grid article,
  .product-spec-card {
    border-radius: 5px;
  }

  .product-spec-card dl div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .product-preview-dialog {
    inset: 0.75rem;
    border-radius: 10px;
    padding: 1rem;
  }

  .product-preview-close {
    top: 0.75rem;
    right: 0.75rem;
  }

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

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

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

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

  .business-phone-card {
    align-items: center;
    flex-direction: row;
    padding: 0.75rem;
  }

  .business-phone-card strong {
    font-size: 0.9rem;
  }

  .business-phone-card nav {
    justify-content: flex-end;
  }

  .business-phone-card a {
    min-height: 34px;
    padding: 0.44rem 0.54rem;
    font-size: 0.72rem;
  }

  .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;
  }

  .contact-submit {
    width: 100%;
  }

  .g-recaptcha {
    transform: scale(0.9);
  }

  .pricing-overlay {
    padding: 0.8rem 0 1.25rem;
  }

  .pricing-benefits {
    border-radius: 16px;
    padding: 0.8rem 0.7rem;
  }

  .pricing-benefits li {
    border-radius: 10px;
    padding: 0.72rem 0.72rem;
    font-size: 0.88rem;
  }

  .gift-badge {
    width: 150px;
    height: 150px;
    border-width: 4px;
  }

  .gift-badge strong {
    font-size: 1.24rem;
  }

  .gift-badge span {
    font-size: 0.78rem;
  }

  .gift-badge em {
    font-size: 1.12rem;
  }

  .pricing-media {
    gap: 0.45rem;
  }

  .pricing-media img:first-child {
    width: 108px;
  }

  .pricing-media img:last-child {
    width: 82px;
  }

  .pricing-card {
    border-radius: 14px;
    border-width: 2px;
  }

  .period-tabs {
    margin: 0.65rem 0.65rem 0;
    padding: 0.35rem;
    gap: 0.35rem;
  }

  .period-tabs button {
    min-height: 40px;
    font-size: 0.88rem;
    padding-inline: 0.4rem;
  }

  .price-row {
    padding: 0.55rem 0.85rem 0;
  }

  .price-row p {
    font-size: 0.95rem;
  }

  .price-row p strong {
    font-size: 2.3rem;
  }

  .price-row small {
    font-size: 0.84rem;
  }

  .vat-note {
    padding: 0.55rem 0.85rem 0.75rem;
    font-size: 0.9rem;
  }

  .price-wave {
    height: 60px;
  }

  .plan-note {
    margin: 0.65rem 0.7rem 0;
    font-size: 0.86rem;
  }

  .price-input {
    margin: 0.7rem 0.7rem 0;
    min-height: 38px;
    font-size: 0.85rem;
  }

  .continue-btn {
    margin: 0;
    width: 100%;
    min-height: 40px;
    font-size: 1.05rem;
  }

  .pricing-cta-zone {
    margin-top: 0.85rem;
    padding: 0.62rem;
    gap: 0.5rem;
    border-radius: 10px;
  }

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

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

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

  .bottom-cta-btn::before,
  .bottom-cta-btn::after {
    width: 11px;
    height: 11px;
  }

  .bottom-cta-inner small {
    font-size: 0.83rem;
  }

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

  .social-row a {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .legal-links {
    margin-top: 0.72rem;
    gap: 0.65rem 0.9rem;
  }

  .legal-links a {
    font-size: 0.82rem;
  }

  .copyright {
    margin-top: 0.62rem;
    font-size: 0.78rem;
  }

  .qr-scan {
    padding-block: 1.8rem 2.8rem;
  }

  .qr-scan-grid {
    gap: 0.5rem;
  }

  .qr-scan-visual img {
    width: min(360px, 92vw);
  }

  .qr-scan-copy h2 {
    font-size: clamp(1.32rem, 5.4vw, 1.78rem);
    text-align: center;
  }

  .qr-scan-copy p {
    margin-top: 0.65rem;
    font-size: 0.96rem;
    text-align: center;
  }

  .about {
    padding-block: 3.2rem;
  }

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

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

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

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

  .about .card {
    min-height: auto;
    border-radius: 4px;
    padding: 1.2rem 0.95rem;
  }

  .about .card img {
    width: 56px;
  }

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

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

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    padding-block: 0;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-phone {
    width: 100%;
    height: 100%;
    object-position: center bottom;
  }

  .hero-stamp {
    right: 0.65rem;
    top: 0.35rem;
    width: clamp(82px, 28vw, 112px);
    transform: rotate(7deg);
  }

  .trial-highlight {
    font-size: 1.2rem;
  }

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

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

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

  .hero-actions .btn::before {
    top: 5px;
    left: 6px;
  }

  .hero-actions .btn::after {
    right: 6px;
    bottom: 5px;
  }

  .hero-copy h1 {
    line-height: 1.08;
  }
}

@media (max-width: 1024px) {
  .pricing-overlay {
    min-height: auto;
    padding: clamp(2.2rem, 7vw, 4rem) 0;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .pricing-benefits {
    min-height: auto;
    border-radius: 0;
    padding: 0;
  }

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

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

@media (max-width: 760px) {
  .pricing-hero {
    background-position: center top;
  }

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

  .pricing-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.7rem);
  }

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

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

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

  .pricing-card {
    border-radius: 22px;
    border-width: 1px;
    padding: 1rem;
  }

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

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

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

  .period-tabs button {
    min-height: 44px;
    font-size: 0.9rem;
    line-height: 1.1;
    padding-inline: 0.5rem;
  }

  .period-tabs button em {
    display: none;
  }

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

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

  .price-row small {
    font-size: 0.88rem;
  }

  .vat-note {
    padding: 0;
    font-size: 0.82rem;
  }

  .plan-features {
    margin-top: 2.2rem;
    gap: 0.56rem;
  }

  .plan-features li {
    font-size: 0.94rem;
  }

  .continue-btn {
    width: 100%;
    min-height: 50px;
    margin: 0;
    font-size: 0.94rem;
  }

  .pricing-cta-zone {
    margin-top: 0.8rem;
    padding: 0.56rem;
    gap: 0.5rem;
    border-radius: 9px;
  }
}

/* Premium SaaS pricing card refresh */
.pricing-page .pricing-card {
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
  background: linear-gradient(180deg, #fffefb 0%, #fff9f1 100%);
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 32px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: visible;
}

.pricing-page .pricing-card::before,
.pricing-page .pricing-card::after {
  content: none;
}

.pricing-page .pricing-card-stamp {
  display: block;
  position: absolute;
  top: -1.35rem;
  right: -1.35rem;
  width: clamp(82px, 10vw, 128px);
  height: auto;
  z-index: 6;
  transform: rotate(8deg);
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(17, 27, 42, 0.24));
}

.pricing-page .pricing-card-head {
  z-index: 2;
}

.pricing-page .pricing-card .pricing-eyebrow {
  margin: 0;
  color: #7b889c;
  letter-spacing: 0.16em;
}

.pricing-page .pricing-title {
  margin: 0.45rem 0 0;
  color: #111d33;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.56rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.pricing-page .pricing-subtitle {
  margin: 0.5rem 0 0;
  color: #5e677a;
  font-size: 0.99rem;
  font-weight: 600;
  line-height: 1.42;
}

.pricing-page .billing-toggle {
  margin: 1.18rem 0 0;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid rgba(22, 35, 58, 0.12);
  border-radius: 18px;
  gap: 0.45rem;
}

.pricing-page .billing-option {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #314057;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.7rem 0.68rem;
  transition: all 0.2s ease;
}

.pricing-page .billing-option.active {
  border-color: rgba(255, 122, 0, 0.35);
  background: linear-gradient(180deg, #fff7ec 0%, #fffdf8 100%);
  color: #1f2f46;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.16);
}

.pricing-page .popular-badge {
  margin-left: 0.45rem;
  border-radius: 999px;
  padding: 0.23rem 0.52rem;
  background: linear-gradient(135deg, #ff9a33, #ff7a00);
  color: #fff;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing-page .price-row {
  padding: 1.25rem 0 0;
  color: #1e2d43;
}

.pricing-page .price-main {
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.pricing-page .price-main strong {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(2.35rem, 5.5vw, 3.45rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ff8b21 0%, #ff6a00 60%, #ea4f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-page .price-period {
  padding-bottom: 0.25rem;
  color: #394963;
  font-size: 1.12rem;
  font-weight: 700;
}

.pricing-page .price-note {
  display: block;
  margin-top: 0.58rem;
  color: #4f5b70;
  font-size: 0.98rem;
  font-weight: 650;
}

.pricing-page .vat-note {
  margin: 0.4rem 0 0;
  padding: 0;
  color: #6c7688;
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-page .campaign-pill {
  margin: 1rem 0 0;
  padding: 0.7rem 0.88rem;
  border: 1px solid rgba(255, 145, 55, 0.3);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3e4 100%);
  color: #7a4a1f;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-page .pricing-cta-zone {
  margin-top: 1.12rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.pricing-page .pricing-cta {
  width: 100%;
  min-height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff9f3e 0%, #ff7a00 100%);
  color: #fff;
  font-size: 1.06rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pricing-page .pricing-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 22px 44px rgba(255, 122, 0, 0.36);
}

.pricing-page .pricing-cta:active {
  transform: translateY(0);
}

.pricing-page .pricing-trust-note {
  margin-top: 0.66rem;
  color: #657186;
  font-size: 0.89rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1024px) {
  .pricing-page .pricing-card {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .pricing-page .pricing-layout {
    padding-inline: 0.25rem;
  }

  .pricing-page .pricing-card {
    border-radius: 28px;
    padding: 1.2rem;
  }

  .pricing-page .pricing-card-stamp {
    top: -0.95rem;
    right: -0.7rem;
    width: clamp(70px, 23vw, 96px);
  }

  .pricing-page .pricing-title {
    font-size: clamp(1.44rem, 7.1vw, 1.8rem);
  }

  .pricing-page .pricing-subtitle {
    font-size: 0.92rem;
  }

  .pricing-page .billing-toggle {
    gap: 0.38rem;
  }

  .pricing-page .billing-option {
    min-height: 50px;
    font-size: 0.98rem;
    padding: 0.62rem 0.45rem;
    flex-wrap: wrap;
    gap: 0.22rem;
  }

  .pricing-page .popular-badge {
    margin-left: 0;
    font-size: 0.61rem;
    padding: 0.19rem 0.45rem;
  }

  .pricing-page .price-main strong {
    font-size: clamp(2.05rem, 12.5vw, 2.72rem);
  }

  .pricing-page .price-period {
    font-size: 1rem;
  }

  .pricing-page .price-note {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .pricing-page .vat-note {
    font-size: 0.8rem;
  }

  .pricing-page .campaign-pill {
    border-radius: 16px;
    font-size: 0.84rem;
    padding: 0.62rem 0.7rem;
  }

  .pricing-page .pricing-cta {
    min-height: 58px;
    font-size: 1rem;
  }

  .pricing-page .pricing-trust-note {
    font-size: 0.82rem;
    line-height: 1.35;
  }
}
