.techone-price-page {
  --to-surface: #f9f9f9;
  --to-surface-low: #f3f3f4;
  --to-surface-lowest: #ffffff;
  --to-surface-high: #e8e8e8;
  --to-surface-dim: #dadada;
  --to-primary: #000000;
  --to-primary-strong: #0a192f;
  --to-primary-container: #0d1c32;
  --to-on-primary: #ffffff;
  --to-on-primary-container: #76849f;
  --to-secondary: #006b5b;
  --to-secondary-container: #26fedc;
  --to-secondary-fixed: #26fedc;
  --to-on-secondary-container: #007261;
  --to-on-surface: #1a1c1c;
  --to-on-surface-variant: #44474d;
  --to-outline: #75777e;
  --to-outline-variant: #c5c6cd;
  --to-error-container: #ffdad6;
  --to-on-error-container: #93000a;
  --to-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --to-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.10);
  --to-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.06);
  --to-shadow-nav: 0 20px 40px rgba(13, 28, 50, 0.06);
  --to-radius-sm: 16px;
  --to-radius-md: 24px;
  --to-radius-lg: 32px;
  --to-radius-xl: 48px;
  --to-radius-full: 9999px;
  --to-font-headline: "Plus Jakarta Sans", sans-serif;
  --to-font-body: "Inter", sans-serif;
  color: var(--to-on-surface);
  background: var(--to-surface);
  font-family: var(--to-font-body);
  line-height: 1.5;
}

.techone-price-page *,
.techone-price-page *::before,
.techone-price-page *::after {
  box-sizing: border-box;
}

.techone-price-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.techone-price-page a {
  color: inherit;
  text-decoration: none;
}

.techone-price-page button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.techone-price-page .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.techone-price-page .to-fill {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.techone-price-page .to-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.techone-price-page .to-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--to-shadow-nav);
}

.techone-price-page .to-nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.techone-price-page .to-brand {
  font-family: var(--to-font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--to-primary-strong);
  flex-shrink: 0;
}

.techone-price-page .to-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--to-font-headline);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.techone-price-page .to-nav-link {
  color: var(--to-on-surface-variant);
  transition: color 0.2s ease;
}

.techone-price-page .to-nav-link:hover {
  color: var(--to-primary-strong);
}

.techone-price-page .to-nav-link.is-active {
  color: var(--to-secondary);
  font-weight: 700;
  border-bottom: 2px solid var(--to-secondary);
  padding-bottom: 4px;
}

.techone-price-page .to-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--to-radius-full);
  background: var(--to-primary-container);
  color: var(--to-on-primary);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.techone-price-page .to-cta-button:hover {
  background: #000000;
}

.techone-price-page .to-cta-button:active {
  transform: scale(0.95);
}

.techone-price-page .to-main {
  min-height: 1024px;
}

.techone-price-page .to-hero {
  background: var(--to-surface-low);
  padding: 64px 0 48px;
}

.techone-price-page .to-hero-inner {
  text-align: center;
}

.techone-price-page .to-pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 16px;
  border-radius: var(--to-radius-full);
  background: var(--to-secondary-container);
  color: var(--to-on-secondary-container);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.techone-price-page .to-hero-title {
  margin: 0 0 24px;
  font-family: var(--to-font-headline);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--to-primary-container);
}

.techone-price-page .to-hero-desc {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--to-on-surface-variant);
}

.techone-price-page .to-tabs-section {
  position: relative;
  z-index: 10;
  margin-top: -32px;
}

.techone-price-page .to-tabs {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 8px;
  background: var(--to-surface-lowest);
  border: 1px solid rgba(197, 198, 205, 0.15);
  border-radius: var(--to-radius-sm);
  box-shadow: var(--to-shadow-sm);
}

.techone-price-page .to-tab {
  padding: 12px 32px;
  border-radius: 48px;
  color: var(--to-on-surface-variant);
  font-weight: 500;
  transition: all 0.2s ease;
}

.techone-price-page .to-tab:hover {
  background: var(--to-surface-low);
}

.techone-price-page .to-tab.is-active {
  background: var(--to-secondary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--to-shadow-md);
}

.techone-price-page .to-price-section {
  padding: 64px 0;
}

.techone-price-page .to-series-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.techone-price-page .to-series-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: var(--to-radius-md);
  background: var(--to-surface-lowest);
  transition: box-shadow 0.3s ease;
}

.techone-price-page .to-series-card:hover {
  box-shadow: var(--to-shadow-lg);
}

.techone-price-page .to-series-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techone-price-page .to-series-media img {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.techone-price-page .to-series-card:hover .to-series-media img {
  transform: scale(1.05);
}

.techone-price-page .to-series-body {
  flex: 1;
}

.techone-price-page .to-series-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.techone-price-page .to-series-title {
  margin: 0;
  font-family: var(--to-font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--to-primary-container);
}

.techone-price-page .to-series-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--to-radius-full);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.techone-price-page .to-series-badge.is-new {
  background: var(--to-error-container);
  color: var(--to-on-error-container);
}

.techone-price-page .to-series-badge.is-popular {
  background: var(--to-secondary-container);
  color: var(--to-on-secondary-container);
}

.techone-price-page .to-series-list {
  display: grid;
  gap: 12px;
}

.techone-price-page .to-series-model-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 12px 20px;
  border-radius: var(--to-radius-full);
  background: var(--to-surface-low);
  transition: all 0.2s ease;
}

.techone-price-page .to-series-model-btn span:first-child {
  font-weight: 500;
}

.techone-price-page .to-series-model-btn .material-symbols-outlined {
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.techone-price-page .to-series-model-btn:hover {
  background: var(--to-secondary-container);
  color: var(--to-on-secondary-container);
}

.techone-price-page .to-series-model-btn:hover .material-symbols-outlined {
  opacity: 1;
}

.techone-price-page .to-series-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 198, 205, 0.1);
}

.techone-price-page .to-series-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--to-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.techone-price-page .to-series-link .material-symbols-outlined {
  font-size: 0.75rem;
  margin-left: 4px;
}

.techone-price-page .to-series-link:hover {
  transform: translateX(4px);
}

.techone-price-page .to-banner-section {
  padding-bottom: 80px;
}

.techone-price-page .to-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: var(--to-radius-sm);
  background: var(--to-primary-container);
  color: #ffffff;
}

.techone-price-page .to-banner-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.techone-price-page .to-banner-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--to-secondary-fixed);
  color: var(--to-primary-container);
}

.techone-price-page .to-banner-icon .material-symbols-outlined {
  font-size: 24px;
}

.techone-price-page .to-banner-text h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.techone-price-page .to-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--to-on-primary-container);
}

.techone-price-page .to-banner-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1px solid var(--to-on-primary-container);
  border-radius: var(--to-radius-full);
  color: var(--to-on-primary-container);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.techone-price-page .to-banner-button:hover {
  background: #ffffff;
  color: var(--to-primary-container);
}

.techone-price-page .to-banner-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(38, 254, 220, 0.05);
  transform: translate(50%, -50%);
}

.techone-price-page .to-footer {
  width: 100%;
  padding: 64px 0 32px;
  background: #f3f3f4;
}

.techone-price-page .to-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  font-family: var(--to-font-headline);
  font-size: 0.875rem;
  line-height: 1.625;
}

.techone-price-page .to-footer-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--to-primary-strong);
}

.techone-price-page .to-footer-brand p {
  margin: 0;
  color: var(--to-on-surface-variant);
  font-family: var(--to-font-body);
}

.techone-price-page .to-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.techone-price-page .to-footer-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--to-primary);
}

.techone-price-page .to-footer-link {
  color: var(--to-on-surface-variant);
  transition: all 0.2s ease;
}

.techone-price-page .to-footer-link:hover {
  color: var(--to-secondary);
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .techone-price-page .to-series-card {
    flex-direction: row;
  }

  .techone-price-page .to-series-media {
    width: 33.3333%;
  }
}

@media (max-width: 1023px) {
  .techone-price-page .to-series-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .techone-price-page .to-container {
    width: calc(100% - 32px);
  }

  .techone-price-page .to-nav-links {
    display: none;
  }

  .techone-price-page .to-nav-inner {
    min-height: 72px;
  }

  .techone-price-page .to-hero {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .techone-price-page .to-hero-title {
    font-size: 2.25rem;
  }

  .techone-price-page .to-tab {
    padding-left: 24px;
    padding-right: 24px;
  }

  .techone-price-page .to-series-card {
    padding: 24px;
    gap: 24px;
  }

  .techone-price-page .to-series-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .techone-price-page .to-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .techone-price-page .to-banner-button {
    display: none;
  }

  .techone-price-page .to-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all .3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}.wp-block-uagb-advanced-heading.uagb-block-62796520.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-62796520.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-62796520.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-62796520.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-9a43c971.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-9a43c971.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-9a43c971.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-9a43c971.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}